> For the complete documentation index, see [llms.txt](https://jotter.gitbook.io/red-team/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jotter.gitbook.io/red-team/network/common-protocols/snmp.md).

# SNMP

## SNMP

SNMP is a network management protocol for a variety of devices. It can be a source of exploitation for things like printers or IoT devices, typically disclosing sensitive information or credentials. It isn't incredibly fruitful but is worth checking.

**Brute Force Communities**

```
onesixtyone -c communitylist.txt 10.129.14.128
```

**Walk OIDs**

```
snmpwalk -v[SNMP version] -c [community] [IP] -Oa
```

**Extended Objects**

```
snmpwalk -v [VERSION_SNMP] -c [COMM_STRING] [DIR_IP] NET-SNMP-EXTEND-MIB::nsExtendObjects
```
