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

CVE-2026-31541

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

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

tracing: Fix trace_marker copy link list updates

When the "copy_trace_marker" option is enabled for an instance, anything
written into /sys/kernel/tracing/trace_marker is also copied into that
instances buffer. When the option is set, that instance's trace_array
descriptor is added to the marker_copies link list. This list is protected
by RCU, as all iterations uses an RCU protected list traversal.

When the instance is deleted, all the flags that were enabled are cleared.
This also clears the copy_trace_marker flag and removes the trace_array
descriptor from the list.

The issue is after the flags are called, a direct call to
update_marker_trace() is performed to clear the flag. This function
returns true if the state of the flag changed and false otherwise. If it
returns true here, synchronize_rcu() is called to make sure all readers
see that its removed from the list.

But since the flag was already cleared, the state does not change and the
synchronization is never called, leaving a possible UAF bug.

Move the clearing of all flags below the updating of the copy_trace_marker
option which then makes sure the synchronization is performed.

Also use the flag for checking the state in update_marker_trace() instead
of looking at if the list is empty.

🤖 ملخص AI

A use-after-free (UAF) vulnerability exists in the Linux kernel's trace_marker functionality when the copy_trace_marker option is disabled. The vulnerability occurs due to improper RCU synchronization during instance deletion, where the synchronize_rcu() call is skipped when clearing the copy_trace_marker flag. This could allow local attackers to trigger memory corruption or denial of service on affected systems.

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

🤖 التحليل الذكي آخر تحليل: Apr 29, 2026 15:07
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability primarily affects Saudi organizations running Linux-based infrastructure, particularly: (1) Government agencies and NCA systems using Linux servers for critical operations; (2) ARAMCO and energy sector facilities relying on Linux-based SCADA and industrial control systems; (3) Banking and SAMA-regulated financial institutions using Linux for backend services; (4) Telecom operators (STC, Mobily, Zain) operating Linux-based network infrastructure; (5) Healthcare providers using Linux servers for patient data management. The local privilege escalation potential makes this particularly dangerous in multi-tenant cloud environments and shared hosting scenarios common in Saudi Arabia.
🏢 القطاعات السعودية المتأثرة
Government Banking and Financial Services Energy and Utilities Telecommunications Healthcare Cloud Service Providers Critical Infrastructure
⚖️ درجة المخاطر السعودية (AI)
7.2
/ 10.0
🔧 Remediation Steps (English)
Immediate Actions:
1. Identify all Linux systems running affected kernel versions (7.0-rc1 through 7.0-rc4 and earlier versions with the vulnerability)
2. Disable trace_marker functionality if not actively used: echo 0 > /proc/sys/kernel/trace_marker_enabled
3. Restrict access to /sys/kernel/tracing/trace_marker to authorized users only: chmod 600 /sys/kernel/tracing/trace_marker

Patching Guidance:
1. Apply the latest stable kernel patch that includes the fix for trace_marker RCU synchronization
2. Test patches in non-production environments first, particularly for SCADA/industrial systems
3. Schedule maintenance windows for kernel updates on critical infrastructure
4. Verify patch application: grep -i 'trace_marker' /proc/version

Compensating Controls (if immediate patching not possible):
1. Implement kernel module loading restrictions: echo 1 > /proc/sys/kernel/modules_disabled
2. Enable SELinux/AppArmor with strict tracing policies
3. Monitor /sys/kernel/tracing/ directory for unauthorized access
4. Implement kernel audit rules: auditctl -w /sys/kernel/tracing/ -p wa -k trace_marker_access

Detection Rules:
1. Monitor for kernel oops/panic messages related to trace_marker
2. Alert on UAF detection: dmesg | grep -i 'use-after-free\|UAF\|trace_marker'
3. Track process access to /sys/kernel/tracing/trace_marker: auditctl -a always,exit -F dir=/sys/kernel/tracing/ -F perm=w -k trace_access
4. Monitor for unexpected kernel memory corruption patterns in system logs
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. تحديد جميع أنظمة لينكس التي تعمل بإصدارات النواة المتأثرة (7.0-rc1 إلى 7.0-rc4 والإصدارات السابقة)
2. تعطيل وظيفة trace_marker إذا لم تكن قيد الاستخدام النشط: echo 0 > /proc/sys/kernel/trace_marker_enabled
3. تقييد الوصول إلى /sys/kernel/tracing/trace_marker للمستخدمين المصرح لهم فقط: chmod 600 /sys/kernel/tracing/trace_marker

إرشادات التصحيح:
1. تطبيق أحدث تصحيح نواة مستقرة يتضمن إصلاح مزامنة RCU لـ trace_marker
2. اختبار التصحيحات في بيئات غير الإنتاج أولاً، خاصة لأنظمة SCADA
3. جدولة نوافذ الصيانة لتحديثات النواة على البنية التحتية الحرجة
4. التحقق من تطبيق التصحيح: grep -i 'trace_marker' /proc/version

الضوابط البديلة (إذا لم يكن التصحيح الفوري ممكناً):
1. تنفيذ قيود تحميل وحدات النواة: echo 1 > /proc/sys/kernel/modules_disabled
2. تفعيل SELinux/AppArmor مع سياسات تتبع صارمة
3. مراقبة دليل /sys/kernel/tracing/ للوصول غير المصرح به
4. تنفيذ قواعد تدقيق النواة: auditctl -w /sys/kernel/tracing/ -p wa -k trace_marker_access

قواعد الكشف:
1. مراقبة رسائل kernel oops/panic المتعلقة بـ trace_marker
2. التنبيه على كشف UAF: dmesg | grep -i 'use-after-free\|UAF\|trace_marker'
3. تتبع وصول العملية إلى /sys/kernel/tracing/trace_marker
4. مراقبة أنماط تلف ذاكرة النواة غير المتوقعة في سجلات النظام
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
ECC 2024 A.12.6.1 - Management of technical vulnerabilities ECC 2024 A.12.2.1 - Change management procedures ECC 2024 A.12.1.2 - Monitoring of system use
🔵 SAMA CSF
SAMA CSF ID.RA-1 - Asset management and vulnerability identification SAMA CSF PR.IP-12 - System and information integrity SAMA CSF DE.CM-1 - Detection and analysis of anomalies
🟡 ISO 27001:2022
ISO 27001:2022 A.12.2.1 - Change management ISO 27001:2022 A.12.6.1 - Management of technical vulnerabilities ISO 27001:2022 A.14.2.1 - Secure development policy
🟣 PCI DSS v4.0.1
PCI DSS 6.2 - Security patches and updates PCI DSS 11.2 - Vulnerability scanning
📦 المنتجات المتأثرة 6 منتج
linux:linux_kernel
linux:linux_kernel
linux:linux_kernel:7.0
linux:linux_kernel:7.0
linux:linux_kernel:7.0
linux:linux_kernel:7.0
📊 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-416
EPSS0.02%
اختراق متاح لا
تصحيح متاح ✓ نعم
تاريخ النشر 2026-04-24
المصدر nvd
المشاهدات 2
🇸🇦 درجة المخاطر السعودية
7.2
/ 10.0 — مخاطر السعودية
أولوية: HIGH
🏷️ الوسوم
patch-available CWE-416
مشاركة ثغرة
LinkedIn X / Twitter WhatsApp Telegram

💬 التعليقات

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

عرّفنا بنفسك

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

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

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

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

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

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

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