mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-09 18:02:56 +01: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue