forked from esp0xdeadbeef/cheat.sheets
-
Notifications
You must be signed in to change notification settings - Fork 5
/
snmp.cheat
30 lines (20 loc) · 762 Bytes
/
snmp.cheat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
% SNMP (simply not my problem)
# Windows User Accounts
snmpwalk -c public -v1 <target> 1.3.6.1.4.1.77.1.2.25
# Windows Running Programs
snmpwalk -c public -v1 <target> 1.3.6.1.2.1.25.4.2.1.2
# Windows Hostname
snmpwalk -c public -v1 <target> 1.3.6.1.2.1.1.5
# Windows Share Information
snmpwalk -c public -v1 <target> 1.3.6.1.4.1.77.1.2.3.1.1
# Windows Share Information
snmpwalk -c public -v1 <target> 1.3.6.1.4.1.77.1.2.27
# Windows TCP Ports
snmpwalk -c public -v1 <target> 1.3.6.1.2.1.6.13.1.3
# Software Name
snmpwalk -c public -v1 <target> 1.3.6.1.2.1.25.6.3.1.2
# brute-force community strings
onesixtyone -i <targets> -c <file-with-community-strings>
# brute-force
snmp-check <target>
nmap -sU -p161 --script "snmp* and not snmp-brute" <target>