I want to use an nmap
script to convert ASN -> IP ranges
So the nmap script is used like that,
nmap --script targets-asn --script-args ragets-asn.asn=12345
This command return the IP ranges in 12345
ASN.
I have a list.txt
with multiple ASN.
I want to run the nmap
command for all the ASNs in the list.txt
file
Bash is preferred.
Thanks in advance.