Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <crow/http_request.h> |
| 4 | #include <crow/http_response.h> |
| 5 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 6 | namespace crow |
| 7 | { |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 8 | struct SecurityHeadersMiddleware |
| 9 | { |
| 10 | struct Context |
| 11 | { |
| 12 | }; |
Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 13 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 14 | void beforeHandle(crow::Request& req, Response& res, Context& ctx) |
| 15 | { |
Ed Tanous | fd828ba | 2018-08-09 10:58:08 -0700 | [diff] [blame] | 16 | #ifdef BMCWEB_INSECURE_DISABLE_XSS_PREVENTION |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 17 | if ("OPTIONS"_method == req.method()) |
| 18 | { |
| 19 | res.end(); |
| 20 | } |
| 21 | #endif |
Ed Tanous | fd828ba | 2018-08-09 10:58:08 -0700 | [diff] [blame] | 22 | } |
Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 23 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 24 | void afterHandle(Request& req, Response& res, Context& ctx) |
| 25 | { |
| 26 | /* |
| 27 | TODO(ed) these should really check content types. for example, |
| 28 | X-UA-Compatible header doesn't make sense when retrieving a JSON or |
| 29 | javascript file. It doesn't hurt anything, it's just ugly. |
| 30 | */ |
Ed Tanous | 750ceae | 2018-11-30 15:02:22 -0800 | [diff] [blame] | 31 | using bf = boost::beast::http::field; |
| 32 | res.addHeader(bf::strict_transport_security, "max-age=31536000; " |
| 33 | "includeSubdomains; " |
| 34 | "preload"); |
| 35 | res.addHeader(bf::x_frame_options, "DENY"); |
| 36 | |
| 37 | res.addHeader(bf::pragma, "no-cache"); |
| 38 | res.addHeader(bf::cache_control, "no-Store,no-Cache"); |
Ed Tanous | 3eb2f35 | 2018-12-20 12:30:45 -0800 | [diff] [blame] | 39 | |
Ed Tanous | e6de21a | 2019-08-21 12:50:42 -0700 | [diff] [blame] | 40 | res.addHeader("Content-Security-Policy", "default-src 'none'; " |
| 41 | "img-src 'self' data:; " |
| 42 | "font-src 'self'; " |
| 43 | "style-src 'self'; " |
| 44 | "script-src 'self'; " |
| 45 | "connect-src 'self' wss:"); |
| 46 | // The KVM currently needs to load images from base64 encoded |
| 47 | // strings. img-src 'self' data: is used to allow that. |
Ed Tanous | 3eb2f35 | 2018-12-20 12:30:45 -0800 | [diff] [blame] | 48 | // https://stackoverflow.com/questions/18447970/content-security-policy-data-not-working-for-base64-images-in-chrome-28 |
Ed Tanous | e6de21a | 2019-08-21 12:50:42 -0700 | [diff] [blame] | 49 | |
Ed Tanous | 750ceae | 2018-11-30 15:02:22 -0800 | [diff] [blame] | 50 | res.addHeader("X-XSS-Protection", "1; " |
| 51 | "mode=block"); |
Ed Tanous | 02db306 | 2018-12-10 13:37:44 -0800 | [diff] [blame] | 52 | res.addHeader("X-Content-Type-Options", "nosniff"); |
Ed Tanous | fd828ba | 2018-08-09 10:58:08 -0700 | [diff] [blame] | 53 | |
| 54 | #ifdef BMCWEB_INSECURE_DISABLE_XSS_PREVENTION |
Ed Tanous | e6de21a | 2019-08-21 12:50:42 -0700 | [diff] [blame] | 55 | res.addHeader(bf::access_control_allow_origin, |
| 56 | req.getHeaderValue("Origin")); |
Ed Tanous | 750ceae | 2018-11-30 15:02:22 -0800 | [diff] [blame] | 57 | res.addHeader(bf::access_control_allow_methods, "GET, " |
| 58 | "POST, " |
| 59 | "PUT, " |
Ed Tanous | da7f41e | 2018-12-10 13:36:40 -0800 | [diff] [blame] | 60 | "PATCH, " |
| 61 | "DELETE"); |
Ed Tanous | 750ceae | 2018-11-30 15:02:22 -0800 | [diff] [blame] | 62 | res.addHeader(bf::access_control_allow_credentials, "true"); |
| 63 | res.addHeader(bf::access_control_allow_headers, "Origin, " |
| 64 | "Content-Type, " |
| 65 | "Accept, " |
| 66 | "Cookie, " |
| 67 | "X-XSRF-TOKEN"); |
Ed Tanous | fd828ba | 2018-08-09 10:58:08 -0700 | [diff] [blame] | 68 | |
| 69 | #endif |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 70 | } |
Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 71 | }; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 72 | } // namespace crow |