mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #3538
This commit is contained in:
parent
e7ffc8f9b1
commit
3b3774abaa
3 changed files with 4 additions and 4 deletions
2
thirdparty/beautifulsoup/beautifulsoup.py
vendored
2
thirdparty/beautifulsoup/beautifulsoup.py
vendored
|
|
@ -559,7 +559,7 @@ class Tag(PageElement):
|
|||
self.escapeUnrecognizedEntities = parser.escapeUnrecognizedEntities
|
||||
|
||||
# Convert any HTML, XML, or numeric entities in the attribute values.
|
||||
convert = lambda k, val: (k,
|
||||
convert = lambda (k, val): (k,
|
||||
re.sub("&(#\d+|#x[0-9a-fA-F]+|\w+);",
|
||||
self._convertEntities,
|
||||
val))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue