mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-16 05:13:22 +01:00
added --cookie for maskSensitiveData too
This commit is contained in:
parent
bd1b07fbc2
commit
f40c6b2ce7
1 changed files with 1 additions and 1 deletions
|
|
@ -2424,7 +2424,7 @@ def maskSensitiveData(msg):
|
|||
|
||||
retVal = msg
|
||||
|
||||
for item in filter(lambda x: x, [conf.hostname, conf.googleDork, conf.aCred, conf.tbl, conf.db, conf.col, conf.user]):
|
||||
for item in filter(lambda x: x, [conf.hostname, conf.googleDork, conf.aCred, conf.tbl, conf.db, conf.col, conf.user, conf.cookie]):
|
||||
regex = SENSITIVE_DATA_REGEX % item
|
||||
while extractRegexResult(regex, retVal):
|
||||
value = extractRegexResult(regex, retVal)
|
||||
|
|
|
|||
Loading…
Reference in a new issue