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

Function isNullValue

lib/core/common.py:4370–4380  ·  view source on GitHub ↗

Returns whether the value contains explicit 'NULL' value >>> isNullValue(u'NULL') True >>> isNullValue(u'foobar') False

(value)

Source from the content-addressed store, hash-verified

4368 return value is None
4369
4370def isNullValue(value):
4371 """
4372 Returns whether the value contains explicit 'NULL' value
4373
4374 >>> isNullValue(u'NULL')
4375 True
4376 >>> isNullValue(u'foobar')
4377 False
4378 """
4379
4380 return hasattr(value, "upper") and value.upper() == NULL
4381
4382def expandMnemonics(mnemonics, parser, args):
4383 """

Callers 4

_findUnionCharCountFunction · 0.90
readFileMethod · 0.90
getPasswordHashesMethod · 0.90

Calls

no outgoing calls

Tested by 2

_findUnionCharCountFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…