161,162,10161,10162/udp - Pentesting SNMP
Default conf
cat /etc/snmp/snmpd.conf | grep -v "#" | sed -r '/^\s*$/d'
# Dangerous settings
rwuser noauth # Provides access to the full OID tree without authentication.
rwcommunity <community string> <IPv4 address> #Provides access to the full OID tree regardless of where the requests were sent from.
rwcommunity6 <community string> <IPv6 address> #Same access as with rwcommunity with the difference of using IPv6.
Footprinting
snmpwalk -v2c -c public 10.129.14.128 . # dot to crawl allLast updated