📧 info@ciso.sa | 📱 +966550939344 | الرياض، المملكة العربية السعودية
🔧 صيانة مجدولة — السبت 2:00-4:00 صباحاً. قد تكون بعض الميزات غير متاحة مؤقتاً.    ●   
💎
خطة Pro بخصم 50% احصل على جميع ميزات AI والتقارير غير المحدودة والدعم ذي الأولوية. الترقية الآن
مركز البحث
ESC للإغلاق
Global general قطاع التكنولوجيا والذكاء الاصطناعي MEDIUM 3h Global general قطاع التكنولوجيا والذكاء الاصطناعي HIGH 4h Global vulnerability التعليم العالي CRITICAL 13h Global data_breach القطاع الحكومي HIGH 14h Global supply_chain تطوير البرمجيات والمجتمعات مفتوحة المصدر CRITICAL 14h Global malware تطوير البرمجيات CRITICAL 14h Global phishing قطاعات متعددة HIGH 15h Global vulnerability تطبيقات الويب CRITICAL 15h Global apt البنية التحتية الحرجة CRITICAL 15h Global ransomware قطاعات متعددة CRITICAL 16h Global general قطاع التكنولوجيا والذكاء الاصطناعي MEDIUM 3h Global general قطاع التكنولوجيا والذكاء الاصطناعي HIGH 4h Global vulnerability التعليم العالي CRITICAL 13h Global data_breach القطاع الحكومي HIGH 14h Global supply_chain تطوير البرمجيات والمجتمعات مفتوحة المصدر CRITICAL 14h Global malware تطوير البرمجيات CRITICAL 14h Global phishing قطاعات متعددة HIGH 15h Global vulnerability تطبيقات الويب CRITICAL 15h Global apt البنية التحتية الحرجة CRITICAL 15h Global ransomware قطاعات متعددة CRITICAL 16h Global general قطاع التكنولوجيا والذكاء الاصطناعي MEDIUM 3h Global general قطاع التكنولوجيا والذكاء الاصطناعي HIGH 4h Global vulnerability التعليم العالي CRITICAL 13h Global data_breach القطاع الحكومي HIGH 14h Global supply_chain تطوير البرمجيات والمجتمعات مفتوحة المصدر CRITICAL 14h Global malware تطوير البرمجيات CRITICAL 14h Global phishing قطاعات متعددة HIGH 15h Global vulnerability تطبيقات الويب CRITICAL 15h Global apt البنية التحتية الحرجة CRITICAL 15h Global ransomware قطاعات متعددة CRITICAL 16h
الثغرات

CVE-2026-33935

مرتفع ⚡ اختراق متاح
MyTube is a self-hosted downloader and player for several video websites Prior to version 1.8.72, an unauthenticated attacker can lock out administrator and visitor accounts from password-based authen
CWE-307 — نوع الضعف
نُشر: Mar 27, 2026  ·  آخر تحديث: Apr 2, 2026  ·  المصدر: NVD
CVSS v3
7.5
🔗 NVD الرسمي
📄 الوصف (الإنجليزية)

MyTube is a self-hosted downloader and player for several video websites Prior to version 1.8.72, an unauthenticated attacker can lock out administrator and visitor accounts from password-based authentication by triggering failed login attempts. The application exposes three password verification endpoints, all of which are publicly accessible. All three endpoints share a single file-backed login attempt state stored in `login-attempts.json`. When any endpoint records a failed authentication attempt via `recordFailedAttempt()`, the shared login attempt state is updated, increasing the `failedAttempts` counter and adjusting the associated timestamps and cooldown values. Before verifying a password, each endpoint calls `canAttemptLogin()`. This function checks the shared JSON file to determine whether a cooldown period is active. If the cooldown has not expired, the request is rejected before the password is validated. Because the failed attempt counter and cooldown timer are globally shared, failed authentication attempts against any endpoint affect all other endpoints. An attacker can exploit this by repeatedly sending invalid authentication requests to any of these endpoints, incrementing the shared counter and waiting for the cooldown period between attempts. By doing so, the attacker can progressively increase the lockout duration until it reaches 24 hours, effectively preventing legitimate users from authenticating. Once the maximum lockout is reached, the attacker can maintain the denial of service indefinitely by waiting for the cooldown to expire and sending another failed attempt, which immediately triggers another 24-hour lockout if no successful login occurred in the meantime. Version 1.8.72 fixes the vulnerability.

🤖 ملخص AI

CVE-2026-33935 is a critical account lockout vulnerability in MyTube versions prior to 1.8.72 that allows unauthenticated attackers to trigger indefinite denial of service by exploiting a shared login attempt counter across multiple authentication endpoints. An attacker can progressively lock out all administrator and visitor accounts for up to 24 hours by sending repeated failed login attempts, and maintain this lockout indefinitely by resetting the counter before it expires. This vulnerability is particularly dangerous for self-hosted deployments common in Saudi organizations where MyTube may be used for internal video management.

📄 الوصف (العربية)

