mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor update related to the previous commit
This commit is contained in:
parent
bc9e51a551
commit
a100496ec0
3 changed files with 4 additions and 4 deletions
|
|
@ -3283,7 +3283,7 @@ def findDynamicContent(firstPage, secondPage):
|
|||
suffix = suffix[:DYNAMICITY_BOUNDARY_LENGTH]
|
||||
|
||||
for _ in (firstPage, secondPage):
|
||||
match = re.search(r"(?s)%s(.+)%s" % (re.escape(prefix), re.escape(suffix)), _)
|
||||
match = re.search(r"(?s)%s(.+?)%s" % (re.escape(prefix), re.escape(suffix)), _)
|
||||
if match:
|
||||
infix = match.group(1)
|
||||
if infix[0].isalnum():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue