3 206
Подписчики
-524 часа
-247 дней
-11130 день
Архив постов
3 206
انشاء حسابات شوكرام التحديث الجديد روح ارشق متابعينك تكدر تسوي حسابات لانهائي 🤣.
3 206
موقع ينطيك 100 بروكسي و 10GB البروكسيات سريعه فول ماينطيك بروكسي مايشتغل لا كلها شغالة
https://dashboard.proxyscrape.com/
3 206
import requests
import random
import string
import time
headers = {
"User-Agent": "Mozilla/5.0"
}
chars = string.ascii_lowercase + string.digits
checked = set()
while True:
first = random.choice(chars)
third = random.choice(chars)
username = first + first + third
if username in checked:
continue
checked.add(username)
try:
response = requests.get(
f"https://showgram.app/u/{username}",
headers=headers,
timeout=10
)
if f"(@{username})" in response.text:
print(f"❌ مستخدم : {username}")
else:
print(f"✅ متاح : {username}")
except Exception:
pass
time.sleep(0.5)
كود فحص يوزرات تطبيق showgram الجديد مثل تيك توك روح اخذ يوزرات ثلاثيه مكرره بي بالكود تكدر تحصلهن لان حجزوهن
3 206
``import requests
import random
import string
import time
headers = {
"User-Agent": "Mozilla/5.0"
}
chars = string.ascii_lowercase + string.digits
checked = set()
while True:
first = random.choice(chars)
third = random.choice(chars)
username = first + first + third
if username in checked:
continue
checked.add(username)
try:
response = requests.get(
f"https://showgram.app/u/{username}",
headers=headers,
timeout=10
)
if f"(@{username})" in response.text:
print(f"❌ مستخدم : {username}")
else:
print(f"✅ متاح : {username}")
except Exception:
pass
time.sleep(0.5)``
كود فحص يوزرات تطبيق showgram الجديد مثل تيك توك روح اخذ يوزرات ثلاثيه مكرره بي بالكود تكدر تحصلهن لان حجزوهن
3 206
``
import requests
import random
import string
import time
headers = {
"User-Agent": "Mozilla/5.0"
}
chars = string.ascii_lowercase + string.digits
checked = set()
while True:
first = random.choice(chars)
third = random.choice(chars)
username = first + first + third
if username in checked:
continue
checked.add(username)
try:
response = requests.get(
f"https://showgram.app/u/{username}",
headers=headers,
timeout=10
)
if f"(@{username})" in response.text:
print(f"❌ مستخدم : {username}")
else:
print(f"✅ متاح : {username}")
except Exception:
pass
time.sleep(0.5)``
كود فحص يوزرات تطبيق showgram الجديد مثل تيك توك روح اخذ يوزرات ثلاثيه مكرره بي بالكود تكدر تحصلهن لان حجزوهن
3 206
import telebot
import requests
import json
import os
import time
BOT_TOKEN = "توكن بوتك"
bot = telebot.TeleBot(BOT_TOKEN)
class PhotoEditorAI:
def __init__(self):
self.base_url = "https://photoeditorai.online"
self.session = requests.Session()
self.headers = {
'authority': 'photoeditorai.online',
'accept': '*/*',
'accept-language': 'ar-EG,ar;q=0.9,en-US;q=0.8,en;q=0.7',
'sec-ch-ua': '"Chromium";v="137", "Not/A)Brand";v="24"',
'sec-ch-ua-mobile': '?1',
'sec-ch-ua-platform': '"Android"',
'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/137.0.0.0 Mobile Safari/537.36',
'referer': 'https://photoeditorai.online/',
'origin': 'https://photoeditorai.online'
}
self.cookies = {
'g_state': '{"i_l":0,"i_ll":1785826421736,"i_b":"TP71Ycm2rOnAqZGaMPuWnSE0oblahpHHnQqUjigLq/g","i_e":{"enable_itp_optimization":24},"i_et":1785826421736}',
'better-auth.session_token': 'gJVMYQpMokbMwiYHxBUFrtcmodAtzrsy.Qt3MaJ24Wl82vboPiW7SA6W05pdx9uj4NZr%2BY5eipVY%3D'
}
def process(self, image_path, prompt):
url = f"{self.base_url}/api/storage/images"
with open(image_path, 'rb') as f:
files = {'files': (os.path.basename(image_path), f, 'image/png')}
res = self.session.post(url, files=files, headers=self.headers, cookies=self.cookies)
data = res.json()
asset_id = data.get('data', {}).get('results', [{}])[0].get('userAssetId')
if not asset_id:
return None
url = f"{self.base_url}/api/ai/generate"
payload = {
"provider": "agnes",
"model": "agnes-image-2.1-flash",
"prompt": prompt,
"scene": "prompt-edit",
"options": {"userAssetIds": [asset_id], "aspectRatio": "auto"}
}
res = self.session.post(url, json=payload, headers=self.headers, cookies=self.cookies)
data = res.json()
task_info = json.loads(data.get('data', {}).get('taskInfo', '{}'))
image_url = task_info.get('images', [{}])[0].get('imageUrl')
if not image_url:
return None
return requests.get(image_url).content
user_data = {}
@bot.message_handler(commands=['start'])
def start(m):
bot.reply_to(m, "أرسل الصورة ثم النص المطلوب تعديله")
@bot.message_handler(content_types=['photo'])
def photo(m):
file = bot.get_file(m.photo[-1].file_id)
path = f"temp_{m.chat.id}.jpg"
with open(path, 'wb') as f:
f.write(bot.download_file(file.file_path))
user_data[m.chat.id] = path
bot.reply_to(m, "أرسل النص المطلوب")
@bot.message_handler(func=lambda m: True)
def text(m):
cid = m.chat.id
if cid not in user_data:
bot.reply_to(m, "أرسل الصورة أولاً")
return
msg = bot.reply_to(m, "⏳ جاري المعالجة...")
editor = PhotoEditorAI()
result = editor.process(user_data[cid], m.text)
os.remove(user_data[cid])
del user_data[cid]
bot.delete_message(cid, msg.message_id)
if result:
bot.send_photo(cid, result, caption=f"✅ تم التعديل: {m.text}")
else:
bot.send_message(cid, "فشل")
print("البوت يعمل...")
bot.infinity_polling()
بوت تعديل الصور من النص مثل اضف قطه لخ غير محدود
3 206
يمكن بسبب القضية هاي
جهاز الأمن الروسي FSB : مؤسس "تلغرام" بافل دوروف أدرج على قائمة المطلوبين دوليا
3 206
هذا موقع تقفيص دفعت 30$ حتى اشتري شدات بوبجي وكلشي ماوصلني بالبدايه شحنت وصلتني الشدات بس مره ثانيه دفعت مبلغ اكبر قفصوني يخلونك تثق بالموقع ويقطونك
https://playwallet.bot/ar/faq
3 206
+1
يمكن هاي ثغره جديده هم بدون ماتراسل ابلاغ احتيال لان اني مبلغ ع حساب ب 2025 وهسه اجتني الازالة ب 2026
