mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-20 23:34:24 +01:00
minor adjustment
This commit is contained in:
parent
e33ea7c33a
commit
60ca44e0cf
1 changed files with 2 additions and 1 deletions
|
|
@ -2161,7 +2161,8 @@ def extractTextTagContent(page):
|
|||
Returns list containing content from "textual" tags
|
||||
"""
|
||||
|
||||
return [_.group('result') for _ in re.finditer(TEXT_TAG_REGEX, page or "")]
|
||||
page = re.sub(r"(?si)%s[^<]*" % REFLECTED_VALUE_MARKER, "", page or "")
|
||||
return [_.group('result') for _ in re.finditer(TEXT_TAG_REGEX, page)]
|
||||
|
||||
def trimAlphaNum(value):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue