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

CVE-2026-4061

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

The Geo Mashup plugin for WordPress is vulnerable to Time-Based SQL Injection via the 'map_post_type' parameter in all versions up to, and including, 1.13.18. This is due to the `SearchResults` hook explicitly calling `stripslashes_deep($_POST)` which removes WordPress magic quotes protection, followed by the unsanitized `map_post_type` value being concatenated into an `IN(...)` clause without `esc_sql()` or `$wpdb->prepare()`. The 'any' branch of the same code correctly applies `array_map('esc_sql', ...)`, but the else branch does not. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database via a time-based blind approach. Exploitation requires the Geo Search feature to be enabled in plugin settings.

🤖 ملخص AI

The Geo Mashup WordPress plugin versions up to 1.13.18 contain a critical Time-Based SQL Injection vulnerability in the 'map_post_type' parameter that allows unauthenticated attackers to extract sensitive database information. The vulnerability exists due to improper input sanitization where `stripslashes_deep()` removes WordPress protections and the parameter is concatenated directly into SQL queries without proper escaping. This poses significant risk to Saudi organizations running WordPress-based websites, particularly those managing sensitive business or customer data.

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

🤖 التحليل الذكي آخر تحليل: May 6, 2026 16:36
🇸🇦 التأثير على المملكة العربية السعودية
Saudi organizations at highest risk include: (1) E-commerce and retail businesses using WordPress with Geo Mashup for location-based product searches; (2) Real estate and property management companies leveraging geo-location features; (3) Government agencies and municipalities using WordPress for public-facing services with location data; (4) Healthcare providers managing patient location data; (5) Tourism and hospitality sectors. The vulnerability allows extraction of customer databases, business intelligence, personal information, and financial records if the Geo Search feature is enabled. Organizations in SAMA-regulated sectors face additional compliance violations (SAMA CSF A.2.1, A.2.2). The attack requires no authentication and can be executed remotely, making it highly exploitable.
🏢 القطاعات السعودية المتأثرة
E-commerce and Retail Real Estate and Property Management Government and Public Administration Healthcare and Medical Services Tourism and Hospitality Financial Services Education Media and Publishing
⚖️ درجة المخاطر السعودية (AI)
8.2
/ 10.0
🔧 Remediation Steps (English)
IMMEDIATE ACTIONS:
1. Disable the Geo Mashup plugin immediately if not critical to operations, or disable the Geo Search feature in plugin settings to prevent exploitation
2. Audit WordPress access logs for suspicious POST requests containing SQL syntax (UNION, SELECT, SLEEP, BENCHMARK) in the 'map_post_type' parameter
3. Review database access logs for unusual query patterns or timing anomalies

PATCHING GUIDANCE:
1. Monitor the Geo Mashup plugin repository for security updates (currently no patch available as of CVE publication)
2. Contact plugin developers for estimated patch timeline
3. If critical functionality required, implement Web Application Firewall (WAF) rules to block SQL injection patterns

COMPENSATING CONTROLS:
1. Implement ModSecurity or similar WAF with OWASP CRS rules to detect/block SQL injection attempts
2. Apply input validation at WAF level: whitelist allowed values for 'map_post_type' parameter
3. Restrict POST requests to Geo Mashup endpoints by IP whitelist if possible
4. Enable WordPress security plugins (Wordfence, Sucuri) with SQL injection detection
5. Implement database query logging and real-time alerting for suspicious patterns
6. Apply principle of least privilege to database user accounts
7. Use prepared statements in any custom code interacting with this plugin

DETECTION RULES:
1. Monitor for POST requests with 'map_post_type' parameter containing: UNION, SELECT, SLEEP(), BENCHMARK(), OR 1=1, comment syntax (-- , /* */)
2. Alert on database queries with unusual execution times (>5 seconds) from WordPress processes
3. Monitor for multiple failed database authentication attempts
4. Track database error logs for syntax errors in generated queries
🔧 خطوات المعالجة (العربية)
الإجراءات الفورية:
1. عطّل مكون Geo Mashup فوراً إذا لم يكن حرجاً للعمليات، أو عطّل ميزة Geo Search في إعدادات المكون لمنع الاستغلال
2. تدقيق سجلات وصول WordPress للطلبات المريبة التي تحتوي على بناء جملة SQL (UNION, SELECT, SLEEP, BENCHMARK) في معامل 'map_post_type'
3. مراجعة سجلات وصول قاعدة البيانات للأنماط غير العادية أو الشذوذ الزمني

