mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
some refactoring
This commit is contained in:
@@ -2830,6 +2830,12 @@ def isNoneValue(value):
|
||||
else:
|
||||
return value is None
|
||||
|
||||
def isNullValue(value):
|
||||
"""
|
||||
Returns whether the value contains explicit 'NULL' value
|
||||
"""
|
||||
return isinstance(value,basestring) and value.upper() == "NULL"
|
||||
|
||||
def expandMnemonics(mnemonics, parser, args):
|
||||
"""
|
||||
Expand mnemonic options
|
||||
|
||||
Reference in New Issue
Block a user