HTTP Headers Analyzer
8 / 10
https://yootimes.tech
WordPress → LiteSpeed → Browser5 missing headers, 0 warnings, 1 notices
Header
Value
Explanation
x-dns-prefetch-control
on
DNS requests are very small in terms of bandwidth, but latency can be quite high. Prefetching DNS results can significantly improve page load performance.
Notice This feature is non-standard and is not on a standards track. Not supported by all browsers.
Notice This feature is non-standard and is not on a standards track. Not supported by all browsers.
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.x-frame-options
sameorigin
X-Frame-Options
prevents this URL from being embedded in an iframe
. This protects against clickjacking attacks.sameorigin
means that this page can be displayed in a iframe
, but only on the currrent origin. It can't be displayed on another domain. Consider setting this to deny
for added security.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.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-powered-by
Some of the software used to generate or serve this page.
strict-transport-security
max-age=31536000
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.link
<https://cdn.gtranslate.net/>; rel=dns-prefetch
rel="dns-prefetch"
informs the browser that the page intends to establish a connection to the specified host. To reduce latency and optimize performance, the browser is encouraged to resolve the DNS as soon as possible.link
<https://yootimes.tech/meilleur-abonnement-iptv-4k/wp-json/>; rel="https://api.w.org/"
rel="https://api.w.org/"
is where you can learn more about WordPress' REST API. Applications can interact with this WordPress site by sending and receiving JSON objects.link
<https://yootimes.tech/meilleur-abonnement-iptv-4k/wp-json/wp/v2/pages/701>; rel="alternate"; title="json"; type="application/json"
Specifies a link that might be of interest to the browser.
link
<https://yootimes.tech/meilleur-abonnement-iptv-4k/>; rel=shortlink
rel="shortlink"
specifies a shorter URL for the current page, to be used in space constrained interfaces and/or for manual entry.etag
"33319-1738717086;;;"
A unique identifier that changes every time a page at a given URL changes. It acts as a fingerprint. A cache can compare
Etag
values to see if the page has changed and became stale. For example, a browsers will send the ETag
value of a cached page in an If-None-Match
header. The web server compares the ETag
value sent by the browser with the ETag
value of the current version of the page. If both values are the same, the web server sends back a 304 Not Modified
status and no body.x-litespeed-cache
hit
The page was served from LiteSpeed's cache.
date
wed, 05 feb 2025 12:04:19 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
.server
litespeed
platform
hostinger
Some of the software used to generate or serve this page.
panel
hpanel
content-security-policy
upgrade-insecure-requests
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.
upgrade-insecure-requests
instructs browsers to replace insecure URLs (HTTP) with secure URLs (HTTPS).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-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.