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

CVE-2026-22980

مرتفع
In the Linux kernel, the following vulnerability has been resolved: nfsd: provide locking for v4_end_grace Writing to v4_end_grace can race with server shutdown and result in memory being accessed a
CWE-416 — نوع الضعف
نُشر: Jan 23, 2026  ·  آخر تحديث: Feb 28, 2026  ·  المصدر: NVD
CVSS v3
7.8
🔗 NVD الرسمي
📄 الوصف (الإنجليزية)

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

nfsd: provide locking for v4_end_grace

Writing to v4_end_grace can race with server shutdown and result in
memory being accessed after it was freed - reclaim_str_hashtbl in
particularly.

We cannot hold nfsd_mutex across the nfsd4_end_grace() call as that is
held while client_tracking_op->init() is called and that can wait for
an upcall to nfsdcltrack which can write to v4_end_grace, resulting in a
deadlock.

nfsd4_end_grace() is also called by the landromat work queue and this
doesn't require locking as server shutdown will stop the work and wait
for it before freeing anything that nfsd4_end_grace() might access.

However, we must be sure that writing to v4_end_grace doesn't restart
the work item after shutdown has already waited for it. For this we
add a new flag protected with nn->client_lock. It is set only while it
is safe to make client tracking calls, and v4_end_grace only schedules
work while the flag is set with the spinlock held.

So this patch adds a nfsd_net field "client_tracking_active" which is
set as described. Another field "grace_end_forced", is set when
v4_end_grace is written. After this is set, and providing
client_tracking_active is set, the laundromat is scheduled.
This "grace_end_forced" field bypasses other checks for whether the
grace period has finished.

This resolves a race which can result in use-after-free.

🤖 ملخص AI

CVE-2026-22980 is a use-after-free vulnerability in the Linux kernel's NFSv4 grace period handling mechanism that can be triggered during server shutdown. The vulnerability exists in the v4_end_grace function where concurrent access can lead to memory being accessed after it has been freed, particularly affecting the reclaim_str_hashtbl structure. This affects Linux kernel versions 6.19-rc1 through 6.19-rc4 and potentially earlier versions, with a CVSS score of 7.8 indicating high severity.

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

🤖 التحليل الذكي آخر تحليل: Apr 29, 2026 00:26
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability primarily impacts Saudi organizations running NFS-based infrastructure, particularly: (1) Government entities and NCA-regulated organizations using Linux-based file servers for document management and data sharing; (2) Banking sector institutions (SAMA-regulated) utilizing NFS for backup and archival systems; (3) Healthcare providers using Linux NFS servers for medical records storage; (4) Energy sector (ARAMCO and related entities) relying on NFS for operational technology data; (5) Telecommunications providers (STC, Mobily) using NFS in their infrastructure. The vulnerability could lead to kernel crashes, data corruption, or potential privilege escalation if exploited during server maintenance windows.
🏢 القطاعات السعودية المتأثرة
Government Banking Healthcare Energy Telecommunications Education Critical Infrastructure
⚖️ درجة المخاطر السعودية (AI)
7.2
/ 10.0
🔧 Remediation Steps (English)
Immediate Actions:
1. Identify all Linux servers running kernel versions 6.19-rc1 through 6.19-rc4 using: uname -r
2. Prioritize systems running NFSv4 services (check: systemctl status nfs-server or ps aux | grep nfsd)
3. Implement change control procedures before patching production systems

Patching Guidance:
1. Apply the latest stable kernel patch that includes the v4_end_grace locking fix
2. For RHEL/CentOS: yum update kernel and reboot
3. For Ubuntu/Debian: apt update && apt upgrade linux-image-* and reboot
4. Verify patch application: grep -i 'client_tracking_active' /boot/config-$(uname -r)

Compensating Controls (if immediate patching not possible):
1. Minimize NFS server restarts during business hours
2. Implement monitoring for kernel panic messages related to nfsd
3. Use NFS client-side timeouts to detect server issues quickly
4. Maintain regular backups independent of NFS infrastructure

Detection Rules:
1. Monitor kernel logs for: 'use-after-free', 'nfsd', 'reclaim_str_hashtbl'
2. Alert on unexpected nfsd process terminations
3. Track NFS server restart events and correlate with system issues
4. Monitor for memory corruption indicators in dmesg output
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. تحديد جميع خوادم Linux التي تعمل بإصدارات النواة 6.19-rc1 إلى 6.19-rc4 باستخدام: uname -r
2. إعطاء الأولوية للأنظمة التي تقدم خدمات NFSv4 (تحقق: systemctl status nfs-server أو ps aux | grep nfsd)
3. تطبيق إجراءات التحكم في التغييرات قبل تصحيح الأنظمة الإنتاجية

إرشادات التصحيح:
1. تطبيق أحدث تصحيح نواة مستقرة يتضمن إصلاح قفل v4_end_grace
2. لـ RHEL/CentOS: yum update kernel وإعادة التشغيل
3. لـ Ubuntu/Debian: apt update && apt upgrade linux-image-* وإعادة التشغيل
4. التحقق من تطبيق التصحيح: grep -i 'client_tracking_active' /boot/config-$(uname -r)

الضوابط البديلة (إذا لم يكن التصحيح الفوري ممكناً):
1. تقليل إعادة تشغيل خادم NFS أثناء ساعات العمل
2. تطبيق المراقبة لرسائل kernel panic المتعلقة بـ nfsd
3. استخدام مهلات انتظار جانب عميل NFS للكشف السريع عن مشاكل الخادم
4. الحفاظ على النسخ الاحتياطية المنتظمة المستقلة عن البنية الأساسية لـ NFS

قواعد الكشف:
1. مراقبة سجلات النواة بحثاً عن: 'use-after-free'، 'nfsd'، 'reclaim_str_hashtbl'
2. التنبيه على إنهاء عملية nfsd غير المتوقع
3. تتبع أحداث إعادة تشغيل خادم NFS والربط بينها والمشاكل النظامية
4. مراقبة مؤشرات تلف الذاكرة في مخرجات dmesg
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
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 - Configuration management
🔵 SAMA CSF
ID.RA-1 - Asset management and vulnerability identification PR.IP-12 - System and information integrity DE.CM-8 - Vulnerability scans
🟡 ISO 27001:2022
A.12.6.1 - Management of technical vulnerabilities A.14.2.1 - Secure development policy A.12.3.1 - Configuration management A.12.2.1 - Change management
🟣 PCI DSS v4.0.1
Requirement 6.2 - Security patches and updates Requirement 11.2 - Vulnerability scanning
📦 المنتجات المتأثرة 10 منتج
linux:linux_kernel
linux:linux_kernel
linux:linux_kernel
linux:linux_kernel
linux:linux_kernel
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
🇸🇦 درجة المخاطر السعودية
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 (ممتاز)

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