clementcyberknight / IP-Status-Checker

A python script that check a list of IP addresses in a csv file if the are active and give the feedback in a csv file and in the terminal
0 stars 0 forks source link

alternative using nmap #1

Open cherdt opened 5 months ago

cherdt commented 5 months ago

I like the output format, but you may be able to achieve similar results with nmap:

nmap -sn -iL input_list -oG output

-sn performs a ping scan and skips nmap's port scan. -iL reads input from a list, one item per line -oG writes the output to a file in a grep-friendly format.

You can close this issue. Your solution works, just wanted to share an alternative!

clementcyberknight commented 5 months ago

i really appreciate for your comment and suggestion! thank you sharing the alternative approach using nmap. It's great to see different methods for achieving similar results.