You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
#!/bin/bash
|
|
|
|
# https://www.workplace.com/resources/tech/it-configuration/domain-whitelisting
|
|
# https://www.irr.net/docs/list.html
|
|
# https://bgp.he.net/search?search%5Bsearch%5D=facebook&commit=Search
|
|
# https://github.com/SecOps-Institute/FacebookIPLists/blob/master/facebook_asn_list.lst
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
|
|
# get from Autonomous System
|
|
get_routes() {
|
|
whois -h riswhois.ripe.net -- "-i origin $1" | grep '^route' | awk '{ print $2; }'
|
|
whois -h whois.radb.net -- "-i origin $1" | grep '^route' | awk '{ print $2; }'
|
|
whois -h rr.ntt.net -- "-i origin $1" | grep '^route' | awk '{ print $2; }'
|
|
whois -h whois.rogerstelecom.net -- "-i origin $1" | grep '^route' | awk '{ print $2; }'
|
|
whois -h whois.bgp.net.br -- "-i origin $1" | grep '^route' | awk '{ print $2; }'
|
|
}
|
|
|
|
get_routes 'AS32934' > /tmp/facebook.txt || echo 'failed'
|
|
get_routes 'AS54115' >> /tmp/facebook.txt || echo 'failed'
|
|
get_routes 'AS63293' >> /tmp/facebook.txt || echo 'failed'
|
|
get_routes 'AS149642' >> /tmp/facebook.txt || echo 'failed'
|
|
|
|
|
|
# save ipv4
|
|
grep -v ':' /tmp/facebook.txt > /tmp/facebook-ipv4.txt
|
|
|
|
# save ipv6
|
|
grep ':' /tmp/facebook.txt > /tmp/facebook-ipv6.txt
|
|
|
|
|
|
# sort & uniq
|
|
sort -V /tmp/facebook-ipv4.txt | uniq > facebook/ipv4.txt
|
|
sort -V /tmp/facebook-ipv6.txt | uniq > facebook/ipv6.txt
|
|
|