🤖 التحليل الذكي آخر تحليل: May 3, 2026 07:33
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability poses significant risk to Saudi organizations using MyTube for internal video management, particularly in: (1) Government agencies and ministries using self-hosted video platforms for internal communications and training; (2) Educational institutions (universities, schools) relying on MyTube for course content delivery; (3) Corporate enterprises in banking, energy, and telecommunications sectors using MyTube for internal media management; (4) Healthcare facilities using video-based training and documentation systems. The vulnerability enables complete denial of service to legitimate administrators and users, disrupting critical internal communications and operational continuity. Organizations in regulated sectors (banking under SAMA, government under NCA) face compliance violations if this vulnerability leads to service unavailability.
🏢 القطاعات السعودية المتأثرة
Government and Public Administration Education and Universities Banking and Financial Services Energy and Utilities Telecommunications Healthcare Corporate Enterprises
⚖️ درجة المخاطر السعودية (AI)
8.2
/ 10.0
🔧 Remediation Steps (English)
IMMEDIATE ACTIONS:
1. Identify all MyTube instances in your environment and document their versions
2. Implement network-level access controls to restrict authentication endpoints to trusted IP ranges only
3. Deploy rate limiting at the reverse proxy/WAF level to restrict failed login attempts (e.g., max 5 attempts per IP per 15 minutes)
4. Enable detailed logging of all authentication attempts including source IP, timestamp, and endpoint
5. Monitor login-attempts.json file for suspicious patterns (rapid increments in failedAttempts counter)

PATCHING GUIDANCE:
1. Upgrade all MyTube instances to version 1.8.72 or later immediately
2. Before patching, back up the login-attempts.json file
3. After patching, verify that per-endpoint login attempt tracking is functioning correctly
4. Test authentication from multiple endpoints to confirm independent lockout mechanisms

COMPENSATING CONTROLS (if immediate patching not possible):
1. Implement reverse proxy authentication (nginx/Apache) in front of MyTube with independent rate limiting per endpoint
2. Use Web Application Firewall (WAF) rules to detect and block rapid failed authentication patterns
3. Implement IP-based access restrictions allowing only authorized administrator IPs
4. Deploy SIEM rules to alert on: (a) More than 10 failed login attempts from single IP in 5 minutes, (b) Repeated failed attempts across multiple endpoints from same source
5. Configure automated response to block source IPs after threshold exceeded

DETECTION RULES:
1. Alert if login-attempts.json failedAttempts counter increases by >5 in 1 minute
2. Alert if cooldown duration reaches 24 hours (1440 minutes)
3. Alert on authentication requests from same IP to multiple endpoints within 30 seconds
4. Monitor for POST requests to /login, /admin-login, /visitor-login endpoints with invalid credentials from same source IP >3 times per minute
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. حدد جميع نسخ MyTube في بيئتك وقم بتوثيق إصداراتها
2. قم بتنفيذ عناصر تحكم الوصول على مستوى الشبكة لتقييد نقاط نهاية المصادقة على نطاقات IP موثوقة فقط
3. نشر تحديد معدل على مستوى الوكيل العكسي/WAF لتقييد محاولات تسجيل الدخول الفاشلة (على سبيل المثال، بحد أقصى 5 محاولات لكل IP لكل 15 دقيقة)
4. تفعيل تسجيل مفصل لجميع محاولات المصادقة بما في ذلك IP المصدر والطابع الزمني ونقطة النهاية
5. مراقبة ملف login-attempts.json للأنماط المريبة (زيادات سريعة في عداد failedAttempts)

إرشادات التصحيح:
1. قم بترقية جميع نسخ MyTube إلى الإصدار 1.8.72 أو أحدث على الفور
2. قبل التصحيح، قم بعمل نسخة احتياطية من ملف login-attempts.json
3. بعد التصحيح، تحقق من أن تتبع محاولات تسجيل الدخول لكل نقطة نهاية يعمل بشكل صحيح
4. اختبر المصادقة من نقاط نهاية متعددة للتأكد من آليات القفل المستقلة

عناصر التحكم التعويضية (إذا لم يكن التصحيح الفوري ممكناً):
1. قم بتنفيذ مصادقة الوكيل العكسي (nginx/Apache) أمام MyTube مع تحديد معدل مستقل لكل نقطة نهاية
2. استخدم قواعد جدار حماية تطبيقات الويب (WAF) للكشف عن أنماط المصادقة الفاشلة السريعة وحظرها
3. تنفيذ قيود الوصول القائمة على IP للسماح فقط بـ IPs المسؤول المصرح
4. نشر قواعد SIEM للتنبيه على: (أ) أكثر من 10 محاولات تسجيل دخول فاشلة من IP واحد في 5 دقائق، (ب) محاولات فاشلة متكررة عبر نقاط نهاية متعددة من نفس المصدر
5. تكوين الاستجابة الآلية لحظر IPs المصدر بعد تجاوز الحد الأدنى

