blob: e56988b85b8a2d677e3d5a448373714d69af2848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
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 v0.12-20-g4fde
|