Vulnerability Assessment

Fundamentals
> Start Learning

πŸ“– Overview

Identify and prioritize vulnerabilities using automated scanners and manual testing.

🎯
0
Exercises
πŸƒ
1
Flashcards
πŸ—ΊοΈ
1
Mind Maps

πŸ“‹ Cheatsheet

Nmap Vuln Scripts

nmap --script vuln 10.10.10.5 # Run all NSE vulnerability scripts

Searchsploit

searchsploit apache 2.4 # Search for exploits locally
searchsploit -m 12345 # Mirror/copy exploit to current dir

Manual Checks

  • Check service versions against CVE databases
  • Test for default credentials
  • Look for misconfigurations

πŸ’» Command Examples

⚠️ Common Pitfalls

  • Relying only on automated scanners
  • Not verifying scanner results

πŸ’‘ Exam Survival Tips

  • Note all version numbers
  • Cross-reference with exploit-db

πŸ—ΊοΈ Mind Maps