Advertisement
Ov3rxRide

Auto Nmap Script

Nov 17th, 2016
1,116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.87 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #Auto nmap script. Also fuck Chris Poole
  4. ==============================================================="
  5. echo "                          Target Analysis                  "
  6. echo "  ==============================================================="
  7. echo "================================="
  8. echo "| [1] Fast scan [2] 1-100 Ports |"
  9. echo "================================="
  10. echo -e "Choose the type of scan:"
  11. read choice
  12. clear
  13. echo "================================="
  14. echo -e "IP Address you'd like to scan:"
  15. read ip
  16. clear
  17. echo "============================================================================="
  18. echo "Thank you for using Auto NMAP, Sitting around bored gives you fancy ideas and"
  19. echo "creations."
  20. echo "============================================================================="
  21.  
  22. nmap -p 1-100 $ip
  23. nmap -F $ip
  24. sleep 3
  25. trap exit_script 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement