Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.

Learn and share your security findings and help others to secure their digital assets.

Need any help mail to [email protected]

0 votes
Hi, How can I find all live hosts from a list?
by (169 points)

1 Answer

0 votes

You can use this bash script to find live hosts from a list.

#!/bin/bash

nmap -n -sP -iL target.txt| grep report | awk '{print $5}'

by (269 points)
...