📜 ⬆️ ⬇️

Using IPv4 addresses on a Russian scale

Based on bash 'a.

For those who do not remember well enough the anthem of the Russian Federation:
for i in {200..225}; do nslookup 62.76.96.$i | grep "(?<=name = ).*$" -o -P ; done

upd Improved options:

laconic
dig -t ptr +short {200..225}.96.76.62.in-addr.arpa

Windows with PowerShell
for ($i=200; $i -le 223; $i++){(nslookup 62.76.96.$i)[3].ToString().Replace('.', ' ').Substring(9)}

Windows without PowerShell
for /l %i in (200,1,255) do nslookup 62.76.96.%i

')

Source: https://habr.com/ru/post/96323/


All Articles