Stellt was auch immer in plab.txt steht vor ip.practicelabs und führt host aus
for ip in $(cat plab.txt); do host $ip.practicelabs.com;done
Scannt das Netz von 1 bis 10 für 192.168.0.$ und schmeißt “not found” raus
for ip in $(seq 1 10);do host 192.168.0.$ip;done |grep -v “not found”
you can find all SUID files. To do this, type the following command:
find / -perm -4000 -type f 2>/dev/null
scannt OS
nmap 192.168.0.10 -script smb-os-discovery.nse
To perform a Website enumeration, type the following command:
nmap --script=http-enum 192.168.0.10
You can check the security level of the SMB server using Nmap script. To do this, type the following command:
nmap -v -p 139,445 -script=smb-security-mode 192.168.0.10