إرشادات التصحيح:
1. راقب مستودع مكون Geo Mashup للتحديثات الأمنية (لا توجد تصحيحات متاحة حالياً)
2. اتصل بمطوري المكون للحصول على الجدول الزمني المقدر للتصحيح
3. إذا كانت الوظيفة حرجة، قم بتنفيذ قواعد جدار حماية تطبيقات الويب لحجب أنماط حقن SQL

الضوابط التعويضية:
1. قم بتنفيذ ModSecurity أو WAF مماثل مع قواعد OWASP CRS لكشف/حجب محاولات حقن SQL
2. تطبيق التحقق من المدخلات على مستوى WAF: قائمة بيضاء للقيم المسموحة لمعامل 'map_post_type'
3. تقييد طلبات POST لنقاط نهاية Geo Mashup حسب القائمة البيضاء للعناوين إن أمكن
4. تفعيل مكونات أمان WordPress (Wordfence, Sucuri) مع كشف حقن SQL
5. تنفيذ تسجيل استعلامات قاعدة البيانات والتنبيهات في الوقت الفعلي للأنماط المريبة
6. تطبيق مبدأ أقل امتياز لحسابات مستخدمي قاعدة البيانات
7. استخدام العبارات المحضرة في أي كود مخصص يتفاعل مع هذا المكون
📋 خريطة الامتثال التنظيمي
🟢 NCA ECC 2024
A.2.1 - Information Security Policies and Procedures (input validation requirements) A.2.2 - Access Control (database access restrictions) A.3.1 - Cryptography (data protection in transit/at rest) A.4.1 - Physical and Environmental Security (server hardening) A.5.1 - Operations Security (vulnerability management) A.6.1 - Communications Security (secure coding practices)
🔵 SAMA CSF
A.2.1 - Governance and Risk Management (vulnerability assessment) A.2.2 - Information Security Strategy (incident response) B.1.1 - Asset Management (software inventory) B.2.1 - Access Control (authentication/authorization) B.3.1 - Cryptography (data protection) C.1.1 - Detection and Response (security monitoring) C.2.1 - Incident Management (breach response procedures)
🟡 ISO 27001:2022
A.5.1.1 - Policies for information security (secure development) A.5.2.1 - Information security responsibilities A.6.1.1 - Screening (vendor security assessment) A.8.1.1 - User endpoint devices (application security) A.8.2.1 - Privileged access rights (database access control) A.8.3.1 - Restriction of access to information (data protection) A.12.2.1 - Restrictions on software installation (plugin management) A.12.6.1 - Management of technical vulnerabilities (patch management) A.14.1.1 - Information security requirements (secure coding)
🟣 PCI DSS v4.0.1
Requirement 1.1 - Firewall configuration standards (WAF implementation) Requirement 2.1 - Default security parameters (plugin hardening) Requirement 6.2 - Security patches (vulnerability management) Requirement 6.5.1 - Injection flaws (SQL injection prevention) Requirement 10.2 - User access logging (audit trails) Requirement 11.2 - Vulnerability scanning (regular assessments)
📊 CVSS Score
7.5
/ 10.0 — مرتفع
📊 CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Attack VectorN — None / Network
Attack ComplexityL — Low / Local
Privileges RequiredN — None / Network
User InteractionN — None / Network
ScopeU — Unchanged
ConfidentialityH — High
IntegrityN — None / Network
AvailabilityN — None / Network
📋 حقائق سريعة
الخطورة مرتفع
CVSS Score7.5
CWECWE-89
EPSS0.08%
اختراق متاح لا
تصحيح متاح ✗ لا
تاريخ النشر 2026-05-02
المصدر nvd
المشاهدات 1
🇸🇦 درجة المخاطر السعودية
8.2
/ 10.0 — مخاطر السعودية
أولوية: CRITICAL
🏷️ الوسوم
CWE-89
مشاركة ثغرة
LinkedIn X / Twitter WhatsApp Telegram

💬 التعليقات

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

عرّفنا بنفسك

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

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

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

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

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

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

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