Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2667b commit ab64d38Copy full SHA for ab64d38
1 file changed
lib/techniques/dns/use.py
@@ -70,7 +70,7 @@ def dnsUse(payload, expression):
70
71
if Backend.getIdentifiedDbms() in (DBMS.MSSQL, DBMS.PGSQL):
72
query = agent.prefixQuery("; %s" % expressionUnescaped)
73
- query = agent.suffixQuery(query)
+ query = "%s%s" % (query, queries[Backend.getIdentifiedDbms()].comment.query)
74
forgedPayload = agent.payload(newValue=query)
75
else:
76
forgedPayload = safeStringFormat(payload, (expressionUnescaped, randomInt(1), randomInt(3)))
0 commit comments