sqlmap_scan
Identify and exploit SQL injection vulnerabilities in web applications by running sqlmap against target URLs, with options for custom data, test levels, and database extraction.
Instructions
Automated SQL injection detection and exploitation using sqlmap. url: target URL with parameter (e.g. 'http://site.com/page.php?id=1') data: POST data string (e.g. 'user=foo&pass=bar') level: test level 1-5 (higher = more tests, slower) risk: risk level 1-3 (higher = more aggressive, may alter data) dbms: force DBMS type e.g. 'mysql', 'postgresql', 'mssql', 'oracle' technique: SQL injection techniques — B=Boolean, E=Error, U=Union, S=Stacked, T=Time, Q=Inline (default all: BEUSTQ) enumerate_dbs: enumerate databases (--dbs) enumerate_tables: enumerate tables (--tables) dump: dump table data — use with database and table params database: target database name (-D) table: target table name (-T) cookie: HTTP cookie header value random_agent: use random User-Agent NOTE: Always runs non-interactively (--batch).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| data | No | ||
| dbms | No | ||
| dump | No | ||
| risk | No | ||
| level | No | ||
| table | No | ||
| cookie | No | ||
| database | No | ||
| technique | No | BEUSTQ | |
| random_agent | No | ||
| enumerate_dbs | No | ||
| enumerate_tables | No |