mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Consistency in enums
This commit is contained in:
parent
214b9360e9
commit
1ecb921ba7
2 changed files with 40 additions and 40 deletions
|
|
@ -208,10 +208,10 @@ class PAYLOAD:
|
|||
SQLINJECTION = {
|
||||
1: "boolean-based blind",
|
||||
2: "error-based",
|
||||
3: "UNION query",
|
||||
3: "inline query",
|
||||
4: "stacked queries",
|
||||
5: "AND/OR time-based blind",
|
||||
6: "inline query",
|
||||
6: "UNION query",
|
||||
}
|
||||
|
||||
PARAMETER = {
|
||||
|
|
@ -250,10 +250,10 @@ class PAYLOAD:
|
|||
class TECHNIQUE:
|
||||
BOOLEAN = 1
|
||||
ERROR = 2
|
||||
UNION = 3
|
||||
QUERY = 3
|
||||
STACKED = 4
|
||||
TIME = 5
|
||||
QUERY = 6
|
||||
UNION = 6
|
||||
|
||||
class WHERE:
|
||||
ORIGINAL = 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue