MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / popValue

Function popValue

lib/core/common.py:2762–2778  ·  view source on GitHub ↗

Pop value from the stack (thread dependent) >>> pushValue('foobar') >>> popValue() 'foobar'

()

Source from the content-addressed store, hash-verified

2760 raise exception
2761
2762def popValue():
2763 """
2764 Pop value from the stack (thread dependent)
2765
2766 >>> pushValue('foobar')
2767 >>> popValue()
2768 'foobar'
2769 """
2770
2771 retVal = None
2772
2773 try:
2774 retVal = getCurrentThreadData().valueStack.pop()
2775 except IndexError:
2776 pass
2777
2778 return retVal
2779
2780def wasLastResponseDBMSError():
2781 """

Callers 15

tableExistsFunction · 0.90
searchFunction · 0.90
startFunction · 0.90
heuristicCheckDbmsFunction · 0.90
checkFalsePositivesFunction · 0.90
checkSuhosinPatchFunction · 0.90
checkFilteredCharsFunction · 0.90
checkWafFunction · 0.90
checkNullConnectionFunction · 0.90
getValueFunction · 0.90
queryPageMethod · 0.90
_xpCmdshellTestMethod · 0.90

Calls 2

getCurrentThreadDataFunction · 0.90
popMethod · 0.45

Tested by 2

_findUnionCharCountFunction · 0.72
unionTestFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…