snmp-check – SNMP service enumeration tool
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
root@kali:~# snmp-check -h snmp-check v1.9 - SNMP enumerator Copyright (c) 2005-2015 by Matteo Cantoni (www.nothink.org) Usage: snmp-check [OPTIONS] <target IP address> -p --port : SNMP port. Default port is 161; -c --community : SNMP community. Default is public; -v --version : SNMP version (1,2c). Default is 1; -w --write : detect write access (separate action by enumeration); -d --disable_tcp : disable TCP connections enumeration! -t --timeout : timeout in seconds. Default is 5; -r --retries : request retries. Default is 1; -i --info : show script version; -h --help : show help menu; root@kali:~# |
SNMP-Check Usage Example
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 31 32 33 34 35 36 37 38 39 40 41 42 43 |
root@kali:~# snmp-check 10.15.16.5 -c public snmp-check v1.9 - SNMP enumerator Copyright (c) 2005-2015 by Matteo Cantoni (www.nothink.org) [+] Try to connect to 10.15.16.5:161 using SNMPv1 and community 'public' [*] System information: Host IP address : 10.15.16.5 Hostname : ...retracted... Description : ...retracted... Contact : ...retracted... Location : ...retracted... Uptime snmp : - Uptime system : 6 days, 00:19:32.07 System date : - [*] Network information: ....SNIP... [*] Network interfaces: ....SNIP... [*] Network IP: ....SNIP... [*] Routing information: ....SNIP... [*] TCP connections and listening ports: ....SNIP... [*] Listening UDP ports: ....SNIP... root@kali:~# |