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

CVE-2026-41277

مرتفع ⚡ اختراق متاح
CWE-284 — نوع الضعف
نُشر: Apr 23, 2026  ·  آخر تحديث: Apr 30, 2026  ·  المصدر: NVD
CVSS v3
8.8
🔗 NVD الرسمي
📄 الوصف (الإنجليزية)

Flowise is a drag & drop user interface to build a customized large language model flow. Prior to 3.1.0, a Mass Assignment vulnerability in the DocumentStore creation endpoint allows authenticated users to control the primary key (id) and internal state fields of DocumentStore entities. Because the service uses repository.save() with a client-supplied primary key, the POST create endpoint behaves as an implicit UPSERT operation. This enables overwriting existing DocumentStore objects. In multi-workspace or multi-tenant deployments, this can lead to cross-workspace object takeover and broken object-level authorization (IDOR), allowing an attacker to reassign or modify DocumentStore objects belonging to other workspaces. This vulnerability is fixed in 3.1.0.

🤖 ملخص AI

CVE-2026-41277 is a critical Mass Assignment vulnerability in Flowise versions prior to 3.1.0 that allows authenticated users to perform unauthorized UPSERT operations on DocumentStore objects. The vulnerability enables cross-workspace object takeover and broken object-level authorization (IDOR), potentially allowing attackers to modify or reassign DocumentStore objects belonging to other workspaces. With a CVSS score of 8.8 and publicly available exploits, this poses an immediate threat to organizations deploying Flowise in multi-tenant environments.

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

🤖 التحليل الذكي آخر تحليل: Apr 24, 2026 19:36
🇸🇦 التأثير على المملكة العربية السعودية
This vulnerability poses significant risk to Saudi organizations using Flowise for AI/LLM applications, particularly in: (1) Banking and Financial Services (SAMA-regulated entities) - if Flowise is used for document processing in customer data systems; (2) Government agencies and NCA-regulated entities - if deployed for internal document management or AI-driven services; (3) Healthcare providers - if used for patient document processing or medical records management; (4) Telecommunications (STC, Mobily) - if leveraged for customer service AI systems; (5) Energy sector (ARAMCO, utilities) - if used for operational document management. The multi-tenant vulnerability is particularly critical for Saudi cloud service providers and managed service providers offering Flowise as a service to multiple clients.
🏢 القطاعات السعودية المتأثرة
Banking and Financial Services Government and Public Administration Healthcare and Medical Services Telecommunications Energy and Utilities Cloud Service Providers Managed Service Providers Enterprise Software Development
⚖️ درجة المخاطر السعودية (AI)
8.5
/ 10.0
🔧 Remediation Steps (English)
IMMEDIATE ACTIONS:
1. Identify all Flowise deployments in your organization and document their versions
2. Assess if Flowise is deployed in multi-workspace/multi-tenant configurations
3. Review access logs for DocumentStore creation/modification endpoints (POST /api/documentstore) for suspicious activity
4. Implement network segmentation to restrict access to Flowise instances to authorized users only

PATCHING GUIDANCE:
1. Upgrade Flowise to version 3.1.0 or later immediately
2. If immediate upgrade is not possible, apply the following compensating controls:
- Disable or restrict access to DocumentStore creation endpoints
- Implement strict input validation to reject any client-supplied 'id' or internal state fields
- Enforce workspace isolation at the application layer

COMPENSATING CONTROLS (if patch unavailable):
1. Implement API gateway rules to strip client-supplied 'id' and internal state fields from POST requests to /api/documentstore
2. Add application-level validation to reject UPSERT behavior - ensure POST only creates new objects with server-generated IDs
3. Implement strict workspace isolation checks before any DocumentStore operation
4. Enable detailed audit logging for all DocumentStore operations
5. Restrict API access to DocumentStore endpoints using role-based access control (RBAC)

DETECTION RULES:
1. Monitor for POST requests to /api/documentstore containing 'id' field in request body
2. Alert on DocumentStore modifications from users outside the owning workspace
3. Track rapid DocumentStore creation/modification patterns that may indicate exploitation
4. Monitor for HTTP 200/201 responses on DocumentStore endpoints followed by cross-workspace access attempts
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. حدد جميع نشرات Flowise في مؤسستك وقثّق إصداراتها
2. قيّم ما إذا تم نشر Flowise في تكوينات متعددة مساحات العمل/متعددة المستأجرين
3. راجع سجلات الوصول لنقاط نهاية إنشاء/تعديل DocumentStore (POST /api/documentstore) للبحث عن نشاط مريب
4. طبّق تقسيم الشبكة لتقييد الوصول إلى مثيلات Flowise للمستخدمين المصرح لهم فقط

