Thursday, December 12, 2024

Dec 12, 2024

 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

Scanning the network for open ports.

  Exploring My Network with Nmap A couple of days ago, I used a tool called Wifite to crack the Wi-Fi password for my wireless access poin...