Last active
September 9, 2024 20:38
-
-
Save flatz/3f242ab3c550d361f8c6d031b07fb6b1 to your computer and use it in GitHub Desktop.
Gets decrypted key from latest Signal desktop app to use with sigtop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os | |
import json | |
from Crypto.Protocol.KDF import PBKDF2 | |
from Crypto.Hash import SHA1 | |
from Crypto.Cipher import AES | |
from Crypto.Util.Padding import unpad | |
def aes_decrypt_cbc(key, iv, data): | |
cipher = AES.new(key, AES.MODE_CBC, iv) | |
return cipher.decrypt(data) | |
password = <PUT HERE YOUR PASSWORD FROM KEYCHAIN> | |
prefix = b'v10' | |
salt = 'saltysalt' | |
derived_key_len = 128 // 8 | |
num_iterations = 1003 | |
iv = b' ' * 16 | |
config_file_path = '~/Library/Application Support/Signal/config.json' | |
with open(os.path.expanduser(config_file_path), 'r') as f: | |
config = json.loads(f.read()) | |
encrypted_key = bytes.fromhex(config['encryptedKey']) | |
assert encrypted_key.startswith(prefix) | |
encrypted_key = encrypted_key[len(prefix):] | |
kek = PBKDF2(password, salt, dkLen = derived_key_len, count = num_iterations, hmac_hash_module = SHA1) | |
decrypted_key = unpad(aes_decrypt_cbc(kek, iv, encrypted_key), block_size = 16).decode('ascii') | |
print('0x' + decrypted_key) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current version unfortunately only with v10 encrypted key, not with v11 which at least Signal Desktop for Linux uses.