mcp-oauth-cloudflare

skills-sh:jezweb_claude-skills__mcp-oauth-cloudflare

View source
C
50/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

3

Score

50/100

CRITICAL 2
LOW 1

Findings (3)

CRITICAL
Cloud credential endpoint
L970

Detects cloud provider token and credential endpoints

oauth2.googleapis.com/token
FIX

Block access to cloud instance metadata services using IMDSv2 token requirements, network rules, or iptables. This is a critical vector for credential theft in cloud environments.

FP?

Likely FP if the match is in security documentation explaining how to protect against SSRF/IMDS attacks rather than code that accesses the metadata service.

CRITICAL
Cloud credential endpoint
L1758

Detects cloud provider token and credential endpoints

oauth2.googleapis.com/token
FIX

Block access to cloud instance metadata services using IMDSv2 token requirements, network rules, or iptables. This is a critical vector for credential theft in cloud environments.

FP?

Likely FP if the match is in security documentation explaining how to protect against SSRF/IMDS attacks rather than code that accesses the metadata service.

LOW
External API response used without validation
L2024

Detects patterns where external API responses are used directly without validation or sanitization

endpoint or invalid response + without use
FIX

Validate and sanitize all data received from external APIs before using it in tool operations or agent prompts. Implement schema validation and treat API responses as untrusted input.

FP?

Likely FP if the match is a truncated table cell or documentation fragment that mentions API responses in a descriptive context, not actual unvalidated data processing.