mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Better naming
This commit is contained in:
parent
95b922309c
commit
f41460f8d8
8 changed files with 23 additions and 23 deletions
|
|
@ -1878,7 +1878,7 @@ def popValue():
|
|||
|
||||
return getCurrentThreadData().valueStack.pop()
|
||||
|
||||
def wasLastRequestDBMSError():
|
||||
def wasLastResponseDBMSError():
|
||||
"""
|
||||
Returns True if the last web request resulted in a (recognized) DBMS error page
|
||||
"""
|
||||
|
|
@ -1886,7 +1886,7 @@ def wasLastRequestDBMSError():
|
|||
threadData = getCurrentThreadData()
|
||||
return threadData.lastErrorPage and threadData.lastErrorPage[0] == threadData.lastRequestUID
|
||||
|
||||
def wasLastRequestHTTPError():
|
||||
def wasLastResponseHTTPError():
|
||||
"""
|
||||
Returns True if the last web request resulted in an errornous HTTP code (like 500)
|
||||
"""
|
||||
|
|
@ -1894,7 +1894,7 @@ def wasLastRequestHTTPError():
|
|||
threadData = getCurrentThreadData()
|
||||
return threadData.lastHTTPError and threadData.lastHTTPError[0] == threadData.lastRequestUID
|
||||
|
||||
def wasLastRequestDelayed():
|
||||
def wasLastResponseDelayed():
|
||||
"""
|
||||
Returns True if the last web request resulted in a time-delay
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue