The idea here is to be able to have a list of IPs in a CSV, run nmap -Pn on each IP and store the results in an output.csv
if you run this in WSL you'll need to do some character substitution first, example:
sed -i 's/\r$//' ScanIps.sh
./ScanIps.sh listOfDevices.csv output.csvUsed to recon open ports without having to use shodoan or 3rd party tools (potentially sending IP info to a 3rd party).
-Cheers