one bug fix for Host header (value should be without port number); one improvement for --tables - when no tables ask user if he wants to brute force them; one tweak - adding kb.ignoreTimeout for --tables

This commit is contained in:
Miroslav Stampar
2011-05-22 09:48:46 +00:00
parent 2ea613b170
commit 9b2623514a
3 changed files with 34 additions and 4 deletions

View File

@@ -2573,3 +2573,19 @@ def isBinaryData(value):
if isinstance(value, basestring):
retVal = reduce(lambda x, y: x or not (y in string.printable or ord(y) > 255), value, False)
return retVal
def isNoneValue(value):
"""
Returns whether the value contains implicit 'None' value
"""
if isinstance(value, basestring):
return value == "None"
elif isinstance(value, list):
return value == [None]
elif isinstance(value, tuple):
return value == (None)
elif isinstance(value, dict):
return len(value) == 1 and any(map(lambda x: x in value, [None, "None"]))
else:
return value is None