CVE-2017-17485
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 · uneditedFasterXML jackson-databind through 2.8.10 and 2.9.x through 2.9.3 allows unauthenticated remote code execution because of an incomplete fix for the CVE-2017-7525 deserialization flaw. This is exploitable by sending maliciously crafted JSON input to the readValue method of the ObjectMapper, bypassing a blacklist that is ineffective if the Spring libraries are available in the classpath.
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 confidenceJackson-databind through 2.9.3 contains an incomplete fix for CVE-2017-7525, allowing unauthenticated remote code execution via malicious JSON input to the readValue method. The blacklist protection can be bypassed when Spring libraries are present in the classpath, enabling arbitrary code execution through crafted deserialization payloads.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data= 8.0= 9.0= 6.0.0= 6.4.0= 7.1= 4.1= 3.11< 2.6.7.3>= 2.7.0, < 2.7.9.2>= 2.8.0, < 2.8.11>= 2.9.0, < 2.9.4>= 11.0.0, <= 11.60.3all versionsall versionsall versionsCVSS 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
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
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 Jackson-databind versionLocate the jackson-databind jar file in your application classpath and check its version. In Maven projects, examine the pom.xml for the jackson-databind dependency version. In Gradle projects, check build.gradle. For deployed applications, inspect the lib directory or WAR file for jackson-databind-*.jar and note the version in the filename.Affected if The installed version is less than 2.6.7.3, OR between 2.7.0 and 2.7.9.2 inclusive, OR between 2.8.0 and 2.8.11 inclusive, OR between 2.9.0 and 2.9.4 inclusive.
-
Check for Spring libraries in classpathScan the application classpath for Spring Framework libraries. Search for jars with names containing 'spring-' in the lib directory, pom.xml, or build.gradle dependencies. Common Spring libraries include spring-core, spring-beans, spring-context, spring-expression, or spring-aop.Affected if Any Spring Framework libraries are present in the classpath alongside a vulnerable Jackson-databind version.
-
Verify if readValue or similar deserialization methods are usedSearch application source code for calls to ObjectMapper.readValue(), JsonParser.readValueAs(), or similar deserialization methods that accept untrusted JSON input. Also check for @RequestBody annotations in Spring controllers that automatically deserialize JSON.Affected if The application uses readValue or other Jackson deserialization methods to process JSON input from untrusted sources.
-
Confirm default typing configurationInspect ObjectMapper configuration code for enableDefaultTyping() calls or DEFAULT_JSON_INCLUSION settings. Check for @JsonTypeInfo annotations with USE_DEFAULT_TYPE or similar type information inclusion. Review Spring configuration files for Jackson mapper customizations.Affected if Default typing is enabled on the ObjectMapper, which widens the attack surface for this deserialization vulnerability.
Your environment is affected if you have a vulnerable Jackson-databind version (less than 2.6.7.3, between 2.7.0-2.7.9.2, 2.8.0-2.8.11, or 2.9.0-2.9.4) AND Spring libraries are present in the classpath AND your application deserializes untrusted JSON via Jackson.
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 · scoped2.6.7.32.7.9.22.8.11
Upgrade Jackson-databind to version 2.9.4 or later which contains the complete blacklist fix. If immediate upgrade is not feasible, disable default typing in ObjectMapper configuration or implement a custom deserialization whitelist as a defense-in-depth measure.
Jackson Databind 2.9.4 (or latest 2.x release)
- Identify the current Jackson Databind version in use by checking project dependencies (Maven pom.xml, Gradle build.gradle, or JAR manifest)
- Upgrade Jackson Databind to version 2.9.4 or later (or at minimum 2.8.11 if staying on 2.8.x branch, 2.7.9.2 for 2.7.x, or 2.6.7.3 for 2.6.x)
- If using Maven, update the dependency: <dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.9.4</version></dependency>
- If using Gradle, update: compile('com.fasterxml.jackson.core:jackson-databind:2.9.4')
- Rebuild and redeploy the application
- Test application functionality to ensure the upgrade does not break existing features
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation6.0 h
- Implementation4.0 h
- Testing8.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $6,144.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2017-17485 — 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 sources- www.securityfocus.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- access.redhat.com
- github.com
- github.com
- security.netapp.com
- support.hpe.com
- www.debian.org
- www.oracle.com
- nvd.nist.gov
Practitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2017-17485 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