SQLMap Documentation

Installation

To install SQLMap, you can use pip:

pip install sqlmap

Alternatively, you can clone the GitHub repository:

git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev

Basic Usage

The basic syntax for SQLMap is:

sqlmap -u "http://example.com/page.php?id=1"

This will start a basic scan of the specified URL for SQL injection vulnerabilities.

Common Options