Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59f0da3 commit 2af2aefCopy full SHA for 2af2aef
1 file changed
lib/core/common.py
@@ -3003,9 +3003,9 @@ def maskSensitiveData(msg):
3003
retVal = retVal.replace(value, '*' * len(value))
3004
3005
if not conf.get("hostname"):
3006
- match = re.search(r"(?i)sqlmap.+(-u|--url)\s+([^ ]+)", retVal)
+ match = re.search(r"(?i)sqlmap.+(-u|--url)(\s+|=)([^ ]+)", retVal)
3007
if match:
3008
- retVal = retVal.replace(match.group(2), '*' * len(match.group(2)))
+ retVal = retVal.replace(match.group(3), '*' * len(match.group(3)))
3009
3010
3011
if getpass.getuser():
0 commit comments