From 8381be79e268fc3553898fcb75de6695430f5938 Mon Sep 17 00:00:00 2001 From: Nik Afiq Date: Tue, 12 May 2026 23:10:49 +0900 Subject: [PATCH] fix: update X-Frame-Options to Content-Security-Policy for enhanced security --- manifests/media/qbittorrent.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/media/qbittorrent.yaml b/manifests/media/qbittorrent.yaml index abc9e78..f240ec3 100644 --- a/manifests/media/qbittorrent.yaml +++ b/manifests/media/qbittorrent.yaml @@ -113,7 +113,7 @@ spec: self.send_response(200) self.send_header('Content-Type', 'text/html') self.send_header('Content-Length', len(body)) - self.send_header('X-Frame-Options', 'SAMEORIGIN') + self.send_header('Content-Security-Policy', 'frame-ancestors *') self.end_headers() self.wfile.write(body) def log_message(self, *a): pass