mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Heuristically checking for WAF/IDS/IPS by default
This commit is contained in:
parent
cd7d9edcbe
commit
6fc41ca940
6 changed files with 14 additions and 43 deletions
|
|
@ -209,7 +209,6 @@ optDict = {
|
|||
"alert": "string",
|
||||
"answers": "string",
|
||||
"beep": "boolean",
|
||||
"checkWaf": "boolean",
|
||||
"cleanup": "boolean",
|
||||
"dependencies": "boolean",
|
||||
"disableColoring": "boolean",
|
||||
|
|
|
|||
|
|
@ -40,6 +40,9 @@ BANNER = """\033[01;33m _
|
|||
DIFF_TOLERANCE = 0.05
|
||||
CONSTANT_RATIO = 0.9
|
||||
|
||||
# Ratio used in heuristic check for WAF/IDS/IPS protected targets
|
||||
IDS_WAF_CHECK_RATIO = 0.5
|
||||
|
||||
# Lower and upper values for match ratio in case of stable page
|
||||
LOWER_RATIO_BOUND = 0.02
|
||||
UPPER_RATIO_BOUND = 0.98
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue