SuperNES(Super__Nmap__Easy__Scanner) is a python open source security scanner that automates the process of scanning hosts and networks with the most used options of nmap. The main purpose of SuperNES is to makes scans easy and generate html reports of their results.
SuperNES is built on python2.7 and can run on Linux platform which has a Python environment and nmap installed on it. And it needs to be executed as root.
This tool is designed for someone with no experience, with little experience or lazy with nmap :) and their most used options during a Penetration Testing for example in boxes of HackTheBox, iHacklabs, etc ... Always in controlled environments.
The author does not assume any risk of the use of the tool, nor of the damages caused by it. Please, don't use the tool for illegal purposes.
You can download the latest version of SuperNES by cloning the GitHub repository:
- $ git clone https://github.com/RoberMB/SuperNES.git SuperNES
- $ cd SuperNES
- $ python super_nes.py
||| ||| ||| ||| ||| |||
v0.2 beta
Ping Scan
- nmap -sn -oA ./results_SuperNES/ping_scan [IP or Network]
- At the end of the scan generates html report.
Stealth Scan
- nmap -sS -p[PORT] -oA ./results_SuperNES/stealth_scan [IP or Network]
- At the end of the scan generates html report.
Stealth & Detect versions scan
- nmap -sSV -O -p[PORT] -oA ./results_SuperNES/stealth_versions_scan [IP or Network]
- At the end of the scan generates html report.
OS version scan
- nmap -O -oA ./results_SuperNES/os_version_scan [IP or Network]
- At the end of the scan generates html report.
Complete Scan
- nmap -sSV -A -T4 -p[PORT] -oA ./results_SuperNES/complete_scan [IP or Network]
- At the end of the scan generates html report.
||| ||| ||| ||| ||| |||
SuperNES - Super Nmap Easy Scanner
Author: Roberto Mengibar (Sp1kes) sp1kes<at>protonmail.com
Usage: $ python super_nes.py
Suggestions: $ cd /boxes/box1
$ python /tools/super_nes.py
1 - Ping scan.
2 - Stealth scan.
3 - Stealth & Detect versions scan.
4 - OS version scan.
5 - Complete scan.
Option 1
Option 2
Option 3
Option 4
Option 5
||| ||| ||| ||| ||| |||
Coming soon ...