Remember
Register
Techbypass | Learn Security Exploits, Vulnerabilities, and Cybersecurity Tips
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.
Questions
Unanswered
Tags
Users
Ask a Question
How can I find the live domains from an IP block?
0
votes
Hi,
How can I find the live domains from an IP block?
scripting
nmap
ip
live-host
asked
Mar 31, 2020
by
onto
(
169
points)
Please
log in
or
register
to answer this question.
1
Answer
0
votes
Hey,
Here is the Nmap command.
nmap -sP 10.10.5.0/24 | grep report | awk '{print $5}'
answered
Mar 31, 2020
by
codeshikari
(
279
points)
Please
log in
or
register
to add a comment.
...