Skip to content

Instantly share code, notes, and snippets.

View F-Masood's full-sized avatar
🌍

F-Masood F-Masood

🌍
View GitHub Profile
@F-Masood
F-Masood / teamviewer_password_decrypt.py
Created September 3, 2021 11:12 — forked from rishdang/teamviewer_password_decrypt.py
This is a quick and dirty Teamviewer password decrypter basis wonderful post by @whynotsecurity
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)