mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
some refactoring
This commit is contained in:
parent
9356f8005c
commit
7a3096ce25
2 changed files with 10 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue