ui-blob: set CSP just in case
Jason A. Donenfeld Jason@zx2c4.com
Thu, 14 Jan 2016 14:43:43 +0100
1 files changed,
3 insertions(+),
0 deletions(-)
jump to
M
ui-blob.c
→
ui-blob.c
@@ -166,6 +166,9 @@ ctx.page.mimetype = "application/octet-stream";
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);