mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
minor update for masking sensitive data in error report (added aCred too)
This commit is contained in:
parent
ad2e4002ea
commit
f27f05308a
2 changed files with 2 additions and 2 deletions
|
|
@ -2331,7 +2331,7 @@ def maskSensitiveData(msg):
|
|||
|
||||
retVal = msg
|
||||
|
||||
for item in filter(lambda x: x, [conf.hostname, conf.googleDork]):
|
||||
for item in filter(lambda x: x, [conf.hostname, conf.googleDork, conf.aCred]):
|
||||
regex = SENSITIVE_DATA_REGEX % item
|
||||
while extractRegexResult(regex, retVal):
|
||||
value = extractRegexResult(regex, retVal)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue