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')
finally:
return None
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:
Linkleri görebilmek için kayıt olmanız gerekmektedir
' + Style.RESET_ALL)
return None
None(Fore.RED + '[!] Yanlış şifre! Programı kırmaya çalışmayın.' + Style.RESET_ALL)
if __name__ == '__main__':
main()
return None
acik kaynak kodu