mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-05-14 01:16:59 +00:00
Refactoring to --technique
This commit is contained in:
parent
287f74dbd2
commit
17844eb87c
7 changed files with 4275 additions and 4170 deletions
18
sqlmap.conf
18
sqlmap.conf
|
|
@ -224,16 +224,16 @@ textOnly = False
|
|||
[Techniques]
|
||||
|
||||
# SQL injection techniques to test for.
|
||||
# Valid: an integer composed by 1, 2, 3, 4 or 5 where:
|
||||
# 1: boolean-based blind SQL injection
|
||||
# 2: error-based SQL injection
|
||||
# 3: UNION query SQL injection
|
||||
# 4: stacked queries SQL injection
|
||||
# 5: time-based blind SQL injection
|
||||
# Example: 24 (means test for error-based and stacked queries SQL
|
||||
# Valid: a string composed by B, E, U, S and T where:
|
||||
# B: Boolean-based blind SQL injection
|
||||
# E: Error-based SQL injection
|
||||
# U: UNION query SQL injection
|
||||
# S: Stacked queries SQL injection
|
||||
# T: Time-based blind SQL injection
|
||||
# Example: ES (means test for error-based and stacked queries SQL
|
||||
# injection types only)
|
||||
# Default: 0 (means test for all SQL injection types - recommended)
|
||||
tech = 0
|
||||
# Default: BEUST (means test for all SQL injection types - recommended)
|
||||
tech = BEUST
|
||||
|
||||
# Seconds to delay the response from the DBMS.
|
||||
# Valid: integer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue