{
    "url": "https://mb66.parts",
    "score": 2,
    "summary": {
        "missing": 5,
        "warnings": 4,
        "notices": 9
    },
    "caches": [
        "Website",
        "Cloudflare",
        "Browser"
    ],
    "headers": {
        "date": {
            "value": "sun, 26 jul 2026 20:29:51 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>."
                }
            ]
        },
        "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."
                }
            ]
        },
        "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."
                }
            ]
        },
        "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."
                }
            ]
        },
        "set-cookie": {
            "value": "phpsessid=vspmua1ao8h0vh9d6v3uaf5iu4; path=/; httponly",
            "findings": [
                {
                    "severity": "info",
                    "message": "A cookie that was sent from the server to the browser."
                },
                {
                    "severity": "info",
                    "message": "<code>path=</code> indicates the path that must exist in the requested URL for the browser to send the cookie."
                },
                {
                    "severity": "info",
                    "message": "<code>httponly</code> forbids JavaScript from accessing the cookie. Helps mitigate the risk of client side scripts accessing a protected cookie."
                },
                {
                    "severity": "warning",
                    "message": "This cookie is missing the <code>secure</code> flag. Without it, the cookie can be sent over unencrypted HTTP connections, making it vulnerable to interception."
                },
                {
                    "severity": "notice",
                    "message": "This cookie does not set an explicit <code>samesite</code> attribute. Browsers default to <code>lax</code>, but setting it explicitly is recommended for clarity and cross-browser consistency."
                }
            ]
        },
        "expires": {
            "value": "thu, 19 nov 1981 08:52:00 gmt",
            "findings": [
                {
                    "severity": "info",
                    "message": "This <code>Expires</code> date is in the past: the page is considered stale and will be removed from <em>all</em> caches."
                },
                {
                    "severity": "notice",
                    "message": "The <code>Cache-Control</code> header, introduced in HTTP/1.1, supersedes the <code>Expires</code> header. Use a <code>Cache-Control</code> header with a <code>max-age</code> directive instead of <code>Expires</code>. <code>Cache-Control</code> is more powerful, but also more efficient in that it avoids roundtrips to the origin server."
                },
                {
                    "severity": "info",
                    "message": "PS: November 19th is my birthday! 🎂"
                }
            ]
        },
        "cache-control": {
            "value": "no-store, no-cache, must-revalidate",
            "findings": [
                {
                    "severity": "info",
                    "message": "<code>no-cache</code> means the response can be stored by <em>any</em> cache, but the stored response <strong>must</strong> 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."
                },
                {
                    "severity": "warning",
                    "message": "<code>no-cache</code> will cause a revalidation request to the origin server for <em>every</em> use of the cached response. Consider using <code>public</code> with appropriate <code>max-age</code> to improve caching efficiency."
                },
                {
                    "severity": "warning",
                    "message": "<code>no-store</code> means the response may <em>not</em> be stored in <em>any</em> cache, including the browser's cache. Every request will hit the origin server. If this page can be cached, consider using <code>public</code> with an appropriate <code>max-age</code>."
                },
                {
                    "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."
                },
                {
                    "severity": "notice",
                    "message": "<code>must-revalidate</code> has no effect with <code>no-store</code> since nothing is cached. Remove <code>must-revalidate</code>."
                },
                {
                    "severity": "notice",
                    "message": "<code>must-revalidate</code> is redundant with <code>no-cache</code> since <code>no-cache</code> already requires revalidation. Remove <code>must-revalidate</code>."
                },
                {
                    "severity": "notice",
                    "message": "<code>no-cache</code> is redundant when <code>no-store</code> is set, though some sites keep both for compatibility with older caches."
                }
            ]
        },
        "pragma": {
            "value": "no-cache",
            "findings": [
                {
                    "severity": "notice",
                    "message": "<code>Pragma: no-cache</code> forces revalidation with the origin server on every request. <code>Pragma</code> is a legacy HTTP/1.0 directive, superseded by <code>Cache-Control</code>. Remove <code>Pragma</code> to save bandwidth and processing power."
                }
            ]
        },
        "strict-transport-security": {
            "value": "max-age=31536000; includesubdomains; preload",
            "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": "info",
                    "message": "<code>includesubdomains</code> instructs the browser that all subdomains are HTTPS-only as well."
                },
                {
                    "severity": "info",
                    "message": "<code>preload</code> recommends the domain for inclusion in browsers' <a href=\"https://hstspreload.org/\">preload lists</a>. If accepted, the domain would get <em>hardcoded</em> into browsers as HTTPS-only."
                }
            ]
        },
        "x-frame-options": {
            "value": "deny",
            "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>deny</code> means that this page can <em>never</em> be displayed in an <code>iframe</code>. It's the most secure option."
                }
            ]
        },
        "x-content-type-options": {
            "value": "nosniff",
            "findings": [
                {
                    "severity": "info",
                    "message": "The <code>X-Content-Type-Options</code> header prevents browsers from guessing a response's content type. Without it, browsers may interpret files differently than intended, which can lead to security vulnerabilities."
                },
                {
                    "severity": "info",
                    "message": "The value <code>nosniff</code> is correctly set."
                }
            ]
        },
        "x-xss-protection": {
            "value": "1; mode=block",
            "findings": [
                {
                    "severity": "info",
                    "message": "A legacy header that enables the browser's built-in cross-site scripting (XSS) filter. Modern browsers ignore it in favor of <code>Content-Security-Policy</code>."
                },
                {
                    "severity": "info",
                    "message": "<code>1</code> enables XSS filtering."
                },
                {
                    "severity": "info",
                    "message": "<code>mode=block</code> blocks the response entirely if an attack is detected, instead of sanitizing the page."
                },
                {
                    "severity": "notice",
                    "message": "Add a <code>Content-Security-Policy</code> header for more comprehensive protection."
                }
            ]
        },
        "referrer-policy": {
            "value": "strict-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</code> means that the <i>protocol</i>, <i>host</i>, and <i>port</i> are shared, but only when the protocol security level remains the same (HTTPS → HTTPS). The <i>path</i> and <i>query string</i> are not shared. When the protocol becomes less secure (HTTPS → HTTP), nothing is shared."
                }
            ]
        },
        "permissions-policy": {
            "value": "geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()",
            "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."
                }
            ]
        },
        "report-to": {
            "value": "{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=tp0cd50p8zdg%2fwwwa4b6akf2f9cgqgs2x%2f5qjec2vtvd6kdawfhwnduukfkgee25anqronvvotuxjxo0iutzrbfjsommspglqfs%2bfpmpj8f7posgfevbrxq9btfwvrxts5rqxq%3d%3d\"}]}",
            "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."
                }
            ]
        },
        "cf-cache-status": {
            "value": "dynamic",
            "findings": [
                {
                    "severity": "notice",
                    "message": "The <code>dynamic</code> status indicates that Cloudflare did not cache this resource. This is normal and expected for HTML pages — by default, Cloudflare only caches static assets like images, CSS, and JavaScript. To cache HTML content as well, change the 'Cache Level' setting from <code>dynamic</code> to <code>cache everything</code> in Cloudflare."
                }
            ]
        },
        "speculation-rules": {
            "value": "\"/cdn-cgi/speculation\"",
            "findings": [
                {
                    "severity": "info",
                    "message": "Points to a JSON resource that defines rules for speculative loading, telling the browser to prefetch or prerender pages the user is likely to visit next. This can make navigations feel instant."
                }
            ]
        },
        "content-encoding": {
            "value": "br",
            "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": "info",
                    "message": "<code>br</code> means that the data is compressed with <code>brotli</code>."
                },
                {
                    "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": "a21628ad59f5f83a-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": {
        "content-security-policy": {
            "message": "Add a <code>Content-Security-Policy</code> header. The <code>Content-Security-Policy</code> header helps browsers prevent cross site scripting (XSS) and data injection attacks."
        },
        "cross-origin-embedder-policy": {
            "message": "Add a <code>Cross-Origin-Embedder-Policy</code> header. It requires cross-origin resources to explicitly consent before this page can load them, protecting those resources from being exposed to Spectre-style timing attacks. Together with <code>Cross-Origin-Opener-Policy</code>, it enables cross-origin isolation and access to <code>SharedArrayBuffer</code>."
        },
        "cross-origin-opener-policy": {
            "message": "Add a <code>Cross-Origin-Opener-Policy</code> header. It prevents other sites from retaining a <code>window</code> reference to this page when opened via <code>window.open()</code> or navigation, blocking script-based attacks through shared browsing contexts."
        },
        "cross-origin-resource-policy": {
            "message": "Add a <code>Cross-Origin-Resource-Policy</code> header. It controls which origins can embed or load this page's resources (images, scripts, etc.), preventing hotlinking and cross-origin data leaks."
        },
        "x-permitted-cross-domain-policies": {
            "message": "Add a <code>X-Permitted-Cross-Domain-Policies</code> header to prevent Flash, Adobe Reader and other clients from sharing data across domains."
        }
    }
}