SNMP

SNMP is used for network management, allowing administrators to monitor and manage network devices. It operates by exchanging information between network devices and a central management system.

This chapter is in-progress.

Enumerating community strings with onesixtyone

onesixtyone -c /opt/useful/SecLists/Discovery/SNMP/snmp.txt <IP>

Retrieve MIB records with snmpwalk

snmpwalk -v2c -c <community string> <IP>+

Enumerating OIDs for know community strings with braa

braa <community string>@<IP>:.1.3.6.*

# don't forget to try
braa <community string>@<IP>:.1.3.6.* -2 # claim to be a SNMP2C agent

Last updated