mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
more update regarding error based injection support
This commit is contained in:
parent
b2e0b615f8
commit
4009ef385e
8 changed files with 100 additions and 18 deletions
|
|
@ -445,3 +445,13 @@ def goStacked(expression, silent=False):
|
|||
page, _ = Request.queryPage(payload, content=True, silent=silent)
|
||||
|
||||
return payload, page
|
||||
|
||||
def goError(expression):
|
||||
#expression = cleanQuery(expression)
|
||||
|
||||
if conf.direct:
|
||||
return direct(expression), None
|
||||
|
||||
result = __goError(expression)
|
||||
|
||||
return result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue