Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39deceb commit e023e0dCopy full SHA for e023e0d
2 files changed
lib/core/common.py
@@ -1782,7 +1782,7 @@ def wasLastRequestDelayed():
1782
1783
return retVal
1784
else:
1785
- return threadData.lastQueryDuration - conf.timeSec
+ return (threadData.lastQueryDuration - conf.timeSec) >= 0
1786
1787
def adjustTimeDelay(lastQueryDuration, lowerStdLimit):
1788
"""
lib/takeover/xp_cmdshell.py
@@ -93,12 +93,7 @@ def __xpCmdshellCheck(self):
93
94
inject.goStacked(cmd)
95
96
- delayed = wasLastRequestDelayed()
97
-
98
- if isinstance(delayed, bool):
99
- return delayed
100
- else:
101
- return None
+ return wasLastRequestDelayed()
102
103
def xpCmdshellForgeCmd(self, cmd):
104
self.__randStr = randomStr(lowercase=True)
0 commit comments