CVE-2026-60137: WordPress Core SQL Injection Vulnerability
A critical security flaw in WordPress Core allows attackers to manipulate database queries. When combined with another vulnerability, it can grant attackers full control over a website.

English Brief
A critical security flaw in WordPress Core allows attackers to manipulate database queries. When combined with another vulnerability, it can grant attackers full control over a website.
الموجز العربي
ثغرة CVE-2026-60137: حقن SQL في نظام ووردبريس الأساسي
ثغرة أمنية حرجة في نظام ووردبريس الأساسي تتيح للمهاجمين التلاعب بقواعد البيانات. عند دمجها مع ثغرة أخرى، يمكن للمهاجمين السيطرة الكاملة على الموقع الإلكتروني.
- 1Update WordPress Core to the latest patched version
- 2Review and update all installed plugins and themes
- 3Scan database for suspicious entries
English Advisory
// Intelligence Summary
CVE-2026-60137 is a SQL injection vulnerability present in WordPress Core. The flaw originates when untrusted input is passed to specific parameters by plugins or themes. Current intelligence indicates this can be chained with CVE-2026-63030 to achieve remote code execution (RCE).
التقرير العربي
// ملخص استخباراتي
ثغرة CVE-2026-60137 هي ثغرة حقن SQL موجودة في نظام ووردبريس الأساسي. تنشأ هذه الثغرة عند تمرير مدخلات غير موثوقة إلى معاملات محددة بواسطة الإضافات أو القوالب. تشير التحليلات الحالية إلى إمكانية ربط هذه الثغرة مع CVE-2026-63030 لتنفيذ تعليمات برمجية عن بُعد (RCE).
// Technical Context
The vulnerability allows unauthenticated attackers to execute arbitrary SQL commands against the WordPress database. By exploiting the improper sanitization of parameters, attackers can bypass security controls. The vulnerability specifically impacts default WordPress installations when specific conditions involving secondary components are met.
// السياق الفني
تسمح هذه الثغرة للمهاجمين غير المصرح لهم بتنفيذ أوامر SQL عشوائية على قاعدة بيانات ووردبريس. من خلال استغلال سوء معالجة المدخلات، يمكن للمهاجمين تجاوز ضوابط الأمان. تؤثر الثغرة بشكل خاص على إعدادات ووردبريس الافتراضية عند استيفاء شروط معينة تتعلق بمكونات ثانوية.
// Exposure Notes
All WordPress sites using default configurations that are susceptible to the identified chaining vector are at high risk. Organizations should prioritize inventory of active themes and plugins that interact with core parameters.
// ملاحظات التعرض
جميع مواقع ووردبريس التي تستخدم إعدادات افتراضية وتعتبر عرضة لمتجه الربط المحدد تواجه مخاطر عالية. يجب على المؤسسات إعطاء الأولوية لجرد الإضافات والقوالب النشطة التي تتفاعل مع معاملات النظام الأساسي.
// Defensive Priority
Immediate update to the latest patched version of WordPress is required. Organizations should perform a site audit for unauthorized database changes and monitor for unusual traffic patterns associated with RCE attempts.
// أولوية الدفاع
يجب التحديث الفوري إلى أحدث إصدار مصحح من ووردبريس. ينبغي على المؤسسات إجراء تدقيق للموقع بحثاً عن أي تغييرات غير مصرح بها في قاعدة البيانات ومراقبة أنماط حركة المرور غير العادية المرتبطة بمحاولات تنفيذ تعليمات برمجية عن بُعد.
Mitigation Checklist
- 1Update WordPress Core to the latest patched version
- 2Review and update all installed plugins and themes
- 3Scan database for suspicious entries
- 4Implement Web Application Firewall (WAF) rules to filter malicious SQL inputs
قائمة إجراءات التخفيف
- 1تحديث نظام ووردبريس الأساسي إلى أحدث إصدار مصحح
- 2مراجعة وتحديث جميع الإضافات والقوالب المثبتة
- 3فحص قاعدة البيانات بحثاً عن أي إدخالات مشبوهة
- 4تفعيل قواعد جدار حماية تطبيقات الويب (WAF) لتصفية مدخلات SQL الضارة
- Source: CISA Known Exploited Vulnerabilities
# 1. Update WordPress Core to the latest patched version
wp core update
# 2. Review and update all installed plugins and themes
wp plugin update --all
wp theme update --all
# 3. Scan database for suspicious entries
# 4. Implement Web Application Firewall (WAF) rules to filter malicious SQL inputs