The rmcp library does not validate the resource parameter in OAuth Protected Resource metadata (RFC 9728), allowing a malicious MCP server to redirect OAuth flows to a legitimate authorization server and steal the resulting access tokens.
RFC 9728 specifies two MUST requirements for resource parameter validation:
resource value in the returned metadata document.resource value returned is not identical to the URL the client used, the data MUST NOT be used.In the current implementation (crates/rmcp/src/transport/auth.rs), the ResourceServerMetadata struct (lines 390–394) does not include a resource field:
struct ResourceServerMetadata {
authorization_server: Option<String>,
authorization_servers: Option<Vec<String>>,
scopes_supported: Option<Vec<String>>,
}
And discover_oauth_server_via_resource_metadata() (lines 1446–1465) proceeds without any resource URL validation.
resource field to the struct:
struct ResourceServerMetadata {
resource: Option<String>, // RFC 9728 REQUIRED field
authorization_server: Option<String>,
authorization_servers: Option<Vec<String>>,
scopes_supported: Option<Vec<String>>,
}
let Some(resource_metadata) = self
.fetch_resource_metadata_from_url(&resource_metadata_url)
.await?
else {
return Ok(None);
};
// RFC 9728: validate that the resource identifier matches our target server
if let Some(resource) = &resource_metadata.resource {
if resource.trim_end_matches('/') != self.base_url.as_str().trim_end_matches('/') {
return Err(AuthError::MetadataError(format!(
"Resource metadata mismatch: expected '{}', got '{}'",
self.base_url, resource
)));
}
}
Attacker sets up a malicious MCP server at fake-mcp.com/mcp.
At fake-mcp.com/mcp/.well-known/oauth-protected-resource, the attacker serves metadata declaring:
real-mcp.com/mcp (the legitimate server)real-mcp.com/mcpVictim configures any MCP client using rmcp to connect to fake-mcp.com/mcp.
rmcp fetches the protected resource metadata and, without validating that the resource field (real-mcp.com/mcp) differs from the configured server (fake-mcp.com/mcp), initiates an OAuth flow with the legitimate authorization server.
The victim sees a legitimate authorization prompt and completes the flow.
The resulting access token — valid for real-mcp.com/mcp — is sent to fake-mcp.com/mcp in subsequent requests.
The attacker captures the token and can impersonate the victim on real-mcp.com/mcp.
This is an access token theft vulnerability via OAuth resource metadata spoofing. All MCP clients built on rmcp that rely on OAuth-protected MCP servers are affected. An attacker who tricks a user into connecting to a malicious MCP server can steal valid access tokens for any legitimate MCP server, enabling full impersonation of the victim.
Jian Cui, Minsun Shim, Zhou Li, Xiaojing Liao University of Illinois Urbana-Champaign (UIUC) University of California, Irvine (UCI)
{
"cwe_ids": [
"CWE-345"
],
"github_reviewed": true,
"github_reviewed_at": "2026-09-16T22:13:26Z",
"nvd_published_at": "2026-09-16T15:17:39Z",
"severity": "HIGH"
}