From 9ca2566972db968df4479108b29bb92551138b57 Mon Sep 17 00:00:00 2001
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
Date: Thu, 14 Jan 2016 14:43:43 +0100
Subject: ui-blob: set CSP just in case

---
 ui-blob.c | 3 +++
 1 file changed, 3 insertions(+)

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);
-- 
cgit v1.2.3