Whois triukai

Iš Žinynas.
Jump to navigation Jump to search

Blokuojam Facebook trafiką[keisti]

ASN=32934; for s in $(whois -H -h riswhois.ripe.net -- -F -K -i $ASN | grep -v "^$" | grep -v "^%" | awk '{ print $2 }' ); do echo " blocking $s"; sudo iptables -A INPUT -s $s -j REJECT &> /dev/null || sudo ip6tables -A INPUT -s $s -j REJECT; done

Domenų sąrašas su galiojimo pabaiga[keisti]

cat domenai.txt | while read line; do echo -ne $line; whois $line | grep Expiration ; done | sed 's:Expiration Date::'

Visi goddady registruoti domenai[keisti]

for i in `wget -O url|grep '<a rel="nofollow"'|grep http|sed 's|.*<a rel="nofollow" class="[^"]\+" href="[^"]*https\?://\([^/]\+\)[^"]*">[^<]\+</a>.*|\1|'`;do if test -n "$(whois $i|grep -i godaddy)";then echo $i uses GoDaddy;fi;sleep 20;done

 Ar name serveriai atitinka name serveriu aprašymus[keisti]

domain=google.com; for ns in $(whois $domain | awk -F: '/Name Server/{print $2}'); do echo ">>> Nameservers for $domain from $a <<<"; dig @$ns $domain ns +short; echo; done;

Panaudojimas scriptuose išsaugant rezutatą į failą[keisti]

x=192.168.1.1; whois $x > $x.txt

Kontaktinių duomenų ištraukimas[keisti]

whois -H $(cat ./domenai.txt) | awk 'BEGIN{RS=""}/Registrant/,/Registration Service Provider:/ {print} END{print "----------------\n"}'

Geografinė lokacija[keisti]

while read line; do pais=$(whois "$line" | grep -E '[Cc]ountry') echo -n "IP=$line Pais=$pais" && echo done <listaip

 Kelių domenų whoisinimas[keisti]

for domain in `cat domenai.txt`; do echo $domain; whois $domain >> output.txt; done

Whoisinimas pagal net pavadinimus (netnames)[keisti]

net=DTAG-DIAL ; for (( i=1; i<30; i++ )); do whois -h whois.ripe.net $net$i | grep '^inetnum:' | sed "s;^.*:;$net$i;" ; done