mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Minor "fix" when reading hashes from a local sqlite3 (result of --replicate) and there is an int as value
This commit is contained in:
parent
81034140c0
commit
d436ba2da5
|
@ -303,9 +303,9 @@ def hashRecognition(value):
|
|||
continue
|
||||
elif Backend.getIdentifiedDbms() == DBMS.MYSQL and regex == HASH.ORACLE_OLD:
|
||||
continue
|
||||
elif regex == HASH.CRYPT_GENERIC and getCompiledRegex(GENERAL_IP_ADDRESS_REGEX).match(value):
|
||||
elif regex == HASH.CRYPT_GENERIC and getCompiledRegex(GENERAL_IP_ADDRESS_REGEX).match(str(value)):
|
||||
continue
|
||||
elif getCompiledRegex(regex).match(value):
|
||||
elif getCompiledRegex(regex).match(str(value)):
|
||||
retVal = regex
|
||||
break
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user