CVE-2026-72818 describes a Regular Expression Denial of Service (ReDoS) vulnerability in the NLTK library's TweetTokenizer component. The flaw exists in the URLS regular expression within nltk/tokenize/casual.py, where an unbounded domain-label prefix pattern can cause catastrophic backtracking. Specially crafted input with alternating label separators can be partitioned exponentially, causing the regex engine to explore all partitions before failing. A few kilobytes of crafted input can stall single-threaded CPU for seconds to minutes. The vulnerability is particularly concerning because TweetTokenizer is explicitly designed to process untrusted social-media text, meaning any service using it is exposed without requiring authentication. The pre-processing HANG_RE substitution does not mitigate the issue. Version 3.10.1 of NLTK addresses the vulnerability by bounding the label repetition in the regex.