Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
jsonorg-fn1 — simple application with a CVE-2022-45688 vulnerability | Kitploit
Tools/GitHubGitHub/scabench/jsonorg-fn1
Static AnalysisVulnerability AnalysisCode AnalysisSupply Chain SecurityMisconfigurationLearning & Education
GitHubscabench/jsonorg-fn1

jsonorg-fn1

simple application with a CVE-2022-45688 vulnerability

View Repository
132 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

json.org CVE-2022-45688 false negative

The project illustrates CVE-2022-45688 in json.org -- there is a simple application XML2JSONConverter to read XML from input, convert it to JSON and pretty-print it to the console.

Using malicious input, the application crashes with a stackoverflow.

The test case CVE202245688Test illustrates this behaviour, it can be executed by running mvn test.

Running Software Composition Analyses

There are several sh scripts to run different analyses, result resports can be found in scan-results.

False Negative

The SCA report (including the onces set up as GitHub actions) fail to report CVE-2022-45688, although the included test clearyly shows that it exists. The reason is that tools based on meta-data analysis only (i.e. declared dependencies) dont realise that the project uses a shaded version of (a vulnerable version of) json.org.

Download Tool

Note that shading is done manually, i.e. the Maven shade plugin is not used. Our recent research suggests that this is a common source of sofwtare composition analysis false negatives.

Generating the SBOM

The pom.xml has a plugin to generate a SBOM in CycloneDX format. To do this, run mvn cyclonedx:makePackageBom, the SBOM can be found in target/ in json and xml format.