Security readout for executives and security teams
Plain-English summary
CVE-2021-37714 affects jsoup before 1.14.2. A malicious HTML or XML input can make parsing hang, slow down, or throw unchecked exceptions, creating a denial-of-service risk where applications parse untrusted content.
Executive priority
Treat as high priority for internet-facing or high-volume services that parse untrusted markup. The fix is a dependency upgrade, but exposure may hide in transitive dependencies and vendor-bundled components.
Technical view
The issue is an availability flaw in jsoup parsing of untrusted HTML/XML, mapped to CWE-248 and CWE-835. CVSS 3.1 is 7.5: network reachable, low complexity, no privileges or user interaction, with high availability impact only. Version 1.14.2 patches it.
Likely exposure
Most exposed systems are Java applications or products that directly or transitively include jsoup below 1.14.2 and parse user-supplied HTML or XML, such as uploaded content, emails, feeds, comments, or scraped web pages.
Exploitation context
The provided sources do not show CISA KEV listing or active exploitation. Exploitation would be practical where an attacker can submit crafted markup to a service that parses it synchronously or without runtime limits.
Researcher notes
Focus validation on reachability, not just dependency presence. A vulnerable jsoup version matters most when attacker-controlled markup reaches the parser without size, rate, or execution-time controls. Evidence here supports patch availability but not active exploitation.
Mitigation direction
- Upgrade jsoup to version 1.14.2 or later.
- Identify bundled or transitive jsoup dependencies in Java applications.
- Rate limit endpoints that parse untrusted HTML or XML.
- Limit accepted input size based on service capacity.
- Add watchdogs or timeouts around parsing work.
Validation and detection
- Confirm dependency manifests resolve jsoup 1.14.2 or later.
- Review SBOMs and packaged artifacts for older jsoup versions.
- Find routes or jobs that parse user-controlled HTML or XML.
- Test parser timeout and exception handling with safe malformed inputs.
- Check monitoring for parser-related hangs, timeouts, or availability drops.
Public sources used
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
CWE-248: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
Open ATT&CK lookupCWE-835: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
Open ATT&CK lookupCVE-2021-37714 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
Open ATT&CK lookup- Severity
- High
- CVSS
- 7.5 (3.1)
- Known Exploited
- No
- Published
Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
CNA and ADP enrichment extracted from CVE v5
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
CVSS vector scores
1 official scoreWe collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H3.93.6Primary CVE scoreVulnerability scoring details
Base CVSS 3.1 score
7.5HighVector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Source materials
- CVE List V5 sourceCVE List V5
- https://github.com/jhy/jsoup/security/advisories/GHSA-m72m-mhq2-9p6cCVE reference · x_refsource_CONFIRM
- https://jsoup.org/news/release-1.14.1CVE reference · x_refsource_MISC
- https://jsoup.org/news/release-1.14.2CVE reference · x_refsource_MISC
- [james-notifications] 20210820 [GitHub] [james-project] chibenwa opened a new pull request #609: [UPGRADE] JSOUP 1.14.1 -> 1.14.2 to address CVE-2021-37714CVE reference · mailing-list, x_refsource_MLIST
- [james-notifications] 20210823 [GitHub] [james-project] chibenwa merged pull request #609: [UPGRADE] JSOUP 1.14.1 -> 1.14.2 to address CVE-2021-37714CVE reference · mailing-list, x_refsource_MLIST
- [james-notifications] 20210823 [james-project] branch master updated: [UPGRADE] JSOUP 1.14.1 -> 1.14.2 to address CVE-2021-37714CVE reference · mailing-list, x_refsource_MLIST
- [maven-issues] 20210830 [jira] [Created] (WAGON-612) Update jsoup to >= 1.14.2 for fix security issueCVE reference · mailing-list, x_refsource_MLIST
- [maven-issues] 20210901 [jira] [Created] (MNG-7227) Fix CVE-2021-37714 present in apache-mavenCVE reference · mailing-list, x_refsource_MLIST
- [maven-issues] 20210901 [jira] [Updated] (MNG-7227) Fix CVE-2021-37714 present in apache-mavenCVE reference · mailing-list, x_refsource_MLIST
- [maven-issues] 20210901 [jira] [Commented] (MNG-7227) Fix CVE-2021-37714 present in apache-mavenCVE reference · mailing-list, x_refsource_MLIST
- https://www.oracle.com/security-alerts/cpujan2022.htmlCVE reference · x_refsource_MISC
- https://www.oracle.com/security-alerts/cpuapr2022.htmlCVE reference · x_refsource_MISC
- https://security.netapp.com/advisory/ntap-20220210-0022/CVE reference · x_refsource_CONFIRM
- https://www.oracle.com/security-alerts/cpujul2022.htmlCVE reference · x_refsource_MISC
Products and packages named in the record
CWE details
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
Uncaught Exception
Uncaught Exception represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
Loop with Unreachable Exit Condition ('Infinite Loop')
Loop with Unreachable Exit Condition ('Infinite Loop') represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
