mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +03:00
minor adjustment
This commit is contained in:
parent
e33ea7c33a
commit
60ca44e0cf
|
@ -2161,7 +2161,8 @@ def extractTextTagContent(page):
|
||||||
Returns list containing content from "textual" tags
|
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):
|
def trimAlphaNum(value):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user