Need any help mail to [email protected]
You can use this bash script to find live hosts from a list.
#!/bin/bashnmap -n -sP -iL target.txt| grep report | awk '{print $5}'
#!/bin/bash
nmap -n -sP -iL target.txt| grep report | awk '{print $5}'