🧠 Description

Application uses outdated libraries, frameworks, or dependencies with known vulnerabilities. These can be exploited to compromise the application.

Impact: RCE, XSS, SQLi, Data Breach

🔍 Detection

  • Check package.json, requirements.txt, pom.xml
  • Use npm audit, dependabot, OWASP Dependency-Check
  • Scan with Nuclei, Trivy
  • Check for known CVEs in libraries

🛡️ Mitigation

✅ Regularly update dependencies

✅ Use automated scanning (Dependabot, Snyk)

✅ Remove unused dependencies

✅ Monitor CVE feeds
Back to Web Security