This commit is contained in:
CoolHandSquid 2021-08-12 09:34:46 -04:00 committed by GitHub
parent e1cdfc3cdc
commit 2992b7305e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

View File

@ -181,3 +181,30 @@ If there is an ACL that only allows some IPs to query the SMNP service, you can
* snmpd.conf
* snmp-config.xml
## HackTricks Automatic Commands
```
Protocol_Name: SNMP #Protocol Abbreviation if there is one.
Port_Number: 161 #Comma separated if there is more than one.
Protocol_Description: Simple Network Managment Protocol #Protocol Abbreviation Spelled out
Name: Notes
Description: Notes for SNMP
Note: """
SNMP - Simple Network Management Protocol is a protocol used to monitor different devices in the network (like routers, switches, printers, IoTs...).
https://book.hacktricks.xyz/pentesting/pentesting-snmp
"""
Name: SNMP Check
Descriptio: Enumerate SNMP
Command: """snmp-check {IP}"""
Name: OneSixtyOne
Description: Crack SNMP passwords
Command: """onesixtyone -c /usr/share/seclists/Discovery/SNMP/common-snmp-community-strings-onesixtyone.txt {IP} -w 100"""
Name: Nmap
Description: Nmap snmp (no brute)
Command: nmap --script "snmp* and not snmp-brute" {IP}
```