Advertisement
retro64xyz

IPSum Helper

Jan 26th, 2023
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | Cybersecurity | 0 0
  1. #!/usr/bin/bash
  2.  
  3. for ip in $( \
  4. curl --compressed \
  5.     https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null \
  6.     | grep -v "#" \
  7.     | awk '{ print $1 }' )
  8. do
  9.     echo $ip;
  10. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement