الألماني
Open in Telegram
『 السلام عليكم ورحمة الله وبركاته 』 (◠‿◕) محتوانا (◕‿◠) 📡 محتوى الإنترنت والشبكات • 🟠 Orange • 🟣 e& • 🔴 Vodafone • ⚡ AI ZERO /CODE / STARK ━━━━━━━━━━━━━━━━━━━ ذكاء اصطناعي متطور 🔥 أهم محتوى القناة: ① 🐍 برمجة بايثون
Show more925
Subscribers
No data24 hours
-57 days
-530 days
Posts Archive
924
المكنه دي انهارده كنت ركبها انا و ابن ابن ولد عمي عندو تقريبا 10 سنين كنت مخليه ي سوق و ماشين علي طريق سريع و هوا مشكلتو متهور و طفل ف كان ماشي علي 80 الحمدلله ربنا سترها مش هقول حصل اي بس الحمدلله 😂😂
924
if resp.status_code == 200 and "SUCCESS" in resp.text:
print(G + "✅ تم الاشتراك في عرض 1 جيجا بـ 10 جنيه لمدة يومين")
else:
print(R + "❌ فشل الاشتراك:", resp.text)
# ===== التحقق من الرصيد (مبدئي placeholder) =====
def check_balance(session, token, cookie, msisdn):
print(Y + f"📊 التحقق من الرصيد لرقم: {msisdn}")
# لحد ما تجيب API الرصيد
# ===== تشغيل البرنامج =====
if name == "main":
try:
email = input(W + "📧 الإيميل: " + C)
password = input(W + "🔑 الباسورد: " + C)
number = input(W + "📱 رقم الخط: " + C)
session, token, cookie, num = login(email, password, number)
if session:
submit_order(session, token, cookie, num)
while True:
check_balance(session, token, cookie, num)
time.sleep(300) # كل 5 دقائق
except KeyboardInterrupt:
print(R + "\n[🛑] تم إيقاف البرنامج يدويًا.")
sys.exit()
`924
عرض ل واحد جيجا ب 10 لمده يومين لو مرضيش يفعل تعاله خاص
@zero_mazen
`
import requests
import base64
import pyfiglet
import time
import sys
import os
import random
from colorama import Fore, Style, init
# ===== تفعيل الألوان =====
init(autoreset=True)
# ===== ألوان =====
G = Fore.GREEN + Style.BRIGHT
R = Fore.RED + Style.BRIGHT
Y = Fore.YELLOW + Style.BRIGHT
C = Fore.CYAN + Style.BRIGHT
W = Fore.WHITE + Style.BRIGHT
# ===== ألوان متاحة للبانر =====
colors = [
Fore.RED + Style.BRIGHT,
Fore.GREEN + Style.BRIGHT,
Fore.YELLOW + Style.BRIGHT,
Fore.CYAN + Style.BRIGHT,
Fore.MAGENTA + Style.BRIGHT,
Fore.WHITE + Style.BRIGHT,
]
# ===== بانر متغير الألوان =====
ascii_title = pyfiglet.figlet_format("ZERO MAZEN")
for i in range(15): # عدد مرات تغيير الألوان
color = random.choice(colors)
os.system("cls" if os.name == "nt" else "clear")
print(color + "□■" * 30)
print(color + ascii_title)
print(color + "⚠ لازم يكون معاك " + R + "10 جنيه" + color + " رصيد لتفعيل العرض")
print(color + "□■" * 30)
time.sleep(0.3) # سرعة التغيير
# ===== تسجيل الدخول =====
def login(email, password, number):
session = requests.Session()
num = number[1:] if number.startswith("0") else number # إزالة أول صفر لو موجود
# Basic Auth (UTF-8)
code = f"{email}:{password}".encode("utf-8")
xauth = "Basic " + base64.b64encode(code).decode("utf-8")
url_login = "https://mab.etisalat.com.eg:11003/Saytar/rest/authentication/loginWithPlan"
headers_login = {
"applicationVersion": "2",
"applicationName": "MAB",
"Accept": "text/xml",
"Authorization": xauth,
"APP-BuildNumber": "964",
"APP-Version": "27.0.0",
"OS-Type": "Android",
"OS-Version": "12",
"APP-STORE": "GOOGLE",
"Is-Corporate": "false",
"Content-Type": "text/xml; charset=UTF-8",
"User-Agent": "okhttp/5.0.0-alpha.11"
}
data_login = """<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<loginRequest>
<deviceId></deviceId>
<firstLoginAttempt>true</firstLoginAttempt>
<modelType></modelType>
<osVersion></osVersion>
<platform>Android</platform>
<udid></udid>
</loginRequest>"""
try:
resp = session.post(url_login, headers=headers_login, data=data_login, timeout=10)
except requests.exceptions.RequestException as e:
print(R + f"[❌] خطأ في الاتصال: {e}")
return None, None, None, None
if "true" in resp.text:
cookie = resp.headers.get("Set-Cookie", "").split(";")[0]
token = resp.headers.get("auth", "")
print(G + "[✅] تسجيل الدخول ناجح")
return session, token, cookie, num
else:
print(R + "[❌] فشل تسجيل الدخول")
return None, None, None, None
# ===== تنفيذ أمر الاشتراك =====
def submit_order(session, token, cookie, msisdn):
url = "https://mab.etisalat.com.eg:11003/Saytar/rest/zero11/submitOrder"
payload = f"""<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<submitOrderRequest>
<mabOperation></mabOperation>
<msisdn>{msisdn}</msisdn>
<operation>ACTIVATE</operation>
<parameters>
<parameter>
<name>GIFT_FULLFILMENT_PARAMETERS</name>
<value>Offer_ID:24036;isRTIM:Y</value>
</parameter>
</parameters>
<productName>DYNAMIC_OFFERING_PAY_AND_GET_MI</productName>
</submitOrderRequest>"""
headers = {
"User-Agent": "okhttp/5.0.0-alpha.11",
"Accept": "text/xml",
"Content-Type": "application/xml",
"Authorization": f"Bearer {token}",
"Cookie": cookie,
"applicationVersion": "2",
"applicationName": "MAB",
"OS-Type": "Android",
"OS-Version": "12",
"APP-STORE": "GOOGLE",
}
try:
resp = session.post(url, headers=headers, data=payload, timeout=10)
except requests.exceptions.RequestException as e:
print(R + f"[❌] خطأ أثناء الاشتراك: {e}")
return924
ليك 50 وحدة هديه فورية انترنت او مكالمات من&e لما تكلم #6620* بدون مقابل *مبروك* 50 وحدة هديه وكمان نافس على5,000 جنيه شهريا *جايزة كبرى* 40,000 جنيه مع مغامرات ابو زيد يوم هديه بعدين 2 جنيه او20 وحدات يوميا كلم #6620*بدون مقابل حماية المستهلك 216/2025
924
بوت ل 100 ميجا اتصلات
شغال دلوقتي
@internet_zero_BOT
جربوه و ابعتولي صور ضروري
و عملت تحديد كل دقيقه 30 واحد بس يستخدمو
