We probed 150 hosts per zone to see which of them send Strict-Transport-Security. .ru: 27.7%. .com: 47.1%. There is a gap, but it is 1.7×, not an order of magnitude.
That matters more than the figure itself. On DNSSEC and CAA — protections switched on in a registrar’s control panel — the same .ru trailed by 11× and 6×. HSTS is configured on your own server, and the gap collapses at once. The difference is not what owners know, but what they are allowed to turn on.
Free online tool — website security scanner: instant results, no signup.
The Strict-Transport-Security header tells a browser to reach this site over HTTPS only — and to remember that for the duration in max-age. It closes a window that survives even a complete move to HTTPS: the very first request, typed by hand or arriving via an old link, still goes out over HTTP and can be intercepted before the redirect fires.
The includeSubDomains directive extends the rule to every subdomain. Without it a forgotten old.example.com stays a hole in an otherwise closed defence.
preload closes the first request too: the domain goes into a list baked into the browser itself, and HTTPS applies before any contact is made. The price is irreversibility — removal is possible, but it propagates through browser releases over months.
On 27 August 2026 we requested 150 hosts per zone over HTTP — drawn from those users had brought to our tools — followed the redirects, and checked whether the final response carried Strict-Transport-Security. The method deliberately mirrors the one Scott Helme uses in his annual top-1M survey.
| Zone | Responded | Send HSTS | Share | includeSubDomains | preload |
|---|---|---|---|---|---|
| .com | 119 | 56 | 47.1% | 48% | 20% |
| .org | 112 | 51 | 45.5% | 67% | 35% |
| .net | 92 | 30 | 32.6% | 47% | 43% |
| .ru | 119 | 33 | 27.7% | 36% | 18% |
The includeSubDomains and preload shares are of the sites that send the header, not of all sites in the zone.
Sampling caveats. These are domains somebody chose to check, not a random slice of a zone, so the .ru share cannot stand in for "the Russian web"; comparing zones is sound, since they were collected identically. Non-responders are excluded from the denominator: 31 each for .ru and .com, 38 for .org, 58 for .net. The high .net attrition comes from its composition — service names like *.ip-ns.net, which host no site at all — so treat that row with more caution than the rest.
An indirect check on the method: our .com sample shows 48% carrying includeSubDomains, while Scott Helme measured 49.8% across 819,002 top-1M sites. The figures agree on a sample five thousand times smaller — that proves nothing on its own, but it says the measurement is not grossly skewed.
The list is not an abstraction but a file in the Chromium source, and it can be counted. On 27 August 2026 transport_security_state_static.json held 94,628 entries; the file was last modified on 28 July 2026. Of those, 94,378 carry include_subdomains.
Entries arrived on different grounds: bulk one-year inclusion 84,352; public-suffix owner request 4,954; bulk 18-week inclusion 4,552; individual submissions 394.
An important subtlety: an entry is not a site. Nearly all carry includeSubDomains, covering an unknown number of subdomains, and five thousand entries apply to whole domain zones. The real number of protected hosts is substantially larger than 94,628 and has been measured by nobody.
Two things are worth keeping apart here. In Helme’s survey 29.2% of HSTS sites send the preload directive, but only 21% (53,019 sites) satisfy the list’s requirements. Sending the directive and being in the list are not the same thing: a submission has to be made, and it is checked.
On 13 June 2026 Scott Helme crawled the Tranco Top 1 Million; 819,002 sites responded, and 252,846 of them sent an HSTS header. He publishes no percentage — against the responding count that is 30.9%, and that is our arithmetic on his figures, not his publication. From the same survey: 69.2% set a max-age of at least a year.
A second independent measurement comes from HTTP Archive: 36% of mobile pages send HSTS. That is a July 2025 crawl published in January 2026; no 2026 edition of the Web Almanac exists, and presenting the figure as current would be wrong.
These numbers must not be added together: Helme counts sites, HTTP Archive counts pages, we count hosts from our own sample. Each is correct within its own boundary.
On max-age our divergence is notable: 88% of HSTS senders in .ru and 80% in .com set at least a year, against Helme’s 69.2%. Sample size is the likelier explanation than a real difference.
This is the most interesting part of the measurement. We measured three protections in succession, and the picture for .ru came out different each time:
| Protection | Where it is configured | .ru | .com | Gap |
|---|---|---|---|---|
| DNSSEC | registrar control panel | 0.8% | 8.8% | 11× |
| CAA | registrar control panel | 1.6% | 9.4% | 6× |
| HSTS | server configuration | 27.7% | 47.1% | 1.7× |
Where the setting is made on your own server, .ru trails moderately. Where it needs support from the registrar, it trails by an order of magnitude. That is precisely the difference produced not by an owner’s awareness but by whether a field exists in somebody else’s panel: a Russian administrator knows about HSTS and about CAA to roughly the same degree, but can only switch on the first.
The practical conclusion: if you are choosing where to spend an hour, HSTS is something you can set yourself right now — whereas DNSSEC and CAA support is worth checking with a registrar before you move a domain to them.
includeSubDomains on a site where some subdomains still run over HTTP will make them unreachable.max-age — a day, say. Confirm nothing broke, and only then raise it to a year.preload separately. It is the one setting that is hard to undo: removal from the list propagates through browser releases over months. Submit once HTTPS across every subdomain has stopped raising questions, not on the same day.The tool checks HTTP security headers, SSL/TLS configuration, server info leaks, and protection against common attacks (XSS, clickjacking, MIME sniffing). A grade fromA to F shows overall security level.
Checking Content-Security-Policy, HSTS, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, and more.
TLS version, certificate expiry, chain of trust, HSTS support.
Finding exposed server versions, debug modes, open configs, and directories.
Detailed report explaining each issue with specific steps to fix it.
HTTP header audit
config verification
CSP & HSTS setup
compliance checks
Strict-Transport-Security.Server: Apache/2.4.52 helps attackers find exploits. Hide the version.DENY or SAMEORIGIN.nosniff, browsers may misinterpret file types (MIME sniffing).Content-Security-Policy-Report-Only, monitor violations, then enforce.Server, X-Powered-By, X-AspNet-Version from responses.Security check history and HTTP security header monitoring.
Sign up freeThe HSTS header asks the browser on first visit to "always use HTTPS for N seconds". That is TOFU (trust on first use) — the first HTTP visit is still vulnerable. The preload list ships with the browser, so no HTTP redirect is ever needed.
1) HSTS header with max-age ≥ 31536000 (1 year), includeSubDomains and the preload directive. 2) All subdomains serve HTTPS. 3) Submit at hstspreload.org. Chrome review ~1-2 weeks.
Not quickly reversible. Removal via hstspreload.org waits for the next Chrome release cycle (~6 weeks). Until then the site must stay on HTTPS — HTTP redirects do not help.
Enterno Security Scanner checks all security headers including HSTS. Or: curl -I https://example.com | grep -i strict.
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.