161 - SNMP
Few checklist commands
Nmap:
sudo nmap -sU --open -p 161 10.11.1.1-254
(find ip with SMTP open)onesixtyone bruteforce tool:
for ip in $(seq 1 254); do echo 10.11.1.$ip; done > ips
then, onesixtyone -c community -i ipsEnumerating Entire MIB Tree:
snmpwalk -c public -v1 -t 10 <IP>
Enumerating Windows Users:
snmpwalk -c public -v1 <IP> 1.3.6.1.4.1.77.1.2.25
Enumerating Running Windows Processes:
snmpwalk -c public -v1 <IP> 1.3.6.1.2.1.25.4.2.1.2
Enumerating Open TCP Ports:
snmpwalk -c public -v1 <IP> 1.3.6.1.2.1.6.13.1.3
Last updated
Was this helpful?