Skip to content

Instantly share code, notes, and snippets.

@hubert3
Last active November 22, 2022 09:12
Show Gist options
  • Star 49 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save hubert3/8560499 to your computer and use it in GitHub Desktop.
Save hubert3/8560499 to your computer and use it in GitHub Desktop.
Python implementation of passcode hashing algorithm used on the Samsung Galaxy S4 GT-I9505 4.2.2
#!/usr/bin/python
'''
Python implementation of passcode hashing algorithm used on the Samsung Galaxy S4 GT-I9505 4.2.2
Correct PIN for hash and salt below is 1234.
Get 40-character hash value in ascii hex format from file /data/system/password.key on the phone
Get salt in signed numeric format by doing sqlite3 query SELECT value FROM locksettings WHERE name = 'lockscreen.password_salt' on /data/system/locksettings.db
by @hubert3 2014-01-23
'''
import sys
from hashlib import sha1
from binascii import unhexlify
def get_salt(salt):
int_salt = int(salt)
int_salt = (int_salt & 0xffffffffffffffff)
salt = hex(int(int_salt)).lstrip("0x")
salt = salt.rstrip('L')
return salt
samsung_hash = unhexlify('867B4B7F6C7E5CCC50A1BD183D8C3E5801F20344'.lower())
salt = get_salt(-3343618892075477414)
for pin in map('{:04}'.format,range(0,10000)):
print 'Hashing PIN %s' % pin
digest = sha1('0'+pin+salt).digest() # binary digest, not ascii hex
for i in map(str,range(1,1024)): # Samsung uses 1024 SHA-1 iterations
digest = sha1(digest+i+pin+salt).digest()
if digest == samsung_hash:
print 'FOUND PIN %s' % pin
sys.exit(0)
print 'PIN not found'
@VivienGiraud
Copy link

1.74 seconds with i7@3.5 + Multiprocessing.

@VivienGiraud
Copy link

UPDATE:
On M1 pro :

  • Not parallelized (python 3.10 & 3.11) == 0.66 sec
  • Parallelized Python 3.10 & 3.11 == 0.13 sec

See you in 8 years with M7 Ultra 👋

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment