Advertisement
makispaiktis

Bash 4 - HTTP scripts scan

Nov 8th, 2024 (edited)
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.48 KB | None | 0 0
  1. # 1. Scan port 80 (HTTP) + http-date script
  2. nmap -p80 --script http-date scanme.nmap.org
  3.  
  4. # 2. Scan port 8000 (HTTP alternate port) + http-date script
  5. nmap -p8000 --script http-date scanme.nmap.org
  6.  
  7. # 3. Scan port 80 + http-csrf (Cross-Site Request Forgery: A common web vulnerability)
  8. nmap -p80 --script http-csrf scanme.nmap.org
  9.  
  10. # 4. Scan port 80 + http-backup-finder (Checks if the web server reveals any backup files)
  11. nmap -p80 --script http-backup-finder scanme.nmap.org
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement