Description
Sn1per is an automated scanner that performs comprehensive reconnaissance, enumeration, and vulnerability scanning against a target. It combines dozens of security tools into one workflow covering OSINT, recon, web scanning, brute forcing, and exploitation.
Installation
BASH
git clone https://github.com/1N3/Sn1per.git
cd Sn1per
chmod +x install.sh && sudo ./install.sh
Basic Usage
BASH
# Normal scan
sniper -t target.com
# Stealth scan (passive only)
sniper -t target.com -m stealth
# Web application scan
sniper -t https://target.com -m web
Advanced Usage
BASH
# Full port scan
sniper -t target.com -m vulnscan
# OSINT mode (no active scanning)
sniper -t target.com -m osint
# Aggressive scan (all checks)
sniper -t target.com -m aggressive
# With workspace
sniper -t target.com -w workspace_name
# Specific port
sniper -t target.com -p 8080
# Target list scan
sniper -f targets.txt -m discover
Scan Modes
TEXT
normal — Default scan (recon + vulns)
stealth — Passive reconnaissance only
web — Web application focused
vulnscan — Full vulnerability scan
aggressive — All checks enabled
osint — OSINT/passive intelligence gathering only
discover — Host and port discovery
Common Workflows
BASH
# Quick recon
sniper -t target.com -m stealth
# Full pentest assessment
sniper -t target.com -m aggressive -w pentest_target
# Bug bounty scope discovery
sniper -f scope.txt -m discover -w bounty