CVE Catalog

CVE-2026-72818

HighCVSS 7.5
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.51%

42th percentile - higher than 42% of all known CVEs

Summary

The URLS regular expression in nltk/tokenize/casual.py, used by TweetTokenizer, contains an unbounded domain branch causing catastrophic backtracking on malicious input. A few kilobytes of text can consume seconds to minutes of CPU, enabling unauthenticated DoS. Version 3.10.1 bounds the label repetition.

Risk Assessment

Services using TweetTokenizer or casual_tokenize on untrusted text can be stalled per request, leading to resource exhaustion and service disruption.

Recommendation

Upgrade NLTK to version 3.10.1 or later, which includes a fix that bounds label repetition in the regular expression.

Other vulnerabilities in NLTK

See all
Original NVD description (English source)

The URLS regular expression in nltk/tokenize/casual.py, compiled into TweetTokenizer.WORD_RE and applied by TweetTokenizer.tokenize, contains a naked-domain branch whose domain-label prefix [a-z0-9]+(?:[.\-][a-z0-9]+)* is unbounded. Input consisting of many alternating label separators can be partitioned in exponentially many ways, and because the branch also requires a trailing top-level domain that such input never supplies, the engine explores those partitions before failing at each offset. A few kilobytes of input therefore consumes seconds to minutes of single-threaded CPU, and the HANG_RE substitution performed before matching does not collapse the pattern. TweetTokenizer is intended for tokenizing untrusted social-media text, so any service that applies it, or the module-level casual_tokenize, to submitted text can be stalled per request without authentication. Version 3.10.1 bounds the label repetition.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS