mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Another trivial patch related to the last commit
This commit is contained in:
parent
fd4becf389
commit
412301bb18
2 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ class ReqHandler(_BaseHTTPServer.BaseHTTPRequestHandler):
|
|||
self.send_header(HTTP_HEADER.CONNECTION, "close")
|
||||
|
||||
if content is not None:
|
||||
for match in re.finditer(b"<!(\w+)!>", content):
|
||||
for match in re.finditer(b"<!(\\w+)!>", content):
|
||||
name = match.group(1)
|
||||
_ = getattr(self, "_%s" % name.lower(), None)
|
||||
if _:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue