all repos — cgit @ 9ca2566972db968df4479108b29bb92551138b57

a hyperfast web frontend for git written in c

ui-blob: set CSP just in case
Jason A. Donenfeld Jason@zx2c4.com
Thu, 14 Jan 2016 14:43:43 +0100
commit

9ca2566972db968df4479108b29bb92551138b57

parent

92996ac2a6fc4e944c3d723e12d5ab244a43508e

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M ui-blob.cui-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);