4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / run-owasp.sh SH
#!/bin/sh

root=$(pwd)
owasp_report=scan-results/dependency-check/dependency-check-report.json;
if [ -f "${owasp_report}" ]; then
  echo "${owasp_report} exists, skipping analysis";
else
  echo "running owasp dependency check analysis on ${e}" ;
  mvn org.owasp:dependency-check-maven:8.2.1:check -Dformat=json -DprettyPrint=true -Dodc.outputDirectory=$owasp_report
#  dependency-check -scan . -f JSON -o scan-results/dependency-check -prettyPrint;
fi