pawn007

Centos ssdp scanner setup

Feb 26th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. sudo su
  2. chmod +x ssdpscan
  3. sudo yum install screen httpd -y
  4.  
  5. ./ssdpscan 1.1.1.1 255.255.255.255 unfilteredssdp.txt 15 10 100
  6. cat unfilteredssdp.txt | awk '{if($2 > 250){print $1}}' > filter1.txt
  7. cat filter1.txt | awk '{print $1}' | sort -n | uniq -c | awk '$1 > 10' | awk '{print $2 " " $1}' > ssdp_amp.txt
Add Comment
Please, Sign In to add comment