إرشادات التصحيح:
1. قم بترقية Flowise إلى الإصدار 3.1.0 أو أحدث على الفور
2. إذا لم يكن الترقية الفورية ممكنة، طبّق الضوابط التعويضية التالية:
- عطّل أو قيّد الوصول إلى نقاط نهاية إنشاء DocumentStore
- طبّق التحقق الصارم من المدخلات لرفض أي حقول 'id' أو حالة داخلية يوفرها العميل
- فرض عزل مساحة العمل على مستوى التطبيق

الضوابط التعويضية (إذا لم يكن التصحيح متاحاً):
1. طبّق قواعد بوابة API لإزالة حقول 'id' والحالة الداخلية التي يوفرها العميل من طلبات POST إلى /api/documentstore
2. أضف التحقق على مستوى التطبيق لرفض سلوك UPSERT - تأكد من أن POST ينشئ كائنات جديدة فقط بمعرّفات يتم إنشاؤها من قبل الخادم
3. طبّق فحوصات عزل مساحة العمل الصارمة قبل أي عملية DocumentStore
4. فعّل تسجيل التدقيق التفصيلي لجميع عمليات DocumentStore
5. قيّد الوصول إلى API لنقاط نهاية DocumentStore باستخدام التحكم في الوصول القائم على الأدوار (RBAC)

قواعد الكشف:
1. راقب طلبات POST إلى /api/documentstore التي تحتوي على حقل 'id' في نص الطلب
2. أصدر تنبيهات عند تعديل DocumentStore من قبل مستخدمين خارج مساحة العمل المالكة
3. تتبع أنماط إنشاء/تعديل DocumentStore السريعة التي قد تشير إلى الاستغلال
4. راقب استجابات HTTP 200/201 على نقاط نهاية DocumentStore متبوعة بمحاولات الوصول عبر مساحات العمل
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
ECC 2024 - 5.1.1: Access Control - Unauthorized modification of objects violates access control requirements ECC 2024 - 5.2.1: Authentication and Authorization - IDOR vulnerability indicates broken authorization ECC 2024 - 6.1.1: Data Protection - Cross-workspace data access violates data isolation requirements ECC 2024 - 7.1.1: Audit and Accountability - Insufficient logging of DocumentStore modifications
🔵 SAMA CSF
SAMA CSF - Governance & Risk Management: Vulnerability management and patch management processes SAMA CSF - Information Security: Access control and authorization mechanisms SAMA CSF - Operational Resilience: Incident detection and response capabilities SAMA CSF - Data Protection: Data isolation and confidentiality controls in multi-tenant environments
🟡 ISO 27001:2022
ISO 27001:2022 - A.5.2: User access management - Inadequate access control implementation ISO 27001:2022 - A.5.3: Access rights - Broken object-level authorization ISO 27001:2022 - A.8.2: Information security policies - Lack of secure development practices ISO 27001:2022 - A.12.6: Change management - Vulnerability in application code
🟣 PCI DSS v4.0.1
PCI DSS 3.2.1: Access control - Unauthorized access to cardholder data if DocumentStore contains payment information PCI DSS 6.5.1: Injection flaws and mass assignment vulnerabilities PCI DSS 7.1: Limit access to cardholder data by business need to know
📦 المنتجات المتأثرة 1 منتج
flowiseai:flowise
📊 CVSS Score
8.8
/ 10.0 — مرتفع
📊 CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Attack VectorN — None / Network
Attack ComplexityL — Low / Local
Privileges RequiredL — Low / Local
User InteractionN — None / Network
ScopeU — Unchanged
ConfidentialityH — High
IntegrityH — High
AvailabilityH — High
📋 حقائق سريعة
الخطورة مرتفع
CVSS Score8.8
CWECWE-284
EPSS0.13%
اختراق متاح ✓ نعم
تصحيح متاح ✗ لا
تاريخ النشر 2026-04-23
المصدر nvd
المشاهدات 1
🇸🇦 درجة المخاطر السعودية
8.5
/ 10.0 — مخاطر السعودية
أولوية: CRITICAL
🏷️ الوسوم
exploit-available CWE-284
مشاركة ثغرة
LinkedIn X / Twitter WhatsApp Telegram

💬 التعليقات

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

عرّفنا بنفسك

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

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

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

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

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

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

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