12 lines
229 B
Markdown
12 lines
229 B
Markdown
|
# SNMP Enumeration
|
||
|
|
||
|
* Find community strings
|
||
|
```sh
|
||
|
onesixtyone $TARGET_IP -c /usr/share/seclists/Discovery/SNMP/snmp-onesixtyone.txt
|
||
|
```
|
||
|
* Query users
|
||
|
```
|
||
|
snmpwalk -v2c -c <community_string> $TARGET_IP 1.3.6.1.4.1.77.1.2.25
|
||
|
```
|
||
|
|