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

Skip to content

Commit f0500b1

Browse files
committed
Minor update for ColdFusion path regexes
1 parent 6a033bb commit f0500b1

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.114"
22+
VERSION = "1.0.5.115"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
@@ -285,7 +285,7 @@
285285
CURRENT_DB = "CD"
286286

287287
# Regular expressions used for finding file paths in error messages
288-
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.-]+)")
288+
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.-]+)")
289289

290290
# Regular expressions used for parsing error messages (--parse-errors)
291291
ERROR_PARSING_REGEXES = (

0 commit comments

Comments
 (0)