mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
pretty important commit (now dumped tables are prone to dictionary attack)
This commit is contained in:
parent
c8d5a6b980
commit
51a492e17d
4 changed files with 116 additions and 36 deletions
|
|
@ -1203,6 +1203,7 @@ def __setKnowledgeBaseAttributes(flushAll=True):
|
|||
kb.targetUrls = set()
|
||||
kb.testedParams = set()
|
||||
kb.userAgents = None
|
||||
kb.wordlist = None
|
||||
|
||||
def __saveCmdline():
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -74,6 +74,9 @@ UPPER_RATIO_BOUND = 0.98
|
|||
# dynamicity mark length used in dynamicity removal engine
|
||||
DYNAMICITY_MARK_LENGTH = 32
|
||||
|
||||
# dummy user prefix used in dictionary attack
|
||||
DUMMY_USER_PREFIX = '__dummy__'
|
||||
|
||||
# System variables
|
||||
IS_WIN = subprocess.mswindows
|
||||
# The name of the operating system dependent module imported. The following
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue