mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
Couple of patches (related to previous commit)
This commit is contained in:
@@ -668,7 +668,7 @@ def attackDumpedTable():
|
||||
value = table[column]["values"][i]
|
||||
|
||||
if column in binary_fields and re.search(HASH_BINARY_COLUMNS_REGEX, column) is not None:
|
||||
value = encodeHex(value, binary=False)
|
||||
value = encodeHex(getBytes(value), binary=False)
|
||||
|
||||
if hashRecognition(value):
|
||||
found = True
|
||||
|
||||
Reference in New Issue
Block a user