web-meta-framework-sveltekit
Pass
Audited by Gen Agent Trust Hub on Sep 20, 2026
Risk Level: SAFEINDIRECT_PROMPT_INJECTION
Full Analysis
- [INDIRECT_PROMPT_INJECTION]: The skill demonstrates an open redirect pattern in
examples/api-routes.mdwhere a URL parameter is used directly in a redirect function. - Ingestion points: In
src/routes/api/redirect/+server.ts, thetargetURL is retrieved directly fromurl.searchParams.get("url"). - Boundary markers: There are no validation checks or domain whitelisting procedures implemented.
- Capability inventory: The skill utilizes the
redirect(307, target)function to navigate the user to the supplied URL. - Sanitization: No input sanitization or verification against an authorized list of domains is performed.
- [INDIRECT_PROMPT_INJECTION]: The skill utilizes potentially unsafe HTML rendering in
examples/core.mdwhich could lead to XSS. - Ingestion points: Data is retrieved from the database in
src/routes/blog/[slug]/+page.server.tsand passed to the frontend via the load function. - Boundary markers: None are implemented in the code example.
- Capability inventory: The
{@html data.post.content}expression insrc/routes/blog/[slug]/+page.svelterenders raw HTML content. - Sanitization: The example does not demonstrate sanitization of the database content before it is rendered to the user.
Audit Metadata