Where:src/routes/akti/[aktiId]/+page.svelte Why: Rendering user input via {@html data.akti.body} without sanitization allows malicious scripts to be injected. Fix: Use the already installed sanitize-html library on the server to sanitize changeRequest.body before updating/inserting into the database.
**Where:** `src/routes/akti/[aktiId]/+page.svelte`
**Why:** Rendering user input via `{@html data.akti.body}` without sanitization allows malicious scripts to be injected.
**Fix:** Use the already installed `sanitize-html` library on the server to sanitize `changeRequest.body` before updating/inserting into the database.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Where:
src/routes/akti/[aktiId]/+page.svelteWhy: Rendering user input via
{@html data.akti.body}without sanitization allows malicious scripts to be injected.Fix: Use the already installed
sanitize-htmllibrary on the server to sanitizechangeRequest.bodybefore updating/inserting into the database.