mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
update of redirection mechanism (now 3-state - redirected, original and "ignored" (containing redirection message itself))
This commit is contained in:
parent
ec895c3d1a
commit
9bc735963b
3 changed files with 19 additions and 11 deletions
|
|
@ -110,6 +110,11 @@ class EXPECTED:
|
|||
BOOL = "bool"
|
||||
INT = "int"
|
||||
|
||||
class REDIRECTION:
|
||||
FOLLOW = "1"
|
||||
ORIGINAL = "2"
|
||||
IGNORE = "3"
|
||||
|
||||
class PAYLOAD:
|
||||
SQLINJECTION = {
|
||||
1: "boolean-based blind",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue