mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Couple of patches (related to previous commit)
This commit is contained in:
parent
b39a1ad0a7
commit
9a7d9a6017
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue