HTTP Headers Analyzer
5 / 10
https://weeblysetup12.bigcartel.com/product/gf
Website → CloudFlare → Browser5 missing headers, 2 warnings, 2 notices
The site is using a CDN, but the HTML page is not cached.
Header
Value
Explanation
date
thu, 06 nov 2025 16:16:05 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.connection
keep-alive
Specifies whether the network connection stays open after the current request.
keep-alive specifies that the browser would like to keep the connection open, while close indicates that the browser wants to close the connection.cf-ray
99a5e4af9d03f27c-iad
The
cf-ray header provides a unique identifier for each request through Cloudflare. It's useful for troubleshooting and tracking requests in Cloudflare logs.cache-control
max-age=0, private, 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.max-age=0 with must-revalidate means caching is disabled and all requests must be validated with the origin server.content-security-policy
frame-ancestors https://my.bigcartel.com https://www.bigcartel.com https://bigcartel.com https://*.bc-site-staging.pages.dev http://localhost:3000
The Content Security Policy (CSP) header helps prevent cross-site scripting (XSS), clickjacking, and other code injection attacks by specifying which dynamic resources are allowed to load.
Notice Consider adding the
frame-ancestors defines what parents may embed a page using <frame>, <iframe>, <object>, <embed> or <applet>.Notice Consider adding the
upgrade-insecure-requests directive to automatically upgrade HTTP requests to HTTPS, helping to prevent mixed content issues.referrer-policy
strict-origin-when-cross-origin
When a visitor navigates from one page to another page, browsers often pass along referrer information. The
Referrer-Policy header controls how much referrer information a browser can share. This is important because private information can be embedded in the path or query string.strict-origin-when-cross-origin means that the protocol, host, port, path and query string are shared for same-site requests. For cross-site requests, protocol, host, and port are shared, but only when the protocol security level remains the same (HTTP → HTTP, HTTPS → HTTPS). For cross-site requests where the protocol becomes less secure (HTTPS → HTTP), nothing is shared.set-cookie
cart=eyjfcmfpbhmionsibwvzc2fnzsi6ikjbadfpagxeyjixd2ntvnpjmlzrvfdgewmyaghir3hsy25gng5hugh5tgzpzeu0c0t1r3k0bmjjtevutkxhnw1zqkows0m3skwwcu56mhhkeln2slpgndblevzrc3jna3ntvfzvngtqtddxy3pzck5oy1nlmxdhb3zbq295rk5ktxrfz0publzntw5btk5fohltd2wwzfrdsu0ysxpaclreywd2smjpb3bosu5bsxhmsdrjpsisimv4cci6ijiwmjytmtetmdzumty6mty6mduumtk1wiisinb1cii6imnvb2tpzs5jyxj0in19--e65b5d2d34e21fdbee5f9b20309d971e1e2ede4b; path=/; expires=fri, 06 nov 2026 16:16:05 gmt
A cookie that was sent from the server to the browser.
expires= sets the maximum lifetime of the cookie using a specific date.path= indicates the path that must exist in the requested URL for the browser to send the cookie.set-cookie
_cfuvid=qr29kq9xzb8uhijg8a8jco.ozyqs952kaehfrlaqtkk-1762445765235-0.0.1.1-604800000; path=/; domain=.bigcartel.com; httponly; secure; samesite=none
A cookie that was sent from the server to the browser.
Warning
domain= sets the domain to which the cookie will be sent.path= indicates the path that must exist in the requested URL for the browser to send the cookie.Warning
samesite=none instructs the browser to send the cookie to all cross-site requests, such as on requests to load images or frames from other sites. This enables third-party sites to log cookie data. This could lead to data leaks and cross-site request forgery attacks. To improve security, set to samesite=strict or samesite=lax.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.httponly forbids JavaScript from accessing the cookie. Helps mitigate the risk of client side scripts accessing a protected cookie.x-content-type-options
nosniff
The
The value
X-Content-Type-Options header, when set to nosniff, prevents MIME type sniffing. This enhances security by ensuring browsers respect the declared Content-Type of the response, mitigating MIME confusion attacks.The value
nosniff is correctly set, providing protection against MIME type sniffing attacks.x-download-options
noopen
Alters the download dialog by removing the "Open with" option. Only supported by Internet Explorer.
x-frame-options
allow-from https://my.bigcartel.com
X-Frame-Options prevents this URL from being embedded in an iframe. This protects against clickjacking attacks.allow-from means that this page can be displayed in an iframe but only on the listed URLs.Notice
allow-from is deprecated. Use the Content-Security-Policy header with the frame-src directive.x-permitted-cross-domain-policies
none
Instructs clients like Flash and Acrobat Reader what cross-domain policy they have to use.
none is the most secure setting. Data can't be shared across domains.x-request-id
bcb5fd70-addb-4e36-9e25-b9ad333a5c79
A unique identifier for the HTTP request. This can be useful for tracking a request through complex systems or for debugging purposes.
x-runtime
0.090439
Indicates the time taken to generate the response on the server, typically in seconds. This can be useful for performance monitoring and debugging.
x-xss-protection
1; mode=block
This header enables the browser's built-in XSS protection. However, it's considered legacy and modern browsers may ignore it.
1 enables the browser's cross-site scripting (XSS) filtering.mode=block instructs the browser to block the response if a XSS attack is detected, instead of sanitizing the page.cf-cache-status
dynamic
Warning The
dynamic status indicates that Cloudflare did not cache the requested HTML page, similar to a "cache miss". By default, Cloudflare caches static assets such as images, CSS, and JavaScript but excludes HTML due to its dynamic nature. To cache HTML content, change the 'Cache Level' setting from dynamic to cache everything in Cloudflare. This adjustment allows HTML pages to be cached, leveraging Cloudflare's global network for faster and more efficient content delivery.server
cloudflare
strict-transport-security
missing Add a
Strict-Transport-Security header. The Strict-Transport-Security header or HSTS header is used to instruct browsers to only use HTTPS, instead of using HTTP. It helps enforce secure communication.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.Questions or feedback? Email dries@buytaert.net.