Enumerating information on the network such as hostnames and IP addresses. Create a file called test.txt and a file called ignore.txt. For legal reasons, ignore.txt should never be tested.
Footprinting: Enumerating information with no knowledge about system.
https://github.com/r3dy/capsulecorp-pentest
Pingsweep:
for octet in {1..254}; do ping -c 1 192.168.8.$octet -W 1 >> pingsweep.txt & done
cat pingsweep.txt | grep “bytes from” |cut -d “ “ -f4 |cut -d “:” -f1 > targets.txt
cat targets.txt
No comments:
Post a Comment