Skip to content
Back to HTTP Security Headers

HTTP Security Headers

encyclopedia.com

encyclopedia.com has 1 of 10 security headers correctly configured, most notably Content-Security-Policy — addressing the critical findings flagged below will move it into the strong tier.

200 https://encyclopedia.com/
1 present 2 missing (critical) 2 missing (recommended)
HeaderValueNote
Content-Security-PolicyNot setPrevents XSS and injection attacks
Strict-Transport-SecurityNot setForces HTTPS connections
X-Frame-OptionsNot setPrevents clickjacking
X-Content-Type-OptionsnosniffPrevents MIME sniffing
Referrer-PolicyNot setControls referrer information
Permissions-PolicyNot setControls browser features
X-XSS-ProtectionNot setLegacy XSS filter (deprecated)
Cross-Origin-Opener-PolicyNot setIsolates browsing context
Cross-Origin-Embedder-PolicyNot setControls cross-origin embedding
Cross-Origin-Resource-PolicyNot setControls cross-origin resources
Show all response headers (30)
Surrogate-Control: max-age=86400, public, stale-if-error=604800, stale-while-revalidate=604800
X-Tag: fabc 844c b3ea b285 b54d 2cd7 1873 48c2 5fa7 02fe 0034 32f5 4c64 836c b478 64b6 e47d 0f57 612c f1c4 a610 329e 68fe 5faf 5d49 b389 aace 6585 6467 4725 3afb d921 832b 2b3a 61ea 38f0 7fe5 2ee7 e4ff 9ab7 df50 caa1 561d d1a1 46ff d68a c4b7 d8f9 5196 326c c964 0c16 79bc 492f dbc0 7b02 5034 fdad 9b2a eb49 fb1e 93be 9ccc 5611 d1f6 f6e9 e726 2580 6924 d250 3c33 1458 2f08 81c3 2b46 0b25 0de5 3ca6 30dc 07a3 d2a1 d730 8cd6 abc3 4630 057c 3974 467a ff25 06f1 7d01 fcc7 68aa 4015 dc24 7df0 96fb 2da1 3df5 09a2 476d e459 f70b 8746 3f44 5bd4 d791 4016 0fdc 4cdd 99f4 de77 ef74 a8bc 688c 40cb b9d8 824a 6d83 0089 b569 c39f fcec 259c f9eb 5c5b f5f1
Cf-Cache-Status: HIT
Connection: keep-alive
Link: <http://www.encyclopedia.com/>; rel="shortlink", <http://www.encyclopedia.com/>; rel="canonical"
X-Adv-Varnish: Cache-enabled
X-Generator: Drupal 8 (https://www.drupal.org)
Cache-Control: public, max-age=86400, stale-if-error=604800, stale-while-revalidate=604800
Age: 1597094
X-Content-Type-Options: nosniff
X-Content-Type-Options: nosniff
Expires: Sun, 19 Nov 1978 05:00:00 GMT
X-Ttl: 604800
Cf-Ray: a2c21a22487066ca-AMS
Alt-Svc: h3=":443"; ma=86400
Server: cloudflare
Last-Modified: Thu, 09 Jul 2026 17:52:47 GMT
X-Varnish: 517191004 515338856
Via: 1.1 varnish-v4
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Date: Sun, 16 Aug 2026 17:19:06 GMT
X-Grace: 3600
X-Drupal-Dynamic-Cache: MISS
Content-Type: text/html; charset=UTF-8
Content-Language: en
Vary: X-Bin,Accept-Encoding
X-Deflate-Key: b91f02cf5af93c1c9141ba365d5852c9d12df6fd39f8b5d9c3b80dc1bc1428e1
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=DJkZ3Z3LRmnMJJKm94xVcWsbjLlt8BQz86zAPETuT%2FsBGs3t%2FcvRafegINEvNbj9%2FtE2oH8N74EEnuUGacO9BTZ1QdhF7HT6HCvKVvkJYYdtGCySsJ0wwy0eJLvxSl22STmKWZwB"}]}
X-Ua-Compatible: IE=edge
X-Varnish-Secret: 091751400c9e161934bdb17db6964f80d80d717b80a899dbb87d8285216813d2
X-Drupal-Cache: HIT

Want the full picture?

This is just one of 100+ checks BeaverCheck runs in a full website audit.

Run Full Audit →

How we grade the results

Each header receives one of three grades: pass (present with a correct, current-best-practice value), warning (present but with a value that is outdated, insufficient, or contains a known weakness), or critical (missing entirely in a context where it should be set). The weighting reflects real-world impact: missing CSP and HSTS on a production HTTPS site are the most severe findings, while a missing Permissions-Policy on a static marketing page is a warning rather than critical. We do not penalize headers that are intentionally absent for a documented reason — for example, X-Frame-Options is now redundant when a CSP frame-ancestors directive is set, and we credit the CSP path. The scoring also adapts to the response: a 301 redirect that ships only the minimum subset of headers is treated differently from a 200 HTML response that should carry the full set. All grading rules are deterministic and visible in the source repository, and the same evaluator runs across both this free tool and the full audit pipeline so results are consistent either way.

Common findings on real sites

Across thousands of public scans, four patterns repeat. First, missing Content-Security-Policy is the most common critical finding — more than half of audited sites ship no CSP at all, leaving inline scripts and event handlers vulnerable to XSS injection. Second, HSTS is often present but configured weakly: a max-age below six months, missing includeSubDomains, or absent from the preload list — meaning the first visit to a subdomain still happens over plaintext. Third, X-Content-Type-Options: nosniff is missing on a surprising number of API responses, allowing MIME-sniffing attacks where a JSON endpoint is reinterpreted as JavaScript by a malicious referring page. Fourth, Permissions-Policy is the newest header and the least adopted: most sites do not deny access to the 10+ powerful browser APIs even when they never use any of them, leaving an XSS-compromised page free to silently activate the user's microphone or geolocation. A site that passes all four checks ends up in the top 5% of the public scan corpus, which is a much stronger signal than a single header grade in isolation.

How to add the missing headers

Most security headers are one line to add. For Nginx, set them in the server or http block with the add_header directive — for example: add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always. The 'always' parameter is important — without it, Nginx skips the header on non-200 responses, leaving error pages unprotected. For Apache, use Header set inside a Directory or VirtualHost block. For Express.js, the helmet middleware sets the full security-header set with sensible defaults in three lines: install helmet, require it, and add app.use(helmet()) before any route. For Cloudflare, the Transform Rules dashboard exposes every header without redeploying — useful for setting CSP and HSTS on origins you do not control. The trickiest header is Content-Security-Policy: a wrong value breaks the page silently, so always start in report-only mode (Content-Security-Policy-Report-Only) for at least a week before switching to enforcement. Use the report-uri or report-to directive to collect violation reports, fix what your application legitimately needs, then promote to enforcing mode. The CSP details panel in this tool's report breaks each directive out separately so you can see exactly which sources your site allows today.

Why these headers actually matter

Security headers are the lowest-effort, highest-impact defense most sites can deploy — they cost nothing to add and they neutralize entire classes of attack at the browser boundary, before your application code runs. CSP turns XSS from a near-total compromise into a logged violation report you can investigate at leisure. HSTS prevents the SSL-stripping attacks that defeat HTTPS on hostile networks, including the rogue Wi-Fi access points common at conferences and coffee shops. X-Frame-Options and frame-ancestors block clickjacking, where an attacker embeds your authenticated UI in a transparent iframe and tricks users into clicking destructive actions. The Cross-Origin trio (COOP, COEP, CORP) was added specifically to mitigate Spectre and Meltdown speculative-execution side channels — without them, a malicious cross-origin embed can read your tab's memory through timing attacks. Permissions-Policy is the youngest header but arguably the most important: a single XSS bug in a page that explicitly allows camera access lets an attacker turn the user's webcam on without UI feedback. None of this replaces other defenses (input validation, parameterized queries, dependency hygiene), but it does buy enormous defense-in-depth at near-zero implementation cost.

Other reports for encyclopedia.com

Share this result: