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

CVE-2026-43250

مرتفع
CWE-787 — نوع الضعف
نُشر: May 6, 2026  ·  آخر تحديث: May 13, 2026  ·  المصدر: NVD
CVSS v3
7.8
🔗 NVD الرسمي
📄 الوصف (الإنجليزية)

In the Linux kernel, the following vulnerability has been resolved:

usb: chipidea: udc: fix DMA and SG cleanup in _ep_nuke()

The ChipIdea UDC driver can encounter "not page aligned sg buffer"
errors when a USB device is reconnected after being disconnected
during an active transfer. This occurs because _ep_nuke() returns
requests to the gadget layer without properly unmapping DMA buffers
or cleaning up scatter-gather bounce buffers.

Root cause:
When a disconnect happens during a multi-segment DMA transfer, the
request's num_mapped_sgs field and sgt.sgl pointer remain set with
stale values. The request is returned to the gadget driver with status
-ESHUTDOWN but still has active DMA state. If the gadget driver reuses
this request on reconnect without reinitializing it, the stale DMA
state causes _hardware_enqueue() to skip DMA mapping (seeing non-zero
num_mapped_sgs) and attempt to use freed/invalid DMA addresses,
leading to alignment errors and potential memory corruption.

The normal completion path via _hardware_dequeue() properly calls
usb_gadget_unmap_request_by_dev() and sglist_do_debounce() before
returning the request. The _ep_nuke() path must do the same cleanup
to ensure requests are returned in a clean, reusable state.

Fix:
Add DMA unmapping and bounce buffer cleanup to _ep_nuke() to mirror
the cleanup sequence in _hardware_dequeue():
- Call usb_gadget_unmap_request_by_dev() if num_mapped_sgs is set
- Call sglist_do_debounce() with copy=false if bounce buffer exists

This ensures that when requests are returned due to endpoint shutdown,
they don't retain stale DMA mappings. The 'false' parameter to
sglist_do_debounce() prevents copying data back (appropriate for
shutdown path where transfer was aborted).

🤖 ملخص AI

A memory corruption vulnerability in the Linux kernel's ChipIdea USB Device Controller driver can occur when USB devices are reconnected after disconnection during active transfers. The vulnerability stems from improper cleanup of DMA buffers and scatter-gather bounce buffers in the _ep_nuke() function, potentially leading to use-after-free conditions and memory corruption. This affects systems using ChipIdea UDC controllers, particularly embedded and IoT devices common in Saudi infrastructure.

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

🤖 التحليل الذكي آخر تحليل: May 13, 2026 00:17
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability primarily impacts Saudi organizations utilizing embedded systems and IoT devices with ChipIdea UDC controllers, including: (1) Healthcare sector — medical devices and diagnostic equipment using USB connectivity; (2) Telecommunications — STC and other telecom providers' network equipment and mobile infrastructure; (3) Energy sector — ARAMCO and utilities' industrial control systems and monitoring devices; (4) Government agencies — NCA and other entities deploying IoT and embedded systems for critical infrastructure; (5) Banking and financial institutions — payment terminals and security devices. The vulnerability could lead to system crashes, data corruption, or potential privilege escalation if exploited in conjunction with other vulnerabilities.
🏢 القطاعات السعودية المتأثرة
Healthcare Telecommunications Energy/Utilities Government Banking/Financial Services Manufacturing Transportation
⚖️ درجة المخاطر السعودية (AI)
7.2
/ 10.0
🔧 Remediation Steps (English)
Immediate Actions:
1. Identify systems running Linux kernel with ChipIdea UDC driver (check: grep -r 'chipidea' /sys/devices or lsmod | grep ci_hdrc)
2. Determine kernel version: uname -r
3. Check if affected: versions prior to the patched release

Patching Guidance:
1. Apply Linux kernel security update containing the ChipIdea UDC fix to _ep_nuke() function
2. For RHEL/CentOS: yum update kernel
3. For Ubuntu/Debian: apt update && apt upgrade linux-image
4. For embedded systems: contact device manufacturer for firmware update
5. Test USB device reconnection scenarios after patching

Compensating Controls (if immediate patching unavailable):
1. Disable USB device hot-plugging where operationally feasible
2. Implement strict USB device whitelist policies
3. Monitor system logs for USB-related errors: journalctl -u kernel | grep -i usb
4. Restrict USB port access to authorized personnel only
5. Implement network segmentation for devices with ChipIdea controllers

Detection Rules:
1. Monitor for kernel messages: 'not page aligned sg buffer' errors
2. Alert on repeated USB device connection/disconnection cycles
3. Track memory corruption indicators: kernel panics, segmentation faults
4. Monitor dmesg for: 'usb.*disconnect' followed by 'usb.*connect' within short timeframe
5. Implement IDS signatures for abnormal USB traffic patterns
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. تحديد الأنظمة التي تعمل بنواة Linux مع برنامج تشغيل ChipIdea UDC (تحقق: grep -r 'chipidea' /sys/devices أو lsmod | grep ci_hdrc)
2. تحديد إصدار النواة: uname -r
3. التحقق من التأثر: الإصدارات السابقة للإصدار المصحح

