目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1310

100%

CWE-918 服务端请求伪造(SSRF) 类漏洞列表 1659

CWE-918 服务端请求伪造(SSRF) 类弱点 1659 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-918 服务端请求伪造(SSRF)是一种允许攻击者诱导服务器发起恶意请求的漏洞。当服务器接收外部提供的 URL 并据此获取内容时,若未严格校验目标地址,攻击者可构造请求访问内网资源或探测内部服务,从而绕过防火墙限制。开发者应实施严格的白名单机制,限制协议类型,禁用重定向,并对所有输入进行深度验证,确保请求仅能访问预期的合法外部资源,从而有效防御此类攻击。

MITRE CWE 官方描述
CWE:CWE-918 Server-Side Request Forgery (SSRF) 英文:Web 服务器从上游组件接收 URL 或类似请求,并检索该 URL 的内容,但未充分确保该请求被发送至预期的目的地。
常见影响 (3)
ConfidentialityRead Application Data
IntegrityExecute Unauthorized Code or Commands
Access ControlBypass Protection Mechanism
By providing URLs to unexpected hosts or ports, attackers can make it appear that the server is sending the request, possibly bypassing access controls such as firewalls that prevent the attackers from accessing the URLs directly. The server can be used as a proxy to conduct port scanning of hosts i…
代码示例 (1)
This code intends to receive a URL from a user, access the URL, and return the results to the user.
$url = $_GET['url']; # User-controlled input # Fetch the content of the provided URL $response = file_get_contents($url); echo $response;
Bad · PHP
# Define allowed URLs (or domains) $allowed_urls = [ 'https://example.com/data.json', 'https://api.example.com/info', ]; # Get the user-provided URL $url = $_GET['url'] ?? ''; # Validate against allowed URLs if (!in_array($url, $allowed_urls)) { http_response_code(400); echo "Invalid or unauthorized URL."; exit; } # Fetch content safely $response = @file_get_contents($url); if ($response === false) { http_response_code(500); echo "Failed to fetch content."; exit; } echo htmlspecialchars($response); # Escape output for safety
Good · PHP
CVE ID标题CVSS风险等级Published
CVE-2026-10690 DesktopCommanderMCP readFile SSRF漏洞 — DesktopCommanderMCP 6.3 Medium2026-06-02
CVE-2026-10662 Blender-MCP 服务端请求伪造漏洞 — blender-mcp 6.3 Medium2026-06-02
CVE-2026-49120 Medplum < 5.1.14 FHIR订阅端点SSRF漏洞 — medplum 8.5 High2026-06-02
CVE-2026-10583 GoClaw TTS配置端点 SSRF漏洞 — GoClaw 4.7 Medium2026-06-02
CVE-2026-10581 DedeCMS download.php 服务端请求伪造漏洞 — DedeCMS 6.3 Medium2026-06-02
CVE-2026-49139 Nanobot 0.2.1以下 SSRF漏洞 — nanobot--2026-06-01
CVE-2026-10287 SourceCodester SEO Meta Tag Extractor SSRF漏洞 — SEO Meta Tag Extractor 7.3 High2026-06-01
CVE-2026-49138 Nanobot 0.2.1 以下 web_fetch 工具 SSRF 漏洞 — nanobot 5.0 Medium2026-06-01
CVE-2026-10280 Horizon921 MCPilot MCP API SSRF漏洞 — mcpilot 7.3 High2026-06-01
CVE-2026-10276 Hekmon8 Jenkins Server MCP 服务端请求伪造漏洞 — Jenkins-server-mcp 6.3 Medium2026-06-01
CVE-2026-10274 aem-mcp-server 服务端请求伪造漏洞 — aem-mcp-server 6.3 Medium2026-06-01
CVE-2026-49328 Apache Fesod 用户输入URL验证不当导致SSRF漏洞 — Apache Fesod (Incubating)--2026-06-01
CVE-2026-10241 JeecgBoot 服务器端请求伪造漏洞 — The server processes these URLs 6.3 Medium2026-06-01
CVE-2026-10240 JeecgBoot 服务器端请求伪造漏洞 — JeecgBoot 6.3 Medium2026-06-01
CVE-2026-10239 JeecgBoot WordUtil.addImage SSRF漏洞 — JeecgBoot 6.3 Medium2026-06-01
CVE-2026-10517 Clair 未授权 SSRF 漏洞 — Red Hat Quay 3 5.8 Medium2026-06-01
CVE-2026-10177 Aider 代码问题漏洞 — Aider 6.3 Medium2026-05-31
CVE-2026-44285 FastGPT 代码问题漏洞 — FastGPT 7.7 High2026-05-29
CVE-2026-48555 Spatie Laravel Media Library Pro 代码问题漏洞 — laravel-medialibrary 7.4 High2026-05-29
CVE-2026-49372 JetBrains TeamCity 代码问题漏洞 — TeamCity 7.5 High2026-05-29
CVE-2026-44652 SillyTavern 代码问题漏洞 — SillyTavern--2026-05-29
CVE-2026-46372 SillyTavern 安全漏洞 — SillyTavern 8.5 High2026-05-29
CVE-2026-45660 Statamic 代码问题漏洞 — cms 5.4 Medium2026-05-29
CVE-2026-10107 MoviePilot 安全漏洞 — MoviePilot 7.7 High2026-05-29
CVE-2026-10068 Shibby Tomato 安全漏洞 — Tomato 7.3 High2026-05-29
CVE-2026-45609 MCP Security 代码问题漏洞 — mcp-security 7.2 High2026-05-29
CVE-2026-42965 Red Hat OpenShift 代码问题漏洞 — Red Hat OpenShift Container Platform 4 7.7 High2026-05-29
CVE-2026-9557 Mautic 安全漏洞 6.4 Medium2026-05-29
CVE-2026-10052 Red Hat Quay 代码问题漏洞 — Red Hat Quay 3 4.1 Medium2026-05-29
CVE-2026-45366 Universal Tool Calling Protocol 代码问题漏洞 — typescript-utcp 4.7 Medium2026-05-28

CWE-918(服务端请求伪造(SSRF)) 是常见的弱点类别,本平台收录该类弱点关联的 1659 条 CVE 漏洞。