CVE-2026-15699
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedA vulnerability was identified in spencermountain compromise up to 14.15.1. Affected is the function nlp.extend of the file src/API/extend.js of the component Public Root API. The manipulation of the argument plugin leads to improperly controlled modification of object prototype attributes. Remote exploitation of the attack is possible. The exploit is publicly available and might be used. The identifier of the patch is b4644ab7179700df0607521f61c1ee9b5f78d89d. Applying a patch is the recommended action to fix this issue. The vendor was contacted early, responded in a very professional manner and quickly released a fixed version of the affected product.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThis is a Prototype Pollution vulnerability in the spencermountain/compromise NLP library. The nlp.extend function in src/API/extend.js does not properly validate the plugin argument, allowing attackers to inject properties into the Object prototype through improperly controlled modification. This can cause denial of service or enable further attacks depending on library usage.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- Low
- Integrity
- Low
- Availability
- Low
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify compromise library installationCheck your project's node_modules/spencermountain-compromise/package.json or run 'npm list compromise' to see if the library is installedAffected if The library is not present in the project dependencies
-
Check installed compromise versionRun 'npm list compromise' or inspect node_modules/spencermountain-compromise/package.json to find the installed version numberAffected if The installed version is lower than 14.15.2 (vulnerable versions are below 14.15.2)
-
Verify nlp.extend is being usedSearch your codebase for calls to nlp.extend, nlp.plugin, or similar extension methods from the compromise libraryAffected if The codebase contains calls to nlp.extend or nlp.plugin that accept external/plugin input
-
Inspect plugin input handlingReview the code handling plugin arguments passed to nlp.extend to see if input is validated before being passedAffected if Plugin arguments are passed directly to nlp.extend without sanitization or validation checks for prototype-modifying properties
-
Check for prototype pollution in runtimeRun a JavaScript probe: after importing nlp, test whether Object.prototype can be modified via nlp.extend({__proto__: {test: true}})Affected if The test reveals that Object.prototype.test becomes truthy after the call, confirming prototype pollution is possible
You are affected if the compromise library version is below 14.15.2 AND your code uses nlp.extend with unvalidated external input that could contain prototype-modifying properties.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade to the patched version of compromise (version 14.15.2 or later) which addresses the improper input validation in the nlp.extend function. If immediate upgrade is not possible, implement input sanitization on the plugin argument to reject prototype-modifying properties.
compromise version > 14.15.1 (latest stable release)
- 1. Identify the installed version of the spencermountain/compromise package in your project (check package.json or run npm list compromise)
- 2. If the version is 14.15.1 or lower, update to the latest version using: npm install compromise@latest
- 3. Alternatively, update to a specific version higher than 14.15.1 using: npm install compromise@>14.15.1
- 4. After updating, run your test suite to verify the fix doesn't break existing functionality
- 5. Rebuild and redeploy your application
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation2.0 h
- Implementation3.0 h
- Testing3.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $2,800.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-15699 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-15699 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data