All Projects → hatlord → Snmpwn

hatlord / Snmpwn

Licence: mit
An SNMPv3 User Enumerator and Attack tool

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Snmpwn

Ssb
Secure Shell Bruteforcer — A faster & simpler way to bruteforce SSH server
Stars: ✭ 832 (+354.64%)
Mutual labels:  bruteforce, brute-force
Bitp0wn
Algorithms to re-compute a private key, to fake signatures and some other funny things with Bitcoin.
Stars: ✭ 59 (-67.76%)
Mutual labels:  bruteforce, brute-force
Avax
AVAX is a small, modern and fast console application for decrypting passwords with certain options.
Stars: ✭ 19 (-89.62%)
Mutual labels:  bruteforce, brute-force
Content Bruteforcing Wordlist
Wordlist for content(directory) bruteforce discovering with Burp or dirsearch
Stars: ✭ 173 (-5.46%)
Mutual labels:  bruteforce, brute-force
Elpscrk
A Common User Passwords generator script that looks like the tool Eliot used it in Mr.Robot Series Episode 01 :D :v
Stars: ✭ 113 (-38.25%)
Mutual labels:  bruteforce, brute-force
Dirsearch
Web path scanner
Stars: ✭ 7,246 (+3859.56%)
Mutual labels:  bruteforce, brute-force
Hackphiles
BruteForce Tool For both Instagram and Facebook
Stars: ✭ 57 (-68.85%)
Mutual labels:  bruteforce, brute-force
Jwt Cracker
Simple HS256 JWT token brute force cracker
Stars: ✭ 365 (+99.45%)
Mutual labels:  bruteforce, brute-force
Web Brutator
Fast Modular Web Interfaces Bruteforcer
Stars: ✭ 97 (-46.99%)
Mutual labels:  bruteforce, brute-force
Instabrute
Instagram password bruteforcer
Stars: ✭ 91 (-50.27%)
Mutual labels:  bruteforce, brute-force
Blazy
Blazy is a modern login bruteforcer which also tests for CSRF, Clickjacking, Cloudflare and WAF .
Stars: ✭ 637 (+248.09%)
Mutual labels:  bruteforce, brute-force
Pydictor
A powerful and useful hacker dictionary builder for a brute-force attack
Stars: ✭ 2,055 (+1022.95%)
Mutual labels:  bruteforce, brute-force
Thc Hydra
hydra
Stars: ✭ 5,645 (+2984.7%)
Mutual labels:  bruteforce, brute-force
Bruteforce Database
Bruteforce database
Stars: ✭ 806 (+340.44%)
Mutual labels:  bruteforce, brute-force
Plutus
An automated bitcoin wallet collider that brute forces random wallet addresses
Stars: ✭ 404 (+120.77%)
Mutual labels:  bruteforce, brute-force
Brutex
Automatically brute force all services running on a target.
Stars: ✭ 974 (+432.24%)
Mutual labels:  bruteforce, brute-force
Instahack
Instagram bruteforce tool
Stars: ✭ 265 (+44.81%)
Mutual labels:  bruteforce, brute-force
Socialbox Termux
SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitter ] , Coded By Belahsan Ouerghi Edit By init__0 for termux on android
Stars: ✭ 324 (+77.05%)
Mutual labels:  bruteforce, brute-force
Koa2 Ratelimit
Rate-limiting middleware for Koa2 ES6. Use to limit repeated requests to APIs and/or endpoints such as password reset.
Stars: ✭ 81 (-55.74%)
Mutual labels:  bruteforce, brute-force
Faitagram
(Doesn't work anymore)
Stars: ✭ 117 (-36.07%)
Mutual labels:  bruteforce, brute-force

SNMPwn is an SNMPv3 user enumerator and attack tool. It is a legitimate security tool designed to be used by security professionals and penetration testers against hosts you have permission to test. It takes advantage of the fact that SNMPv3 systems will respond with "Unknown user name" when an SNMP user does not exist, allowing us to cycle through large lists of users to find the ones that do.

What does it do?

  • Checks that the hosts you provide are responding to SNMP requests.
  • Enumerates SNMP users by testing each in the list you provide. Think user brute forcing.
  • Attacks the server with the enumerated accounts and your list of passwords and encryption passwords. No need to attack the entire list of users, only live accounts.
  • Attacks all the different protocol types:
    • No auth no encryption (noauth)
    • Authentication, no encryption (authnopriv)
    • Authentication and encryption (All types supported, MD5, SHA, DES, AES) - (authpriv)

Notes for usage

Built for and tested on Kali Linux 2.x rolling. Should work on any Linux platform but does not work currently on Mac OSX, but will when I get around to it. This is due to the stdout messages for snmpwalk on OSX being different. This script basically wraps snmpwalk. The version of snmpwalk I used was 5.7.3.

Install

git clone https://github.com/hatlord/snmpwn.git
cd snmpwn
gem install bundler  
bundle install
./snmpwn.rb

Built for Ruby 2.3.x. Older versions of Ruby may work, but older than 1.9 may not.

Run

You need to provide the script a list of users, a hosts list, a password list and an encryption password list. Basic users.txt and passwords.txt files are included. You could use passwords.txt for your encryption list also. I would recommend generating one specific to the organisation you are pen testing. The command line options are available via --help as always and should be clear enough. The only ones I would make specific comment on are: --showfail - This will show you all password attack attempts, both successful and failed. It clutters the console output though, so if you do not choose this option you will get a spinning progress indicator instead. --timeout - This is the timeout in milliseconds for the command response, which in this case is snmpwalk. It is set to 0.3 by default, which is 300 milliseconds. If you are testing hosts across a slow link you are going to want to extend this. I wouldn't personally go lower than 300 or results may become unreliable.

./snmpwn.rb --hosts hosts.txt --users users.txt --passlist passwords.txt --enclist passwords.txt

Screengrabs

User Enumeration

User Enumeration

Password Attacks

Password Attacks

Summary of results

Summary

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].