Back to tools
web

SQLMap

Submitted by @x-gem 5/30/2026

Project Description

SQLMap is an automated SQL injection tool used to detect and exploit database vulnerabilities. ## 🔧 Installation git clone https://github.com/sqlmapproject/sqlmap.git cd sqlmap ## ▶️ Usage ### Basic scan: python sqlmap.py -u "http://site.com/page?id=1" ### Enumerate DBs: --dbs ### Dump database: --dump ## ⚡ Advanced - Use cookies: --cookie="PHPSESSID=xyz" - POST request: --data="id=1" ## 🎯 Use Cases - SQL Injection testing - Database extraction - Vulnerability assessment ## 🧠 Pro Tip Use --risk and --level flags for deeper testing.