惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
雷峰网
雷峰网
V
Visual Studio Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
爱范儿
爱范儿
IT之家
IT之家
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
月光博客
月光博客
A
About on SuperTechFans
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
Free SSL/TLS Handshake Checker & Certificate Analyzer | S...
lemax2 · 2026-05-04 · via Hacker News: Show HN

Certificate & Protocol Analysis

Watch the TLS handshake unfold step by step. Inspect protocol versions, cipher suites, and the full certificate chain. Read the guide.

Understanding the TLS Handshake

What happens during the handshake?

Every HTTPS connection begins with a TLS handshake. The client and server agree on a protocol version, select a cipher suite, and exchange cryptographic keys. The process completes in milliseconds but determines the security of everything transmitted afterward. TLS 1.3 streamlines this to a single round trip, while TLS 1.2 requires two. For a step by step breakdown, see our TLS handshake guide.

Why TLS version matters

TLS 1.0 and 1.1 have known vulnerabilities (BEAST, POODLE) and are deprecated by all major browsers. TLS 1.2 is secure with strong cipher suites, and TLS 1.3 removes legacy algorithms entirely. If your server still accepts older versions, compliance frameworks like PCI DSS will flag it and browsers may show warnings. Disable TLS 1.0/1.1 and enable TLS 1.3 for the best security and performance.

Frequently Asked Questions

What is the difference between SSL and TLS?

SSL (Secure Sockets Layer) is the predecessor to TLS (Transport Layer Security). SSL versions 1.0 through 3.0 are all deprecated due to security vulnerabilities. TLS 1.0 was released in 1999 as an upgrade to SSL 3.0, and TLS has continued to evolve through versions 1.1, 1.2, and the current 1.3. When people say "SSL certificate" or "SSL connection" today, they almost always mean TLS. The terms are often used interchangeably, but TLS is the modern, secure protocol.

How do I fix deprecated TLS versions on my server?

The process depends on your server software. For Nginx, set ssl_protocols to "TLSv1.2 TLSv1.3" in your server block. For Apache, use SSLProtocol with "all -SSLv3 -TLSv1 -TLSv1.1". For IIS, you can disable older protocols through the Windows Registry or using the IIS Crypto tool. After making changes, restart your web server and use this tool to verify that TLS 1.0 and 1.1 are no longer enabled.

What cipher suites should I use?

For TLS 1.3, the cipher suites are fixed by the specification and all provide strong security. For TLS 1.2, prefer ECDHE key exchange for forward secrecy, AES-GCM or ChaCha20 for encryption, and SHA-256 or SHA-384 for hashing. Avoid cipher suites that use RSA key exchange (no forward secrecy), CBC mode (vulnerable to padding oracle attacks), RC4, DES, or 3DES. A good starting configuration for Nginx would be "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384".

Why is my certificate chain incomplete?

An incomplete certificate chain means your server is not sending the intermediate CA certificates needed to verify your leaf certificate back to a trusted root. Most browsers can work around this by fetching intermediates on their own, but some clients (mobile apps, API clients, older browsers) cannot. To fix this, download the intermediate certificates from your CA and configure your server to send the full chain. Your CA's documentation will have the specific intermediate certificates you need.

What is forward secrecy and why does it matter?

Forward secrecy ensures that if your server's private key is compromised, attackers cannot decrypt previously recorded traffic. With forward secrecy enabled (using ECDHE key exchange), each session generates unique ephemeral keys that are discarded after use. Without it, an attacker could record encrypted traffic today and decrypt everything later if they obtain the private key. Most compliance frameworks require forward secrecy, and all TLS 1.3 cipher suites provide it by default.

How often should I check my TLS configuration?

You should check your TLS configuration after every server update, certificate renewal, or configuration change. Beyond that, a monthly check is a good baseline. New vulnerabilities in TLS implementations are discovered regularly, and certificate renewals can sometimes reset your configuration. Automated monitoring through the SiteSecurityScore API can alert you to changes in your TLS setup without manual checks.

Go beyond TLS, check all your security headers

A strong TLS setup is the foundation, but headers like CSP, HSTS, and Permissions Policy add critical layers of protection. Scan your site to get a complete security score.

Scan your website