Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf31d12

Browse files
committed
Adding support for python's cgitb tracebacks
1 parent b4c730f commit cf31d12

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.123"
22+
VERSION = "1.0.5.124"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
@@ -288,7 +288,7 @@
288288
CURRENT_DB = "CD"
289289

290290
# Regular expressions used for finding file paths in error messages
291-
FILE_PATH_REGEXES = (r" in (file )?<b>(?P<result>.*?)</b> on line", r"(?:[>(\[\s])(?P<result>[A-Za-z]:[\\/][\w.\\/-]*)", r"(?:[>(\[\s])(?P<result>/\w[/\w.-]+)")
291+
FILE_PATH_REGEXES = (r" in (file )?<b>(?P<result>.*?)</b> on line", r"(?:[>(\[\s])(?P<result>[A-Za-z]:[\\/][\w.\\/-]*)", r"(?:[>(\[\s])(?P<result>/\w[/\w.-]+)", r"href=['\"]file://(?P<result>/[^'\"]+)")
292292

293293
# Regular expressions used for parsing error messages (--parse-errors)
294294
ERROR_PARSING_REGEXES = (

0 commit comments

Comments
 (0)