expo-api-routes

Warn

Audited by Runlayer on Feb 26, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
89%
Files
1
Flagged
1
Chunks
2
Flagged Files (1)
expo-api-routes/SKILL.mdMEDIUM
89.2%

Tool passed security scan

Malicious tool definition detected

return { userId: "123" }; } // app/api/protected+api.ts import { requireAuth } from "../../utils/auth"; export async function GET(request: Request) { const { userId } = await requireAuth(request); return Response.json({ userId }); } ``` ### Proxy External API ```ts // app/api/weather+api.ts export async function GET(request: Request) { const url = new URL(request.url); const city = url.searchParams.get("city"); const response = await fetch( `https://api.weather.com/v1/current?city=${city}&key=${

Audit Metadata
Max File Score
89%
Classification
KNOWN_SERVER_ALL_UNKNOWN
Files Scanned
1
Files Flagged
1
Chunks Analyzed
2
Analyzed
Feb 26, 2026, 04:25 PM
Security Audit — runlayer — expo-api-routes