mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-24 18:43:47 +03:00
Minor update
This commit is contained in:
parent
455ea9922c
commit
67279a1136
|
@ -134,7 +134,7 @@ def main():
|
|||
for match in re.finditer(r'File "(.+?)", line', excMsg):
|
||||
file_ = match.group(1).replace('\\', "/")
|
||||
file_ = file_[file_.find("sqlmap"):] if "sqlmap" in file_ else file_
|
||||
file_ = file_.replace("sqlmap/", "", 1)
|
||||
file_ = re.sub(r"(?i)sqlmap[^/]*/", "", file_, 1)
|
||||
excMsg = excMsg.replace(match.group(1), file_)
|
||||
|
||||
logger.critical(errMsg)
|
||||
|
|
Loading…
Reference in New Issue
Block a user