Making sqlmap compatible with PyPy/PyPy3

This commit is contained in:
Miroslav Stampar
2021-05-24 13:49:35 +02:00
parent da86486cd9
commit c4c1571902
4 changed files with 7 additions and 3 deletions

View File

@@ -351,7 +351,7 @@ def crypt_generic_passwd(password, salt, **kwargs):
'rl.3StKT.4T8M'
"""
return crypt(password, salt)
return getText(crypt(password, salt))
def unix_md5_passwd(password, salt, magic="$1$", **kwargs):
"""