From: Jason A. Donenfeld Date: Thu, 14 Jan 2016 13:43:43 +0000 (+0100) Subject: ui-blob: set CSP just in case X-Git-Tag: v0.12~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9ca2566972db968df4479108b29bb92551138b57;p=cgit ui-blob: set CSP just in case --- diff --git a/ui-blob.c b/ui-blob.c index 43a2f10..d388489 100644 --- a/ui-blob.c +++ b/ui-blob.c @@ -166,6 +166,9 @@ void cgit_print_blob(const char *hex, char *path, const char *head, int file_onl else ctx.page.mimetype = "text/plain"; ctx.page.filename = path; + + html("X-Content-Type-Options: nosniff\n"); + html("Content-Security-Policy: default-src 'none'\n"); cgit_print_http_headers(); html_raw(buf, size); free(buf);