CVE-2026-67211
Last modified
CVE-2026-67211 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. OOM Denial of Service via Unbounded Map Pre-Sizing in Apache OpenNLP SymSpellModelSerializer Versions Affected: - 3.0.0-M4 - 3.0.0-M5 (The opennlp-spellcheck extension was introduced in 3.0.0-M4. Releases 1.x and 2.x do not contain the affected code.) Description: The SymSpellModelSerializer.create() method reads two 32-bit signed integer count fields (unigramCount and bigramCount) from a binary SymSpell model stream and passes each value directly to LinkedHashMap.newLinkedHashMap() after validating only that it is non-negative. EPSS estimates a 0.32% chance of exploitation in the next 30 days.
Description
OOM Denial of Service via Unbounded Map Pre-Sizing in Apache OpenNLP SymSpellModelSerializer Versions Affected: - 3.0.0-M4 - 3.0.0-M5 (The opennlp-spellcheck extension was introduced in 3.0.0-M4. Releases 1.x and 2.x do not contain the affected code.) Description: The SymSpellModelSerializer.create() method reads two 32-bit signed integer count fields (unigramCount and bigramCount) from a binary SymSpell model stream and passes each value directly to LinkedHashMap.newLinkedHashMap() after validating only that it is non-negative. No upper bound is applied, so the count is fully attacker-controlled when the model file originates from an untrusted source. A crafted .bin model file in which either count field is set to Integer.MAX_VALUE (or any value large enough to exhaust the available heap) causes the map to be pre-sized to a capacity of 2^30 entries. The oversized backing array is allocated on the first put() into that map, requesting 4–8 GB depending on whether compressed oops are in effect, and the load fails with an OutOfMemoryError. Because the count fields sit immediately after a fixed-size header (magic, format version, three UTF strings, the configuration fields, and the edit-distance identifier) the attacker pays no meaningful size cost to weaponize a payload: a file of well under 100 bytes plus a single real entry is sufficient to crash a JVM that loads it. Any code path that deserializes a SymSpell model is affected, including SymSpellModels.deserialize(InputStream), SymSpellModels.fromBytes(byte[]), classpath model loading via SymSpellModelResolver.resolveByLanguage(String), the CorrectTextTool command-line tool, and model-archive loading through the registered ArtifactSerializer. The opennlp-spellcheck extension ships in the official OpenNLP binary distribution. The practical impact is denial of service against processes that load SymSpell model files from untrusted or semi-trusted origins. Mitigation: - 3.x users should upgrade to 3.0.0-M6. Note: The fix applies an upper bound to both count fields, checked before the map is pre-sized; counts that are negative or exceed the bound cause an IOException to be thrown and the read to fail fast with no large allocation. The bound is the existing AbstractModelReader.MAX_ENTRIES limit introduced earlie, which the current change promotes to public visibility so that serializers implementing their own binary format can share it. The default bound is 10,000,000, which is well above the entry counts of legitimate SymSpell dictionaries but far below any value that would threaten heap exhaustion. Deployments that legitimately need to load larger dictionaries can raise the limit at JVM startup by setting the OPENNLP_MAX_ENTRIES system property to the desired positive integer (e.g. -DOPENNLP_MAX_ENTRIES=50000000); invalid or non-positive values fall back to the default. Note that this property is shared with the model-reader limit and raising it relaxes both. Users who cannot upgrade immediately should treat all SymSpell .bin model files as untrusted input unless their provenance is verified, and should avoid loading models supplied by end users or fetched from third-party repositories without integrity checks.
Metrics
Weakness Enumeration
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Apache | Opennlp | 3.0.0 | M4 |
References
- https://lists.apache.org/thread/gnobdsj640c60xl76q8g9o73c7jsybjmMailing List, Vendor Advisory
- https://www.openwall.com/lists/oss-security/2026/09/11/9Mailing List, Third Party Advisory
Timeline
- Published
- Last Modified
- Status
- Analyzed
Frequently Asked Questions
What is CVE-2026-67211?
How severe is CVE-2026-67211?
How do I fix CVE-2026-67211?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-67201V through 0.5.2, fixed in commit 85859f0, contains a server-…8.6
- CVE-2026-67204BookStack before 26.05.4 contains a broken access control vu…5.4
- CVE-2026-67206Wolf CMS through 0.8.3.1 contains a remote code execution vu…8.8
- CVE-2026-67207Wolf CMS through 0.8.3.1 contains an authorization bypass vu…8.8
- CVE-2026-67208Juggle through 1.6.0 contains a remote code execution vulner…9.8
- CVE-2026-6721IBM Concert 1.0.0 through 3.0.0 allows an unauthenticated re…9.8
- CVE-2026-67213nanoid (Nano ID) before 5.1.6 contains an infinite loop in t…7.5
- CVE-2026-67214nanoid (Nano ID) before 3.3.16 and 5.1.16 contains an infini…7.5
- CVE-2026-67215cJSON through 1.7.19 is vulnerable to uncontrolled recursion…8.7
- CVE-2026-67216cJSON through 1.7.19 contains an inefficient algorithmic com…7.5
- CVE-2026-67217cJSON through 1.7.19 applies RFC 6902 JSON Patch operations …6.9
- CVE-2026-67218RabbitMQ is a messaging and streaming broker. Prior to versi…2.1
Are you affected by CVE-2026-67211?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
