mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
adding support for PgSQL DNS data exfiltration
This commit is contained in:
parent
b2afa87e48
commit
8c6eb4faa9
5 changed files with 27 additions and 7 deletions
|
|
@ -805,7 +805,7 @@ class Agent:
|
|||
retVal = None
|
||||
|
||||
if inpStr:
|
||||
match = re.search("%s(?P<result>.*?)%s" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER), inpStr)
|
||||
match = re.search("%s(?P<result>.*?)%s" % (PAYLOAD_DELIMITER, PAYLOAD_DELIMITER), inpStr, re.S)
|
||||
|
||||
if match:
|
||||
retVal = match.group("result")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue