Forwarded from ツ🖤
الغاء متابعه الكل 🖤ツ.zip
524.6 KB
سكربت الغاء متابعه الكل
المكتبه: aminofix
عدد السطور: 41
طريقه التشغيل
١- بتشغل الاسكربت
٢- بتحط الايميل
٣- بتحط الباسورد
٤- بتحط رابط البروفايل
المكتبه: aminofix
عدد السطور: 41
طريقه التشغيل
١- بتشغل الاسكربت
٢- بتحط الايميل
٣- بتحط الباسورد
٤- بتحط رابط البروفايل
Forwarded from ツ🖤
import json
import time
import requests
from webbrowser import open_new_tab
from typing import Union
from base64 import b64encode
from hashlib import sha1
import hmac
import pyfiglet
import os
# ====== الحقوق ======
y = '\033[1;93m\n' # أصفر
r = '\n\033[1;31m' # أحمر
g = '\033[1;92m' # أخضر
b = '\033[1;34m' # أزرق
lb = '\033[1;36m' # أزرق سماوي
gr = '\033[1;90m' # رصاصي
i = "_"
print(r + pyfiglet.figlet_format("ATEF", font="slant"))
print(b + i * 60)
print(y + pyfiglet.figlet_format("verification", font="slant"))
print(b + i * 60)
# ====== الثوابت ======
PREFIX = bytes.fromhex("19")
SIG_KEY = bytes.fromhex("DFA5ED192DDA6E88A12FE12130DC6206B1251E44")
SEPARATOR = "#" * 50
JSON_FILE = "accounts.json"
def signature(data: Union[str, bytes]) -> str:
"""إنشاء توقيع للرسالة (باساس HMAC-SHA1 ثم base64 مع بادئة PREFIX)."""
if not isinstance(data, (bytes, bytearray)):
data = str(data).encode("utf-8")
mac = hmac.new(SIG_KEY, data, sha1).digest()
return b64encode(PREFIX + mac).decode("utf-8")
def make_headers(device: str, data: Union[str, bytes]) -> dict:
"""تكوين هيدر الطلب مع توقيع الرسالة."""
return {
"NDCDEVICEID": device,
"Accept-Language": "en-US",
"Content-Type": "text/javascript; charset=UTF-8",
"User-Agent": "Dalvik/2.1.0 (Linux; U; Android 5.1.1; SM-G973N Build/beyond1qlteue-user; com.narvii.amino.master/3.4.33562)",
"Host": "service.aminoapps.com",
"Accept-Encoding": "gzip",
"Connection": "Upgrade",
"NDC-MSG-SIG": signature(data),
}
def login(device: str, email: str, password: str) -> dict:
"""محاولة تسجيل الدخول عبر API الخاص بـ aminoapps."""
url = "https://aminoapps.com/api/v1/g/s/auth/login"
payload = {
"email": email,
"v": 2,
"secret": f"0 {password}",
"deviceID": device,
"clientType": 300,
"action": "normal",
"timestamp": int(time.time() * 1000),
}
data = json.dumps(payload)
resp = requests.post(url=url, data=data, headers=make_headers(device, data))
try:
return resp.json()
except ValueError:
return {"error": f"Non-JSON response ({resp.status_code})", "text": resp.text}
def main():
# قراءة ملف الحسابات
try:
with open(JSON_FILE, "r", encoding="utf-8") as f:
accounts = json.load(f)
except FileNotFoundError:
print(f"لم يتم العثور على الملف: {JSON_FILE}")
return
except json.JSONDecodeError as e:
print(f"خطأ في قراءة ملف JSON: {e}")
return
for account in accounts:
email = account.get("email")
password = account.get("password")
device_id = account.get("device")
if not (email and password and device_id):
print(f"حقل مفقود في الحساب: {account}\n{SEPARATOR}")
continue
try:
result = login(device_id, email, password)
except Exception as e:
print(f"خطأ عند الاتصال للحساب {email}: {e}\n{SEPARATOR}")
continue
if isinstance(result, dict):
if "sid" in result:
print(f"{g}✅ تم تسجيل الدخول بنجاح: {email}\n{SEPARATOR}")
elif "url" in result and "Verify" in str(result):
open_new_tab(result["url"])
print(f"{y}مطلوب تحقق: {result['url']}\n{SEPARATOR}")
input("أكمل التحقق ثم اضغط Enter للمتابعة: ")
elif result.get("api:message"):
print(f"{r}{result.get('api:message')}\n{SEPARATOR}")
elif result.get("error"):
print(f"{r}خطأ: {result.get('error')}\n{SEPARATOR}")
else:
print(f"{gr}استجابة غير متوقعة: {result}\n{SEPARATOR}")
else:
print(f"{r}استجابة غير صالحة للحساب {email}: {result}\n{SEPARATOR}")
print("\nانتهى التشغيل")
if __name__ == "__main__":
main()
سكربت توثيق حسابات
ملف الحسابات: accounts.json
عدد السطور: 123
طريقه التشغيل
وضع ملف الحسابات (accounts.json) مع الاسكربت في مجلد واحد وقم بتشغيل الاسكربت
Forwarded from ツ🖤
ملحوظه
ملف الحسابات يجب ان يحتوي علي 5 حسابات فقط لتجنب مشكله too many request
ملف الحسابات يجب ان يحتوي علي 5 حسابات فقط لتجنب مشكله too many request
Forwarded from 𝐀𝐌𝐈𝐍𝐎₂𝐇 (ツ🖤)
Forwarded from 𝐀𝐌𝐈𝐍𝐎₂𝐇 (ツ🖤)
3 × 1
انضمام للمنتدي ✅
انضمام للجروب ✅
مشاهده ✅
accounts.json
الناس معاها حسابات؟
by: @X_504
https://t.me/Amino_H
https://t.me/Amino_H
انضمام للمنتدي ✅
انضمام للجروب ✅
مشاهده ✅
accounts.json
الناس معاها حسابات؟
by: @X_504
https://t.me/Amino_H
https://t.me/Amino_H
Forwarded from المستشار احمد ابو اياد
This media is not supported in your browser
VIEW IN TELEGRAM
ارتبك وقلها عب عب عب، رد عليها ابن موزه قصدي تبع قطر وقلها اه بحكي ..
اجا ابو عائشه الشيباني يركد وانا وانا وانا ..
قام القطري قلها اعطيه رقمك واشر اتعاب عيشه ..
ملعون ابو الي اسسكم همج وكلشي عندكم جنس
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from ツ🖤
𝐒𝐂𝐑𝐈𝐏𝐓_𝟮𝟬𝟮𝟲.zip
606.1 KB
11 سكربت امينو شغالين 100% ⚡🔥
https://t.me/Amino_H
https://t.me/Amino_H
بعد شويه هنشر سكربت توثيق حسابات من غير تو ميني ريكويست وسكربت المشاهده وسكربت شعبيه كل المنتديات
By: @atef_27
https://t.me/Amino_H
https://t.me/Amino_H
بعد شويه هنشر سكربت توثيق حسابات من غير تو ميني ريكويست وسكربت المشاهده وسكربت شعبيه كل المنتديات
By: @atef_27
Forwarded from 𝐀𝐌𝐈𝐍𝐎₂𝐇 (ツ🖤)
import json
import time
import random
from aminodorksfix import Client, SubClient
API_KEY = "562916da11bb8a0e1935d06120fc7e71"
print("===================================")
print(" Quantum Adaptive By bakr")
print("===================================")
with open("accounts.json", "r") as f:
accounts = json.load(f)
chat_link = input("room link:-» ")
def adaptive_join(client, sub_client, com_id, chat_id, email):
retries, delay = 0, 1
while retries < 4:
try:
client.join_video_chat_as_viewer(com_id, chat_id)
print(f"[OK] {email} joined as viewer")
return True
except Exception as e:
if "Too Many Requests" in str(e):
print(f"[429] {email} backoff {delay}s")
time.sleep(delay + random.uniform(0.5, 1.5))
delay *= 2
retries += 1
else:
print(f"[FAIL] {email} could not join: {e}")
return False
return False
batch_size = 3
for i in range(0, len(accounts), batch_size):
batch = accounts[i:i+batch_size]
print(f"\n[Batch] Processing accounts {i+1} to {i+len(batch)}")
for acc in batch:
email = acc["email"]
password = acc["password"]
device = acc["device"]
try:
client = Client(api_key=API_KEY, deviceId=device)
client.login(email, password)
link_info = client.get_from_code(chat_link)
com_id = link_info.comId
chat_id = link_info.objectId
sub_client = SubClient(comId=com_id, profile=client.profile)
try: client.join_community(com_id)
except: pass
try: sub_client.join_chat(chat_id)
except: pass
success = adaptive_join(client, sub_client, com_id, chat_id, email)
# Quantum decision: adjust short internal delay based on success/failure
if success:
time.sleep(random.uniform(2, 4))
else:
time.sleep(random.uniform(6, 10))
except Exception as e:
print(f"[ERROR] {email} failed: {e}")
time.sleep(random.uniform(6, 10))
# هنا: تأخير ثابت تقريباً دقيقة واحدة مع تفاوت ±5 ثواني لكل حساب
per_account_wait = 65 + random.uniform(-5, 5) # يتراوح تقريباً بين 55 و65 ثانية
per_account_wait = max(1, per_account_wait) # تأكد أنه لا يقل عن ثانية واحدة
print(f"[Wait] Sleeping {per_account_wait:.2f}s before next account...")
time.sleep(per_account_wait)
# After each batch, longer adaptive pause
print("[Quantum] Batch complete, cooling down...")
time.sleep(random.uniform(15, 25))
سكربت المشاهده 🔥🔥
accounts.json
بدون تو ميني ريكويست
https://t.me/Amino_H
https://t.me/Amino_H
By: @X_504
Telegram
𝐀𝐌𝐈𝐍𝐎₂𝐇
Information security education
بيع وشراء امينو pinned «import json import time import random from aminodorksfix import Client, SubClient API_KEY = "562916da11bb8a0e1935d06120fc7e71" print("===================================") print(" Quantum Adaptive By bakr") print("===================================")…»
Forwarded from 𝐀𝐌𝐈𝐍𝐎₂𝐇 (ツ🖤)
طريقه تشغيل سكربتات امينو للمبتدئين
https://youtu.be/MotUbI7bjB8
https://t.me/Amino_H
https://t.me/Amino_H
https://youtu.be/MotUbI7bjB8
https://t.me/Amino_H
https://t.me/Amino_H
Forwarded from حركة حماس "الرسمية"
بسم الله الرحمن الرحيم
خبر صحفي
وصل وفد حركة المقاومة الإسلامية حماس برئاسة الدكتور خليل الحية رئيس حركة حماس في قطاع غزة إلى جمهورية مصر العربية لبدء المفاوضات حول آليات وقف إطلاق النار وانسحاب قوات الاحتلال وتبادل الأسرى.
حركة المقاومة الإسلامية- حماس
الأحد: 13 ربيع الآخر 1447هـ
الموافق: 05 أكتوبر/ تشرين الأول 2025م
الموقع الرسمي - حركة حماس
https://t.me/+sklEwcJvC2tjNGVk
خبر صحفي
وصل وفد حركة المقاومة الإسلامية حماس برئاسة الدكتور خليل الحية رئيس حركة حماس في قطاع غزة إلى جمهورية مصر العربية لبدء المفاوضات حول آليات وقف إطلاق النار وانسحاب قوات الاحتلال وتبادل الأسرى.
حركة المقاومة الإسلامية- حماس
الأحد: 13 ربيع الآخر 1447هـ
الموافق: 05 أكتوبر/ تشرين الأول 2025م
الموقع الرسمي - حركة حماس
https://t.me/+sklEwcJvC2tjNGVk
import os, time
from aminodorksfix import Client, SubClient
API_KEY = "562916da11bb8a0e1935d06120fc7e71"
email = input("Email: ")
password = input("Password: ")
client = Client(api_key=API_KEY)
client.login(email=email, password=password)
print("Login successful.")
time.sleep(0.5)
os.system("clear")
comId = input("Community ID: ")
sub_client = SubClient(comId=comId, profile=client.profile)
sub_client.edit_profile(backgroundColor="#AA000000")
print("Transparent profile applied successfully.")
سكربت بروفايل شفاف
Transparent profile script
import asyncio
import os
from aminodorksfix.asyncfix import Client
API_KEY = "562916da11bb8a0e1935d06120fc7e71"
async def get_comid_from_link(link):
c = Client(api_key=API_KEY, socket_enabled=False)
try:
info = await c.get_from_code(link)
return getattr(info, "comId", None)
except:
return None
async def main():
link = input("Enter the community link: ").strip()
os.system('cls' if os.name == 'nt' else 'clear')
comid = await get_comid_from_link(link)
if comid:
print(comid)
if name == "main":
asyncio.run(main())
سكربت استخراج id المجتمع
Community ID Extraction Script
بيع وشراء امينو pinned «import os, time from aminodorksfix import Client, SubClient API_KEY = "562916da11bb8a0e1935d06120fc7e71" email = input("Email: ") password = input("Password: ") client = Client(api_key=API_KEY) client.login(email=email, password=password) print("Login successful.")…»
مطلوب منتدي يكون كويس اعرض الي عندك بالخاص لو عجبني بشتريه بقروش او مقابل حساب بالانمي لفل16بيه 4القاب
@abod6987
@abod6987