We opened a TLS connection to 600 hosts and recorded what the two sides agreed. Not one connection used TLS 1.0 or 1.1 — not in .ru, not in .com, not anywhere.
Ciphers, meanwhile, are near-identical across zones: a library picks them, not a person. The one substantial difference is certificate key type — ECDSA is twice as rare in .ru as in the international zones.
Free online tool — SSL certificate checker: instant results, no signup.
On 27 August 2026 we opened a TLS connection to 600 hosts (150 per zone) and recorded what the two sides agreed on. 501 hosts answered over TLS:
| Zone | Answered | TLS 1.3 | TLS 1.2 | Below 1.2 |
|---|---|---|---|---|
| .org | 125 | 84% | 10% | 0 |
| .ru | 131 | 81% | 17% | 0 |
| .com | 130 | 78% | 15% | 0 |
| .net | 115 | 75% | 19% | 0 |
The last column is what matters. Not a single connection over TLS 1.0 or 1.1 in any zone. Talk of "legacy protocols still enabled" lost its subject by 2026: browsers switched them off and servers followed.
And on TLS 1.3 the .ru zone runs level with the international ones — 81% against 75–84%. This is a case where the Russian segment does not trail at all.
Caveats: these are domains somebody brought to our tools, not a slice of a zone. Non-responders are excluded from the denominator.
Among connections where a cipher could be determined:
| Zone | Determined | AES-256-GCM | AES-128-GCM | TLS 1.2 suites |
|---|---|---|---|---|
| .ru | 128 | 65% | 17% | 17% |
| .net | 108 | 64% | 16% | 20% |
| .org | 118 | 62% | 27% | 11% |
| .com | 122 | 57% | 25% | 16% |
Differences between zones sit within a few percentage points — that is, the cipher is essentially the same everywhere. Which is expected: TLS 1.3 cut the suite list to five, and the choice among them is made by a library default rather than by an administrator.
ChaCha20 appeared 3 to 6 times per zone. It is preferable on devices without hardware AES acceleration, but modern processors have it, so servers usually pick AES.
On 3 to 8 hosts per zone a connection established without a determinable cipher; those are excluded from the denominator.
The practical conclusion here is a reassuring one: hand-picking a cipher list in 2026 serves no purpose. Modern OpenSSL and nginx defaults produce exactly what is needed, while a hand-written list more often breaks compatibility than improves anything.
This is the one substantial difference between zones:
| Zone | ECDSA | RSA |
|---|---|---|
| .org | 46% | 49% |
| .com | 42% | 51% |
| .ru | 20% | 78% |
Elliptic-curve certificates are twice as rare in the .ru zone. The difference is not cosmetic: an ECDSA key is shorter at equivalent strength, so the handshake costs less computation and fewer bytes on the wire. On a mobile connection that shows most.
The cause is most likely the same as in our other measurements — not an administrator’s choice but the default of whoever issues the certificate. A hosting panel or a certificate authority integration issues RSA by default, and nobody switches.
It fits the wider pattern: on CAA records and on DNSSEC the Russian web trails by an order of magnitude, while on what is configured on your own server — HSTS and the TLS version — it barely trails at all. Certificate key type falls squarely into the first category.
To check your own configuration, use the SSL and TLS checker.
SSL/TLS is the encryption protocol that protects data between the browser and server. Our tool analyzes the certificate, chain of trust, TLS version, and knownvulnerabilities.
Issuer, validity period, signature algorithm, covered domains (SAN), and validation type (DV/OV/EV).
Full chain verification: from leaf certificate through intermediates to root CA.
Protocol version (TLS 1.2/1.3), cipher suites, Perfect Forward Secrecy (PFS) support.
Set up a monitor — get Telegram and email alerts 30/14/7 days before expiration.
SSL certificate monitoring
TLS config audit
HTTPS as ranking factor
customer trust
www and subdomains.Strict-Transport-Security header forces browsers to always use HTTPS.SSL certificate monitoring, check history and alerts 30 days before expiry.
Sign up freeAES speeds up via AES-NI instructions on x86. Old ARM processors (iPhone < 6, Android < 2017) lack them — ChaCha20 runs purely in software and wins by 2-3x.
Modern: ssl_ciphers TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256; for TLS 1.3 + ECDHE-ECDSA-AES128-GCM-SHA256:... for TLS 1.2.
AES-128 is enough for 99% of cases and faster. AES-256 only for compliance (PCI DSS, FIPS 140-2 L2+) or protecting 100-year secrets.
Enterno SSL/TLS shows the negotiated cipher + supported list. Or: openssl s_client -connect example.com:443 -tls1_3.
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.