HTTP Headers Analyzer
4 / 10
https://www.smogcheck.com
Website → Browser8 missing headers, 2 warnings, 5 notices
Header
Value
Explanation
age
0
The time in seconds that the page has been in the shared proxy cache. The maximum age is set by
max-age or s-maxage in the Cache-Control header.cache-control
private, no-cache, no-store, max-age=0, must-revalidate
private means the response can only be stored by the browser's cache, but not by CDNs, proxies, or any other shared caches.no-cache means the response can be stored by any cache, but the stored response must be validated with the origin server before each reuse. If the origin confirms that the response hasn't changed, downloading of the full response body can be skipped.Warning
no-cache will cause a revalidation request to the origin server for every use of the cached response. Consider using public with appropriate max-age to improve caching efficiency.Warning
no-store means the response may not be stored in any cache, including the browser's cache.max-age=0 with must-revalidate means caching is disabled and all requests must be validated with the origin server.Notice It does not make sense to set
must-revalidate with no-store; when nothing is cached, there is nothing to revalidate.Notice It does not make sense to set
must-revalidate with no-cache; must-revalidate is implied.Notice
no-store is set, so it does not make sense to set no-cache as well.Notice
no-store is set, so it does not make sense to set private as well.date
sat, 31 jan 2026 19:24:24 gmt
The date and time at which the request was made. A browser uses it for age calculations rather than using its own internal date and time; e.g. when comparing against
Max-Age or Expires.link
</_next/static/media/24cfbfb74d4d9a5e-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2", </_next/static/media/529a2981a56f29ea-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2", </_next/static/media/9a4ee768fed045da-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2", </_next/static/media/fcca8430c54b1ee3-s.p.woff2>; rel=preload; as="font"; crossorigin=""; type="font/woff2"
rel="preload" informs the browser that the page intends to download the specified resource. To reduce latency and optimize performance, the browser is encouraged to start the download process immediately, rather than waiting for the body of the page to be downloaded and parsed.server
vercel
set-cookie
pricing_v2_enabled=true; path=/; expires=sun, 01 feb 2026 19:24:24 gmt; max-age=86400; secure; samesite=lax
A cookie that was sent from the server to the browser.
Notice
expires= sets the maximum lifetime of the cookie using a specific date.max-age= sets the maximum lifetime of the cookie in seconds.path= indicates the path that must exist in the requested URL for the browser to send the cookie.Notice
samesite=lax instructs the browser not to share the cookie with third-party sites (e.g. when loading images, videos or frames from other sites), with one exception. The cookie will be sent when a user is navigating to the origin site from an external site (for example, when following a link). To improve protection against cross-site request forgery attacks, set to samesite=strict.secure instructs the browser to only send the cookie back when HTTPS requests are used, making it more resistant to man-in-the-middle attacks.strict-transport-security
max-age=63072000
The
Strict-Transport-Security header (HSTS) instructs browsers to only use HTTPS for future connections to this domain, enhancing security by preventing downgrade attacks and cookie hijacking.max-age specifies the time, in seconds, that the browser should remember to use HTTPS only for this domain.vary
rsc, next-router-state-tree, next-router-prefetch
The
Vary header specifies a list of headers that must be considered when caching responses. For a cached response to be used, these headers must match between the cached response and the new request. This ensures that the appropriate version of a resource is served based on factors like language, encoding, or device type.x-matched-path
/
x-pathname
/
x-powered-by
next.js
Some of the software used to generate or serve this page.
x-search-params
x-vercel-cache
miss
x-vercel-id
iad1::iad1::8qvrg-1769887464623-3f88d6f123bf
content-security-policy
missing Add a
Content-Security-Policy header. The Content-Security-Policy header helps browsers prevent cross site scripting (XSS) and data injection attacks.referrer-policy
missing Add a
Referrer-Policy header. When a visitor navigates from one page to another, browsers often pass along referrer information. The Referrer-Policy header controls how much referrer information a browser can share. This is important to configure when private information is embedded in the path or query string and passed onto an external destination.permissions-policy
missing Add a
Permissions-Policy header. Restrict access to device features like the camera, microphone, location, accelerometer and much more.cross-origin-embedder-policy
missing Add a
Cross-Origin-Embedder-Policy to specify how this page can be loaded by cross-origin resources.cross-origin-opener-policy
missing Add a
Cross-Origin-Opener-Policy header to opt-in into better browser isolation.cross-origin-resource-policy
missing Add a
Cross-Origin-Resource-Policy header to specify who can load this page.x-frame-options
missing Add a
X-Frame-Options header. The X-Frame-Options header prevents this URL from being embedded in an iframe. This protects against clickjacking attacks. Alternatively, set a Content-Security-Policy header with a frame-ancestor directive.x-permitted-cross-domain-policies
missing Add a
X-Permitted-Cross-Domain-Policies header to prevent Flash, Adobe Reader and other clients from sharing data across domains.Questions or feedback? Email dries@buytaert.net.