mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
minor update
This commit is contained in:
parent
aa931efd4d
commit
db260c44d3
2 changed files with 9 additions and 2 deletions
|
|
@ -405,12 +405,19 @@ def goStacked(expression, silent=False):
|
|||
|
||||
return payload, page
|
||||
|
||||
def goError(expression):
|
||||
def goError(expression, suppressOutput=False):
|
||||
#expression = cleanQuery(expression)
|
||||
|
||||
if suppressOutput:
|
||||
pushValue(conf.verbose)
|
||||
conf.verbose = 0
|
||||
|
||||
if conf.direct:
|
||||
return direct(expression), None
|
||||
|
||||
result = errorUse(expression)
|
||||
|
||||
if suppressOutput:
|
||||
conf.verbose = popValue()
|
||||
|
||||
return result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue