mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
minor
This commit is contained in:
parent
4ab3edfc94
commit
9ec9d223e1
|
@ -1481,18 +1481,21 @@ def pushValue(value):
|
|||
"""
|
||||
Push value to the stack
|
||||
"""
|
||||
|
||||
kb.valueStack.append(value)
|
||||
|
||||
def popValue():
|
||||
"""
|
||||
Pop value from the stack
|
||||
"""
|
||||
|
||||
return kb.valueStack.pop()
|
||||
|
||||
def wasLastRequestError():
|
||||
"""
|
||||
Returns True if the last web request resulted in a (recognized) DBMS error page
|
||||
"""
|
||||
|
||||
return kb.lastErrorPage and kb.lastErrorPage[0]==kb.lastRequestUID
|
||||
|
||||
def beep():
|
||||
|
@ -1511,6 +1514,6 @@ def beep():
|
|||
|
||||
audio.close()
|
||||
except:
|
||||
print '\a'
|
||||
dataToStdout('\a', True)
|
||||
else:
|
||||
print '\a'
|
||||
dataToStdout('\a', True)
|
||||
|
|
Loading…
Reference in New Issue
Block a user