expo-api-routes
Warn
Audited by Runlayer on Feb 26, 2026
Risk Level: MEDIUM
Scan Summary
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