{
    "url": "https://nlighteneddevelopment.com",
    "score": 8,
    "summary": {
        "missing": 1,
        "warnings": 1,
        "notices": 5
    },
    "caches": [
        "Website",
        "Netlify",
        "Cloudflare",
        "Browser"
    ],
    "headers": {
        "date": {
            "value": "tue, 26 may 2026 10:10:41 gmt",
            "findings": [
                {
                    "severity": "info",
                    "message": "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 <code>Max-Age</code> or <code>Expires</code>."
                }
            ]
        },
        "content-type": {
            "value": "text/html; charset=utf-8",
            "findings": [
                {
                    "severity": "info",
                    "message": "The type of the message body, specified as a <a href=\"https://en.wikipedia.org/wiki/Media_type\">MIME type</a>."
                }
            ]
        },
        "strict-transport-security": {
            "value": "max-age=2592000",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>Strict-Transport-Security</code> header (HSTS) instructs browsers to only use HTTPS for future connections to this domain, enhancing security by preventing downgrade attacks and cookie hijacking."
                },
                {
                    "severity": "info",
                    "message": "<code>max-age</code> specifies the time, in seconds, that the browser should remember to use HTTPS only for this domain."
                },
                {
                    "severity": "notice",
                    "message": "For optimal security, consider increasing <code>max-age</code> to at least 31,536,000 seconds (1 year), especially if you're considering preloading."
                }
            ]
        },
        "age": {
            "value": "66489",
            "findings": [
                {
                    "severity": "info",
                    "message": "The time in seconds that the page has been in the shared proxy cache. The maximum age is set by <code>max-age</code> or <code>s-maxage</code> in the <code>Cache-Control</code> header."
                }
            ]
        },
        "cache-control": {
            "value": "public, max-age=691200, must-revalidate",
            "findings": [
                {
                    "severity": "info",
                    "message": "<code>public</code> means the response may be stored by <em>all</em> caches, including browser caches, CDNs, and shared caches."
                },
                {
                    "severity": "info",
                    "message": "<code>max-age</code> specifies the maximum amount of seconds a page is considered valid. The higher <code>max-age</code>, the longer a page can be cached."
                },
                {
                    "severity": "info",
                    "message": "<code>must-revalidate</code> indicates that once a page becomes stale, both shared caches and browser caches must not use their stale copy without validating it with the origin server first."
                }
            ]
        },
        "cache-status": {
            "value": "\"netlify edge\"; fwd=miss",
            "findings": [
                {
                    "severity": "info",
                    "message": "A standardized header (RFC 9211) for reporting cache status. Unlike vendor-specific headers like <code>X-Cache</code> or <code>CF-Cache-Status</code>, this is a structured header that can represent multiple cache layers (e.g. CDN and origin cache) in a single value."
                }
            ]
        },
        "report-to": {
            "value": "{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=wsllvdvkl%2bl9139tlmd%2fb4x3qaucvxyomsbnjjn9bemdfnahh2jgaqg0xbrcywtqjwuaicvxzl7oybk1s2g0gbiuf8412xcyzrpapccu%2b3wbka3y46jkaq9lixkvdenlmul5rmpxadginqcq\"}]}",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>Report-To</code> header defines where browsers should send error reports. It sets up named reporting endpoints that other headers (like <code>NEL</code> and <code>Content-Security-Policy</code>) reference when they need to send violation or failure data."
                },
                {
                    "severity": "info",
                    "message": "<code>group</code> defines the reporting group. Groups allow reports to be grouped logically; e.g. there could be a group for network errors and a second group for browser feature deprecation reports."
                },
                {
                    "severity": "info",
                    "message": "<code>max_age</code> defines the number of seconds the browser should remember these settings. Prevents the browser from having to parse the JSON on each request."
                },
                {
                    "severity": "info",
                    "message": "<code>endpoints</code> defines one or more URLs where the reports need to be sent to. Multiple URLs can be specified for failover and load-balancing. Endpoints can be assigned a <code>weight</code> to distribute load, with each endpoint receiving a specified fraction of the reporting traffic. Endpoints can also be assigned a <code>priority</code> to set up fallback collectors."
                }
            ]
        },
        "content-security-policy": {
            "value": "default-src 'self' data:; frame-src 'self' youtube.com www.youtube.com; object-src 'none'; script-src-elem 'self'; style-src 'self' data: 'unsafe-inline'; style-src-attr 'self'; frame-ancestors 'self' *.youtube-nocookie.com *.ytimg.com;",
            "findings": [
                {
                    "severity": "info",
                    "message": "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."
                },
                {
                    "severity": "info",
                    "message": "<code>default-src</code> sets the default policy for fetching resources like JavaScript, images, CSS, fonts, AJAX requests, frames, HTML5 media."
                },
                {
                    "severity": "info",
                    "message": "<code>script-src</code> specifies valid sources for JavaScript. This includes not only URLs loaded directly into <code>&lt;script&gt;</code> elements, but also things like inline script event handlers (onclick) and XSLT stylesheets which can trigger script execution."
                },
                {
                    "severity": "info",
                    "message": "<code>object-src</code> defines what <code>&lt;object&gt;</code>, <code>&lt;embed&gt;</code> and <code>&lt;applet&gt;</code> elements are allowed to be loaded and executed."
                },
                {
                    "severity": "info",
                    "message": "<code>style-src</code> defines what CSS stylesheets are allowed to be loaded."
                },
                {
                    "severity": "info",
                    "message": "<code>frame-src</code> defines what <code>&lt;frame&gt;</code> and <code>&lt;iframe&gt;</code> elements can be loaded."
                },
                {
                    "severity": "info",
                    "message": "<code>frame-ancestors</code> defines what parents may embed a page using <code>&lt;frame&gt;</code>, <code>&lt;iframe&gt;</code>, <code>&lt;object&gt;</code>, <code>&lt;embed&gt;</code> or <code>&lt;applet&gt;</code>."
                },
                {
                    "severity": "notice",
                    "message": "Consider adding the <code>upgrade-insecure-requests</code> directive to automatically upgrade HTTP requests to HTTPS, helping to prevent mixed content issues."
                },
                {
                    "severity": "notice",
                    "message": "<code>unsafe-inline</code> in <code>style-src</code> allows inline styles. This is common and lower risk than inline scripts, but nonces or hashes provide stronger protection."
                },
                {
                    "severity": "notice",
                    "message": "Consider adding <code>base-uri 'self'</code> or <code>base-uri 'none'</code> to prevent base tag injection, which can redirect relative URLs to an attacker-controlled domain."
                }
            ]
        },
        "cross-origin-embedder-policy": {
            "value": "credentialless",
            "findings": [
                {
                    "severity": "info",
                    "message": "Controls whether this page can load resources (images, scripts, iframes) from other origins. When set, every cross-origin resource must explicitly opt in (via a <code>Cross-Origin-Resource-Policy</code> header or CORS) before this page can load it. This protects those other origins: by requiring their consent, the browser ensures their resources aren't exposed to Spectre-style timing attacks from this page. Setting this header (together with <code>Cross-Origin-Opener-Policy: same-origin</code>) is also required to enable powerful features like <code>SharedArrayBuffer</code> and high-resolution timers."
                },
                {
                    "severity": "info",
                    "message": "<code>credentialless</code> strips credentials (cookies, client certificates) from cross-origin requests, so the responses contain only public data. This achieves a similar level of isolation as <code>require-corp</code> but is much easier to deploy: you don't need every third-party resource to add a <code>Cross-Origin-Resource-Policy</code> header. The tradeoff is that cross-origin resources won't receive credentials, which may break some authenticated embeds."
                }
            ]
        },
        "cross-origin-opener-policy": {
            "value": "same-origin",
            "findings": [
                {
                    "severity": "info",
                    "message": "Controls whether other pages can access this page's <code>window</code> object (and vice versa) when opened via <code>window.open()</code> or by navigating to a new page. Without this header, a malicious page could open your site and retain a reference to its <code>window</code>, enabling script-based attacks through the shared browsing context. Setting this to <code>same-origin</code> severs that link for cross-origin pages. Note: COOP governs top-level documents and popups, not iframes. Use <code>X-Frame-Options</code> or CSP <code>frame-ancestors</code> to control iframe embedding."
                },
                {
                    "severity": "info",
                    "message": "<code>same-origin</code> isolates this page completely. Cross-origin pages that open this page (or are opened by it) will get <code>window.opener</code> set to <code>null</code> and cannot script each other. This is the strictest and most secure option."
                }
            ]
        },
        "cross-origin-resource-policy": {
            "value": "same-origin",
            "findings": [
                {
                    "severity": "info",
                    "message": "Controls which origins are allowed to load this resource (e.g. embed this image, load this script). This prevents other sites from hotlinking your resources and is how a resource signals its consent to be loaded by pages that use <code>Cross-Origin-Embedder-Policy</code>."
                },
                {
                    "severity": "info",
                    "message": "<code>same-origin</code> means the resource can only be loaded by documents from the same origin."
                }
            ]
        },
        "nel": {
            "value": "{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>NEL</code> (Network Error Logging) header tells browsers to report network-level failures (DNS errors, TCP timeouts, TLS problems) back to the server. This means you can detect when real users fail to reach your site, even though the failure happens before your server sees a request."
                },
                {
                    "severity": "info",
                    "message": "<code>report_to</code> defines the reporting group that reports for this NEL policy will be sent to. The reporting group details are specified in the <code>Report-To</code> header."
                },
                {
                    "severity": "info",
                    "message": "<code>max_age</code> defines the number of seconds the browser should remember these settings. Prevents the browser from having to parse the JSON on each request."
                },
                {
                    "severity": "info",
                    "message": "<code>success_fraction</code> defines the sampling rate that should be applied to reports about successful network requests. Its value must be a number between 0.0 and 1.0: 0 means no successful requests should be reported, and 1 means that every successful request should be reported."
                }
            ]
        },
        "permissions-policy": {
            "value": "accelerometer=(), camera=(), geolocation=(), gyroscope=(), microphone=(), payment=(), usb=() x-xss-protection: 1; mode=block;",
            "findings": [
                {
                    "severity": "info",
                    "message": "Controls which browser features and APIs (camera, microphone, geolocation, payment, USB, etc.) this page and its embedded iframes are allowed to use. Each feature is set to an allowlist of origins; an empty list <code>()</code> disables the feature entirely. This is a defense-in-depth measure: even if an attacker injects script via XSS, they cannot access the restricted APIs."
                }
            ]
        },
        "referrer-policy": {
            "value": "strict-origin-when-cross-origin",
            "findings": [
                {
                    "severity": "info",
                    "message": "When a visitor navigates from one page to another page, browsers often pass along <em>referrer information</em>. The <code>Referrer-Policy</code> header controls how much referrer information a browser can share. This is important because private information can be embedded in the <i>path</i> or <i>query string</i>."
                },
                {
                    "severity": "info",
                    "message": "<code>strict-origin-when-cross-origin</code> means that the full URL (<i>protocol</i>, <i>host</i>, <i>port</i>, <i>path</i> and <i>query string</i>) is shared for same-origin requests. For cross-origin requests, only the origin (<i>protocol</i>, <i>host</i>, and <i>port</i>) is shared, and only when the protocol security level stays the same or improves (HTTP → HTTP, HTTPS → HTTPS). For cross-origin requests where the protocol downgrades (HTTPS → HTTP), nothing is shared."
                }
            ]
        },
        "server": {
            "value": "cloudflare",
            "findings": [
                {
                    "severity": "info",
                    "message": "Identifies the software used by the origin server to handle the request (e.g. Apache, Nginx, Cloudflare)."
                },
                {
                    "severity": "notice",
                    "message": "Consider removing or minimizing the <code>Server</code> header. Even without a version number, it reveals the server software, which aids reconnaissance."
                }
            ]
        },
        "vary": {
            "value": "accept-encoding",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>Vary</code> 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-frame-options": {
            "value": "sameorigin",
            "findings": [
                {
                    "severity": "info",
                    "message": "<code>X-Frame-Options</code> prevents this URL from being embedded in an <code>iframe</code>. This protects against clickjacking attacks."
                },
                {
                    "severity": "info",
                    "message": "<code>sameorigin</code> allows this page to be displayed in an <code>iframe</code> on the same origin. This is the recommended setting."
                }
            ]
        },
        "x-nf-request-id": {
            "value": "01ksfwtkth1s3x8z3q2eejhrwp",
            "findings": [
                {
                    "severity": "info",
                    "message": "A unique request identifier generated by Netlify. Netlify's customer support can use this ID to trace a request through its network."
                }
            ]
        },
        "x-permitted-cross-domain-policies": {
            "value": "none",
            "findings": [
                {
                    "severity": "info",
                    "message": "Instructs clients like Flash and Acrobat Reader what cross-domain policy they have to use. <code>none</code> is the most secure setting. Data can't be shared across domains."
                }
            ]
        },
        "cf-cache-status": {
            "value": "hit",
            "findings": [
                {
                    "severity": "info",
                    "message": "The page was served from Cloudflare's cache."
                }
            ]
        },
        "content-encoding": {
            "value": "zstd",
            "findings": [
                {
                    "severity": "info",
                    "message": "Specifies how the resource is <em>compressed</em>. Not to be confused with <code>Transfer-Encoding</code> which specifies how the data is transferred."
                },
                {
                    "severity": "warning",
                    "message": "Add a <code>Content-Length</code> header. The Content-Length header is required, unless the message is transported using chunked encoding. Without a <code>Content-Length</code> header some servers will respond with 400 (bad request) or terminate connections early."
                }
            ]
        },
        "cf-ray": {
            "value": "a01bfdd079d9f83a-iad",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>cf-ray</code> header provides a unique identifier for each request through Cloudflare. It's useful for troubleshooting and tracking requests in Cloudflare logs."
                }
            ]
        },
        "alt-svc": {
            "value": "h3=\":443\"; ma=86400",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>alt-svc</code> header tells the browser that the same content is available over a different protocol. This allows the browser to upgrade to a faster protocol (e.g. HTTP/3 over QUIC) on subsequent requests without a separate negotiation step."
                },
                {
                    "severity": "info",
                    "message": "<code>h3</code> indicates that HTTP/3 is supported. HTTP/3 uses the QUIC protocol (UDP-based) instead of TCP, which eliminates the TCP handshake delay and performs better on lossy networks. Variants like <code>h3-29</code> refer to specific drafts of the HTTP/3 protocol."
                },
                {
                    "severity": "info",
                    "message": "<code>ma=86400</code> specifies that the alternative service information is fresh for 86400 seconds."
                }
            ]
        }
    },
    "missing": {
        "x-content-type-options": {
            "message": "Add an <code>X-Content-Type-Options: nosniff</code> header to prevent browsers from MIME type sniffing. Without it, browsers may interpret files as a different content type than intended, which can lead to security vulnerabilities."
        }
    }
}