SQLmap
Operators
--batch
-> Non interactive mode.
--dbms
-> Type of db being use (Ex. mysql
)
--threads
-> Goes from 1
to 10
.
Data
To retrieve everything:
--dbs
-> List all the databases.
To look at the
tables
of a specific database:
Repeat the same process for
columns
:
For
dumping
the data:
Or dump just one column:
--level
--level
This option sets the level of tests, with values ranging from 1
to 5
(the default is level 1).
Level 1
: Basic tests, only the most common and least intrusive SQL injection tests are performed.Level 2-4
: These levels increase the range and types of tests performed, with more advanced and varied testing.Level 5
: Perform the most comprehensive set of tests, including advanced and highly invasive tests. It increases the risk of being detected or causing issues on the target system.
--risk
--risk
This option sets the risk level of tests, with values ranging from 1
to 3
(the default is 1).
Risk 1
: Basic, low-risk tests that are less likely to cause harm or be detected.Risk 2
: Performs potentially more intrusive or advanced techniques.Risk 3
: Attempt high-risk tests that could be more aggressive, such as testing for blind injections, time-based techniques, or dropping and modifying tables.
HTTP
HTTP
Last updated