maincharacter
Diamond Üye
- Katılım
- 12 Ocak 2024
- Mesajlar
- 339
- Beğeniler
- 76
atan var zaten linkler karısmıs bideaçık kaynak koduna ulaşmayı başardım. hemen anlatayım.
öncelikle, pyinstaller decompiler kullandım.
bkz:Linkleri görebilmek için kayıt olmanız gerekmektedir
ardından, pylingual kullanarak CrâckMe.pyc dosyasını decompile ettim.
bkz:Linkleri görebilmek için kayıt olmanız gerekmektedir
kaynak kodu:
Kod:# Decompiled with PyLingual (https://pylingual.io) # Internal filename: CrâckMe.py # Bytecode version: 3.10.0rc2 (3439) # Source timestamp: 1970-01-01 00:00:00 UTC (0) import colorama from colorama import Fore, Style from cryptography.fernet import Fernet import time import base64 colorama.init() key = b'Xjfi2pDQ8V7PhHrDeifTaGmN7y12gdkfaDj8xaTpt5Q=' cipher_suite = Fernet(key) encrypted_password = cipher_suite.encrypt(b'busifreyiyarrakbulursundemekcheatglobalkullanicilaribulandcgelsin:nowzy.cc') fake_passwords = [cipher_suite.encrypt(b'wrong_password1'), cipher_suite.encrypt(b'wrong_password2'), cipher_suite.encrypt(b'wrong_password3')] def verify_password(user_input): """Verifies the password using decryption and comparison.""" try: decrypted_password = cipher_suite.decrypt(encrypted_password).decode('utf-8') return user_input == decrypted_password except: return False def fake_checks(): """Fake checks to confuse reverse engineers.""" for _ in range(5): time.sleep(0.5) print(Fore.RED + '[!] Yanlış şifre kontrol ediliyor...' + Style.RESET_ALL) time.sleep(0.3) print(Fore.YELLOW + '[!] Deneniyor: ' + str(cipher_suite.decrypt(fake_passwords[_ % 3])) + Style.RESET_ALL) def main(): print(Fore.CYAN + Style.BRIGHT + 'Hoşgeldin!') print(Fore.MAGENTA + '(S) II' + Style.RESET_ALL) print(Fore.YELLOW + '[+] Şu anda test yazılımı kullanıyorsunuz!') print('[+] Bir hata bulursanız bana ulaşın:') print('[+] Discord: nowzy.cc' + Style.RESET_ALL) license_key = input(Fore.GREEN + '[>] Lisans: ' + Style.RESET_ALL) fake_checks() if verify_password(license_key): print(Fore.GREEN + '[+] Doğru şifre! Hesaplar veriliyor...' + Style.RESET_ALL) time.sleep(2) print(Fore.BLUE + '[+] Valorant Hesabı: daddyjaxxx:SJVE636AL') print('[+] Nitro Kodu: https://promos.discord.gg/TV66vtwuVFXnsECaDrGspyf9' + Style.RESET_ALL) else: print(Fore.RED + '[!] Yanlış şifre! Programı kırmaya çalışmayın.' + Style.RESET_ALL) if __name__ == '__main__': main()