SNMP

  • Simple network management protocol was created to monitor network devices

  • snmpwalk, onesixtyone and braa can be used to footprint snmp

  • Sometimes only shown on UDP scans

    • nmap -sV --top-port 100 -sU <IP>

  • snmpwalk

    • snmpwalk -v2c -c <OID name> 10.129.14.128
      snmpwalk -c public -v1 -t 10 192.168.50.151
      
      
      snmpwalk -c public -v1 192.168.50.151 1.3.6.1.4.1.77.1.2.25
      
      ##enumerate currently running processes
      snmpwalk -c public -v1 192.168.50.151 1.3.6.1.2.1.25.4.2.1.2
      
      ##query all software installed on the machine 
      snmpwalk -c public -v1 192.168.50.151 1.3.6.1.2.1.25.6.3.1.2
      
      ##list all current tcp listening ports
      snmpwalk -c public -v1 192.168.50.151 1.3.6.1.2.1.6.13.1.3

Nmap

OneSixtyOne

Braa

Last updated