A GUI-based network security scanner with support for multiple scanning tools including nmap, nikto, gobuster, dirsearch, enum4linux, wpscan, and sqlmap.
- Easy-to-use PyQt6 interface for common security scanning tools
- Dark mode interface for extended usage
- Configurable scan parameters and output locations
- Detailed scan results displayed in a user-friendly interface
- Support for multiple scanning tools:
- Nmap: Port scanning and OS detection with 100+ specialized scripts
- Nikto: Web server vulnerability scanning
- Gobuster: Directory/file enumeration
- Dirsearch: Web path discovery
- Enum4linux: Windows/Samba enumeration
- WPScan: WordPress vulnerability scanning
- SQLMap: SQL injection testing
- Intelligent service detection with targeted scanning
- Automatic output organization in project folders
- Comprehensive logging and report generation
EasyScanner uses intelligent service detection to automatically apply specialized Nmap scripts based on detected services:
- SMB/Windows: Enumerate shares, domains, users, and OS details
- NFS/RPC: List shares, mount points, and accessible files
- FTP: Check anonymous access and list accessible files
- SSH: Enumerate authentication methods and key algorithms
- DNS: Test zone transfers, cache snooping, and service discovery
- SNMP: Gather interface data, OS info, and user accounts
- HTTP/HTTPS: Detect WAFs, test CSRF/CORS, scan for SQL injection points
- WordPress: Full vulnerability scanning via WPScan integration
- Web Directories: Multiple tools (Gobuster, Dirsearch) for thorough enumeration
- MySQL/MSSQL/PostgreSQL: Check for empty passwords, enumerate users and tables
- MongoDB/Redis/Cassandra: Configuration and info gathering
- Elasticsearch/CouchDB: Database enumeration
- Docker/Kubernetes: Registry enumeration, API security testing
- Jenkins/RabbitMQ/Zookeeper: Service configuration analysis
- APIs: GraphQL, REST endpoint discovery and testing
- SSL/TLS: Cipher testing, certificate validation, vulnerability checks (Heartbleed, POODLE)
- IoT Devices: UPNP, MQTT protocol testing
- VNC/RDP: Authentication bypass testing, info gathering
- Python 3.x
- PyQt6
- The following security tools installed:
- nmap
- nikto
- gobuster
- dirsearch
- enum4linux
- wpscan
- sqlmap
- Clone the repository using the following command:
git clone https://github.com/YanivHaliwa/easy_scanner.git
cd easy_scanner
- Install Python dependencies:
pip install -r requirements.txt
- Copy
config.template.json
toconfig.json
and adjust settings as needed:cp config.template.json config.json
The config.json
file allows you to customize:
- Output directory for scan results
- Tool-specific settings and timeout values
- Default options for each scanning tool
- Custom wordlists and scan parameters
Run the application with:
./run
Or manually:
pyuic6 appui.ui -o appui.py
python3 main.py
Scan results are saved in the configured output directory, which defaults to a subfolder under reports/
. Each scan creates organized output files:
- Full Nmap scan details with OS detection
- Service-specific scan results
- Discovered files and directories
- Identified vulnerabilities
- Comprehensive logs with timestamps
The following files are generated:
app_log.txt
: Overall application logsfull_nmap_output.txt
: Complete nmap scan results- Tool-specific output files (SQLMap, Gobuster, etc.)
The UI is built with PyQt6 and can be modified by editing appui.ui
with Qt Designer and regenerating the UI code:
pyuic6 appui.ui -o appui.py
- Sudo Password Prompts: Some tools like nmap require sudo privileges for certain scan types. The application will prompt for your password when needed.
- Missing Tools: If you receive errors about missing commands, ensure all the security tools are installed on your system.
- Scan Timeouts: Adjust the timeout settings in
config.json
if scans are timing out.
This tool is intended for authorized security testing only. Always ensure you have permission to scan the target systems. Unauthorized scanning of networks may be illegal in many jurisdictions.
This tool is provided for educational and professional security testing purposes only. The developers are not responsible for any misuse or damage caused by this program. Always ensure you have proper authorization before scanning any systems.
Created by Yaniv Haliwa for security testing and educational purposes.