mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-01-28 19:11:30 +01:00
Minor fix
This commit is contained in:
parent
648d91d790
commit
0e18fa9c5f
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ def _oneShotUnionUse(expression, unpack=True, limited=False):
|
|||
singleTimeWarnMessage(warnMsg)
|
||||
page = page.replace(kb.chars.stop[:-1], kb.chars.stop)
|
||||
|
||||
retVal = _("(?P<result>%s.*%s)" % (kb.chars.start, kb.chars.stop))
|
||||
retVal = _("(?P<result>%s.*?%s)" % (kb.chars.start, kb.chars.stop))
|
||||
|
||||
if retVal is not None:
|
||||
retVal = getUnicode(retVal, kb.pageEncoding)
|
||||
|
|
|
|||
Loading…
Reference in a new issue