إرشادات التصحيح:
1. تطبيق تحديث أمان نواة Linux يحتوي على إصلاح ChipIdea UDC لدالة _ep_nuke()
2. لـ RHEL/CentOS: yum update kernel
3. لـ Ubuntu/Debian: apt update && apt upgrade linux-image
4. للأنظمة المدمجة: اتصل بمصنع الجهاز للحصول على تحديث البرنامج الثابت
5. اختبر سيناريوهات إعادة توصيل جهاز USB بعد التصحيح

الضوابط البديلة (إذا لم يكن التصحيح الفوري متاحاً):
1. تعطيل الإدراج الساخن لجهاز USB حيث يكون ممكناً من الناحية التشغيلية
2. تنفيذ سياسات قائمة بيضاء صارمة لأجهزة USB
3. مراقبة سجلات النظام للأخطاء المتعلقة بـ USB: journalctl -u kernel | grep -i usb
4. تقييد الوصول إلى منافذ USB للموظفين المصرح لهم فقط
5. تنفيذ تقسيم الشبكة للأجهزة التي تحتوي على وحدات تحكم ChipIdea

قواعد الكشف:
1. مراقبة رسائل النواة: أخطاء 'not page aligned sg buffer'
2. تنبيه على دورات اتصال/قطع اتصال جهاز USB المتكررة
3. تتبع مؤشرات تلف الذاكرة: توقف النواة، أخطاء التقسيم
4. مراقبة dmesg لـ: 'usb.*disconnect' متبوعاً بـ 'usb.*connect' في إطار زمني قصير
5. تنفيذ توقيعات IDS لأنماط حركة USB غير الطبيعية
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
ECC 2024 A.12.2.1 - Equipment and assets management ECC 2024 A.12.6.1 - Management of technical vulnerabilities ECC 2024 A.14.2.1 - Secure development policy ECC 2024 A.12.3.1 - Segregation of networks
🔵 SAMA CSF
SAMA CSF ID.BE-1 - Asset management SAMA CSF PR.IP-12 - Software, firmware, and information integrity mechanisms SAMA CSF DE.CM-8 - Vulnerability scans are performed SAMA CSF RS.MI-2 - Incidents are mitigated
🟡 ISO 27001:2022
ISO 27001:2022 A.5.19 - Management of information security incidents ISO 27001:2022 A.8.1 - User endpoint devices ISO 27001:2022 A.8.2 - Privileged access rights ISO 27001:2022 A.14.2 - Security requirements analysis and specification
🟣 PCI DSS v4.0.1
PCI DSS 6.2 - Security patches and updates PCI DSS 11.2 - Vulnerability scanning
📦 المنتجات المتأثرة 3 منتج
linux:linux_kernel
linux:linux_kernel
linux:linux_kernel
📊 CVSS Score
7.8
/ 10.0 — مرتفع
📊 CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Attack VectorL — Low / Local
Attack ComplexityL — Low / Local
Privileges RequiredL — Low / Local
User InteractionN — None / Network
ScopeU — Unchanged
ConfidentialityH — High
IntegrityH — High
AvailabilityH — High
📋 حقائق سريعة
الخطورة مرتفع
CVSS Score7.8
CWECWE-787
EPSS0.02%
اختراق متاح لا
تصحيح متاح ✓ نعم
تاريخ النشر 2026-05-06
المصدر nvd
المشاهدات 1
🇸🇦 درجة المخاطر السعودية
7.2
/ 10.0 — مخاطر السعودية
أولوية: HIGH
🏷️ الوسوم
patch-available CWE-787
مشاركة ثغرة
LinkedIn X / Twitter WhatsApp Telegram
📣 وجدت هذا مفيداً؟
شاركه مع شبكة الأمن السيبراني الخاصة بك
in لينكدإن 𝕏 تويتر 💬 واتساب ✈ تليجرام
🍪 إعدادات الخصوصية
سيزو للاستشارات — متوافق مع نظام حماية البيانات الشخصية السعودي (PDPL)
نستخدم ملفات تعريف الارتباط والتقنيات المشابهة لتوفير أفضل تجربة على منصتنا. يمكنك اختيار الأنواع التي تقبلها.
🔒
ملفات ضرورية Always On
مطلوبة لعمل الموقع بشكل صحيح. لا يمكن تعطيلها.
📋 الجلسات، CSRF، المصادقة، تفضيلات اللغة
📊
ملفات التحليلات
تساعدنا في فهم كيفية استخدام الزوار للموقع وتحسين الأداء.
📋 إحصائيات الصفحات، مدة الجلسة، مصدر الزيارة
⚙️
ملفات وظيفية
تتيح ميزات محسنة مثل تخصيص المحتوى والتفضيلات.
📋 السمة المظلمة/الفاتحة، حجم الخط، لوحات التحكم المخصصة
📣
ملفات تسويقية
تُستخدم لتقديم محتوى وإعلانات ذات صلة باهتماماتك.
📋 تتبع الحملات، إعادة الاستهداف، تحليلات وسائل التواصل
سياسة الخصوصية →
مساعد CISO الذكي
اسألني أي شيء · وثائق · دعم
🔐

عرّفنا بنفسك

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

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

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

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

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

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

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