CVE-2026-42027
Undergoing Analysis
Undergoing Analysis - In Progress
Arbitrary Class Instantiation via Model Manifest in Apache OpenNLP
Publication date: 2026-05-04
Last updated on: 2026-05-06
Assigner: Apache Software Foundation
Description
Description
Arbitrary Class Instantiation via Model Manifest in Apache OpenNLP ExtensionLoader
Versions Affected: before 2.5.9, before 3.0.0-M3
Description:Β
The ExtensionLoader.instantiateExtension(Class, String)Β method loads a class by its fully-qualified name via Class.forName()Β and invokes its no-arg constructor, with the class name sourced from the manifest.propertiesΒ entry of a model archive. The existing isAssignableFromΒ check correctly rejects classes that are not subtypes of the expected extension interface (BaseToolFactoryΒ for factory=, ArtifactSerializerΒ for serializer-class-*), but the check runs afterΒ Class.forName()Β has already loaded and initialized the named class.
Class.forName()Β with default initialization semantics executes the target class's static initializer before returning, so an attacker who can supply a crafted model archive can cause the static initializer of any class on the classpath to run during model loading, regardless of whether that class passes the subsequent type check.
Exploitation requires a class with attacker-useful side effects in its static initializer (for example, JNDI lookup, outbound network I/O, or filesystem access) to be present on the classpath, so this is not a drop-in remote code execution; however, the attack surface grows as third-party model distribution becomes more common (community model repositories, Hugging Face-style sharing), where users routinely load model files from origins they do not control. A secondary, narrower vector affects deployments that ship legitimate BaseToolFactoryΒ or ArtifactSerializerΒ subclasses with side-effecting no-arg constructors: a malicious manifest can name such a class and force its constructor to run during model load.
Mitigation:Β
* 2.x users should upgrade to 2.5.9.
* 3.x users should upgrade to 3.0.0-M3.
Note: The fix introduces a package-prefix allowlist that is consulted before Class.forName()Β is invoked, so the static initializer of a disallowed class is never executed. Classes under the opennlp.Β prefix remain permitted by default. Deployments that load models referencing factories or serializers outside opennlp.*Β must opt those packages in, either programmatically via ExtensionLoader.registerAllowedPackage(String)Β before the first model load, or by setting the OPENNLP_EXT_ALLOWED_PACKAGESΒ system property to a comma-separated list of allowed package prefixes.
Users who cannot upgrade immediately should ensure that all model files are sourced from trusted originsΒ and should audit their classpath for classes with side-effecting static initializers or constructors, particularly any that perform JNDI lookups, network requests, or filesystem operations during class initialization.
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| apache | opennlp | to 2.5.9 (exc) |
| apache | opennlp | 3.0.0 |
| apache | opennlp | 3.0.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-470 | The product uses external input with reflection to select which classes or code to use, but it does not sufficiently prevent the input from selecting improper classes or code. |