mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
minor update for masking sensitive data in error report (added aCred too)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user