SScanner is a professional, open-source automated reconnaissance engine designed strictly for Linux Operating Systems. It bridges the gap between raw CLI security tools and high-level AI analysis by running deep infrastructure scans locally and packaging the raw results into optimized, elite-tier security analysis prompts.
Developed by Unknownx007.
- Local Framework Scans: SScanner spins up background threads executing deep routines across
Nmap,Subfinder, andDirsearch. - Local Logging: All target outputs are automatically formatted and backed up as plaintext blueprints inside the local
scans/folder. - AI Integration UI: Copy the single-click master template directly from the black-and-white dashboard, paste it into an LLM (ChatGPT, Gemini, Claude, or DeepSeek), and instantly obtain structural vulnerability roadmaps.
SScanner utilizes native system binaries. You must have these dependencies pre-installed on your Linux machine before executing the server engine:
sudo apt update && sudo apt install -y nmap subfinder dirsearch python3-pip python3-venvClone the repository and spin up the server environment with the following command sequences:
# 1. Clone this repository
git clone https://github.com/Unknownx007/SScanner
cd SScanner
# 2. Configure isolated python environment
python3 -m venv venv
source venv/bin/activate
# 3. Pull python package requirements
pip install -r requirements.txt
# 4. Initialize the engine
python3 app.pyOnce running, navigate to http://127.0.0.1:5000 in your browser.
- Nmap: Run with active service mapping (
-sV) and integrated vulnerability scanning scripts (--script=vuln). - Subfinder: Passive subdomain mapping to chart hidden network infrastructure.
- Dirsearch: High-speed, structural endpoint and directory discovery.
Distributed under the MIT License. See LICENSE for more information.