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

CVE-2025-71159

مرتفع
In the Linux kernel, the following vulnerability has been resolved: btrfs: fix use-after-free warning in btrfs_get_or_create_delayed_node() Previously, btrfs_get_or_create_delayed_node() set the del
CWE-416 — نوع الضعف
نُشر: Jan 23, 2026  ·  آخر تحديث: Feb 28, 2026  ·  المصدر: NVD
CVSS v3
7.8
🔗 NVD الرسمي
📄 الوصف (الإنجليزية)

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

btrfs: fix use-after-free warning in btrfs_get_or_create_delayed_node()

Previously, btrfs_get_or_create_delayed_node() set the delayed_node's
refcount before acquiring the root->delayed_nodes lock.
Commit e8513c012de7 ("btrfs: implement ref_tracker for delayed_nodes")
moved refcount_set inside the critical section, which means there is
no longer a memory barrier between setting the refcount and setting
btrfs_inode->delayed_node.

Without that barrier, the stores to node->refs and
btrfs_inode->delayed_node may become visible out of order. Another
thread can then read btrfs_inode->delayed_node and attempt to
increment a refcount that hasn't been set yet, leading to a
refcounting bug and a use-after-free warning.

The fix is to move refcount_set back to where it was to take
advantage of the implicit memory barrier provided by lock
acquisition.

Because the allocations now happen outside of the lock's critical
section, they can use GFP_NOFS instead of GFP_ATOMIC.

🤖 ملخص AI

CVE-2025-71159 is a use-after-free vulnerability in the Linux kernel's btrfs filesystem implementation affecting kernel versions 6.19-rc1 through rc4. The vulnerability stems from a memory ordering issue in btrfs_get_or_create_delayed_node() where refcount operations lack proper synchronization, allowing concurrent threads to access uninitialized refcounts. This can lead to kernel warnings, memory corruption, and potential denial of service on systems using btrfs.

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

🤖 التحليل الذكي آخر تحليل: Apr 28, 2026 07:48
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability primarily impacts Saudi organizations running Linux-based infrastructure with btrfs filesystems, particularly: (1) Government agencies and NCA infrastructure using Linux servers for critical operations; (2) ARAMCO and energy sector facilities relying on Linux-based storage systems; (3) Telecom providers (STC, Mobily) using btrfs for data storage; (4) Financial institutions and SAMA-regulated entities with Linux-based backend systems; (5) Cloud service providers and data centers offering Linux hosting. The impact is moderate as btrfs adoption in production Saudi environments is limited compared to ext4/XFS, but affected systems could experience kernel panics, data corruption, and service disruptions.
🏢 القطاعات السعودية المتأثرة
Government and Public Administration Banking and Financial Services Energy and Utilities (ARAMCO) Telecommunications (STC, Mobily) Healthcare Cloud Service Providers Data Centers
⚖️ درجة المخاطر السعودية (AI)
5.2
/ 10.0
🔧 Remediation Steps (English)
Immediate Actions:
1. Identify systems running Linux kernel versions 6.19-rc1 through 6.19-rc4 with btrfs filesystems using 'uname -r' and 'df -T'
2. Assess criticality of affected systems and plan maintenance windows
3. Implement monitoring for kernel warnings and system crashes

Patching Guidance:
1. Update to Linux kernel version 6.19-rc5 or later, or stable releases 6.18.x/6.20.x that include the fix
2. Apply the upstream patch commit that moves refcount_set back outside the critical section
3. Recompile kernel if using custom builds with btrfs support
4. Test patches in non-production environments before deployment

Compensating Controls (if immediate patching unavailable):
1. Disable btrfs on non-critical systems and migrate to ext4/XFS
2. Reduce concurrent access patterns to delayed_node operations
3. Implement kernel crash dump collection (kdump) for forensic analysis
4. Monitor system logs for 'use-after-free' warnings and kernel oops messages

Detection Rules:
1. Monitor kernel logs for: 'WARNING.*use-after-free' and 'btrfs.*delayed_node'
2. Alert on unexpected kernel panics or reboots on btrfs systems
3. Track refcount anomalies in kernel memory debugging output
4. Monitor dmesg for 'BUG: KASAN' or 'KFENCE' reports related to btrfs
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. تحديد الأنظمة التي تعمل بإصدارات نواة لينكس 6.19-rc1 إلى 6.19-rc4 مع أنظمة ملفات btrfs باستخدام 'uname -r' و 'df -T'
2. تقييم أهمية الأنظمة المتأثرة وتخطيط نوافذ الصيانة
3. تنفيذ المراقبة لتحذيرات النواة وأعطال النظام

إرشادات التصحيح:
1. التحديث إلى إصدار نواة لينكس 6.19-rc5 أو أحدث، أو الإصدارات المستقرة 6.18.x/6.20.x التي تتضمن الإصلاح
2. تطبيق رقعة المستودع الأساسي التي تنقل refcount_set خارج القسم الحرج
3. إعادة تجميع النواة إذا كنت تستخدم بناءات مخصصة مع دعم btrfs
4. اختبار الرقع في بيئات غير الإنتاج قبل النشر

الضوابط البديلة (إذا لم يكن التصحيح الفوري متاحاً):
1. تعطيل btrfs على الأنظمة غير الحرجة والهجرة إلى ext4/XFS
2. تقليل أنماط الوصول المتزامن لعمليات delayed_node
3. تنفيذ جمع تفريغ أعطال النواة (kdump) للتحليل الجنائي
4. مراقبة سجلات النظام بحثاً عن رسائل 'use-after-free' و 'kernel oops'

قواعد الكشف:
1. مراقبة سجلات النواة بحثاً عن: 'WARNING.*use-after-free' و 'btrfs.*delayed_node'
2. التنبيه على أعطال النواة غير المتوقعة أو إعادة التشغيل على أنظمة btrfs
3. تتبع شذوذ العد المرجعي في مخرجات تصحيح ذاكرة النواة
4. مراقبة dmesg بحثاً عن تقارير 'BUG: KASAN' أو 'KFENCE' المتعلقة بـ btrfs
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
ECC 2024 - 5.1.1: System Hardening and Patch Management ECC 2024 - 5.2.2: Vulnerability Management and Assessment ECC 2024 - 5.3.1: System Monitoring and Logging
🔵 SAMA CSF
SAMA CSF - ID.RA-1: Asset Management and Inventory SAMA CSF - PR.IP-12: System and Information Integrity SAMA CSF - DE.CM-1: Detection Processes and Tools
🟡 ISO 27001:2022
ISO 27001:2022 - A.12.6.1: Management of technical vulnerabilities ISO 27001:2022 - A.14.2.1: Secure development policy ISO 27001:2022 - A.12.3.1: Capacity management
🟣 PCI DSS v4.0.1
PCI DSS 4.0 - 6.2: Security patches and updates PCI DSS 4.0 - 6.3.1: Vulnerability scanning and assessment
📦 المنتجات المتأثرة 5 منتج
linux:linux_kernel
linux:linux_kernel:6.19
linux:linux_kernel:6.19
linux:linux_kernel:6.19
linux:linux_kernel:6.19
📊 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-01-23
المصدر nvd
المشاهدات 6
🇸🇦 درجة المخاطر السعودية
5.2
/ 10.0 — مخاطر السعودية
أولوية: MEDIUM
🏷️ الوسوم
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 (ممتاز)

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