mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
Some more cleanup related to the last commit (unneeded manual crafting/unneeded closing with ;)
This commit is contained in:
parent
560e0fcb25
commit
ec43ceec40
|
@ -468,7 +468,7 @@ def goStacked(expression, silent=False):
|
|||
|
||||
comment = queries[Backend.getIdentifiedDbms()].comment.query
|
||||
query = agent.prefixQuery(";%s" % expression)
|
||||
query = agent.suffixQuery("%s;%s" % (query, comment))
|
||||
query = agent.suffixQuery(query, comment)
|
||||
payload = agent.payload(newValue=query)
|
||||
Request.queryPage(payload, content=False, silent=silent, noteResponseTime=False, timeBasedCompare=True)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user