قواعد الكشف:
1. تنبيه إذا زاد عداد failedAttempts في login-attempts.json بأكثر من 5 في دقيقة واحدة
2. تنبيه إذا وصلت مدة الانتظار إلى 24 ساعة (1440 دقيقة)
3. تنبيه على طلبات المصادقة من نفس IP إلى نقاط نهاية متعددة خلال 30 ثانية
4. مراقبة طلبات POST إلى نقاط نهاية /login و /admin-login و /visitor-login ببيانات اعتماد غير صحيحة من نفس IP المصدر أكثر من 3 مرات في الدقيقة
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
A.5.1.1 - Information Security Policies and Procedures (account lockout policies) A.6.1.2 - Access Control (authentication mechanism protection) A.7.1.1 - Cryptography and Authentication (password-based authentication security) A.8.2.1 - Monitoring and Logging (detection of unauthorized access attempts) A.9.2.1 - Incident Management (response to denial of service attacks)
🔵 SAMA CSF
ID.AM-2 - Asset Management (inventory of authentication systems) PR.AC-1 - Access Control (authentication and authorization mechanisms) PR.AC-6 - Access Control (account lockout and password policies) DE.CM-1 - Detection and Analysis (monitoring for suspicious authentication patterns) RS.MI-2 - Response and Recovery (mitigation of denial of service impacts)
🟡 ISO 27001:2022
A.5.1.1 - Information security policies A.6.1.2 - Access control policy A.8.2.1 - User registration and access rights management A.8.2.3 - Management of privileged access rights A.8.3.1 - Password management A.8.3.2 - Review of user access rights A.12.4.1 - Event logging A.12.4.3 - Protection of log information
📦 المنتجات المتأثرة 1 منتج
franklioxygen:mytube
📊 CVSS Score
7.5
/ 10.0 — مرتفع
📊 CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Attack VectorN — None / Network
Attack ComplexityL — Low / Local
Privileges RequiredN — None / Network
User InteractionN — None / Network
ScopeU — Unchanged
ConfidentialityN — None / Network
IntegrityN — None / Network
AvailabilityH — High
📋 حقائق سريعة
الخطورة مرتفع
CVSS Score7.5
CWECWE-307
EPSS0.39%
اختراق متاح ✓ نعم
تصحيح متاح ✓ نعم
تاريخ النشر 2026-03-27
المصدر nvd
المشاهدات 5
🇸🇦 درجة المخاطر السعودية
8.2
/ 10.0 — مخاطر السعودية
أولوية: CRITICAL
🏷️ الوسوم
exploit-available patch-available CWE-307
مشاركة ثغرة
LinkedIn X / Twitter WhatsApp Telegram

💬 التعليقات

0
جارٍ التحميل
📣 وجدت هذا مفيداً؟
شاركه مع شبكة الأمن السيبراني الخاصة بك
in لينكدإن 𝕏 تويتر 💬 واتساب ✈ تليجرام
🍪 إعدادات الخصوصية
سيزو للاستشارات — متوافق مع نظام حماية البيانات الشخصية السعودي (PDPL)
نستخدم ملفات تعريف الارتباط والتقنيات المشابهة لتوفير أفضل تجربة على منصتنا. يمكنك اختيار الأنواع التي تقبلها.
🔒
ملفات ضرورية Always On
مطلوبة لعمل الموقع بشكل صحيح. لا يمكن تعطيلها.
📋 الجلسات، CSRF، المصادقة، تفضيلات اللغة
📊
ملفات التحليلات
تساعدنا في فهم كيفية استخدام الزوار للموقع وتحسين الأداء.
📋 إحصائيات الصفحات، مدة الجلسة، مصدر الزيارة
⚙️
ملفات وظيفية
تتيح ميزات محسنة مثل تخصيص المحتوى والتفضيلات.
📋 السمة المظلمة/الفاتحة، حجم الخط، لوحات التحكم المخصصة
📣
ملفات تسويقية
تُستخدم لتقديم محتوى وإعلانات ذات صلة باهتماماتك.
📋 تتبع الحملات، إعادة الاستهداف، تحليلات وسائل التواصل
سياسة الخصوصية →
مساعد CISO الذكي
اسألني أي شيء · وثائق · دعم
🔐

عرّفنا بنفسك

أدخل بياناتك للوصول إلى المساعد الكامل

معلوماتك آمنة ولن تُشارك
💬
المساعد السيبراني
متصل — يرد في ثوانٍ
5 / 5
🔐 تحقق من هويتك

أدخل بريدك الإلكتروني لإرسال رمز تحقق قبل إرسال طلب الدعم.

Enter للإرسال · / للأوامر 0 / 2000
CISO AI · مدعوم بالذكاء الاصطناعي
✦ استطلاع سريع ساعدنا في تحسين منصة سيزو للاستشارات ملاحظاتك تشكّل مستقبل منصتنا — لا تستغرق سوى دقيقتين.
⚠ يرجى الإجابة على هذا السؤال للمتابعة

كيف تقيّم تجربتك العامة مع منصتنا؟

قيّم من 1 (ضعيف) إلى 5 (ممتاز)

🎉
شكراً جزيلاً!
تم تسجيل إجابتك بنجاح.