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
Tools/GitHubGitHub/jpmartins/minimalreproducer
Static AnalysisVulnerability AnalysisCode AnalysisDevSecOpsSupply Chain Security
GitHubjpmartins/minimalreproducer

MinimalReproducer

Context of CVE-2021-26291 minimal replicator

View Repository
411 months 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

After significant efforts, stripped it down to a minimal replicator.

This is just an empty project to demonstrate the issue with dependency-check-maven usage I am forced on doing by my company rules.

Do check the pom.xml and do verify:

mvn org.owasp:dependency-check-maven:RELEASE:aggregate

Or if you have a NVD_API_KEY env var the faster:

mvn org.owasp:dependency-check-maven:RELEASE:aggregate -DnvdApiKey=${NVD_API_KEY}

And you will get a lot of them, including the: ... [ERROR] maven-core-3.6.3.jar (pkg:maven/org.apache.maven/[email protected], cpe:2.3🅰️apache:maven:3.6.3:::::::*): CVE-2021-26291(9.1) ...

The "apparently" miss-leading dependency-check-report.html says:

root@kitploit:~
maven-core-3.6.3.jar
Referenced In Project/Scope: test (plugins)
Included by: pkg:maven/org.owasp/[email protected] (plugins)

The issue originates from the company imposed (huge) parent pom with mandatory, with configuration:

root@kitploit:~
<failBuildOnCVSS>7</failBuildOnCVSS>
<scanPlugins>true</scanPlugins>

There is no explicit reference to maven-core 3.6.3 anywhere on my company parent pom or its dependencies. The following returns nothing:

root@kitploit:~
mvn help:effective-pom | grep 3.6.3
Download Tool