mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00: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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user