Configures TLS 1.3 on nginx, Apache servers, and Python ssl module; verifies with openssl and testssl.sh for secure, performant transport security.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills-zh:configuring-tls-1-3-for-secure-communicationsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
TLS 1.3(RFC 8446)是传输层安全协议的最新版本,在安全性和性能方面相比 TLS 1.2 有显著改进。它将握手延迟降低至 1-RTT(会话恢复时为 0-RTT),移除了过时的密码套件,并强制要求完美前向保密(PFS)。本技能涵盖在服务器上配置 TLS 1.3、验证配置以及测试常见错误配置。
TLS 1.3(RFC 8446)是传输层安全协议的最新版本,在安全性和性能方面相比 TLS 1.2 有显著改进。它将握手延迟降低至 1-RTT(会话恢复时为 0-RTT),移除了过时的密码套件,并强制要求完美前向保密(PFS)。本技能涵盖在服务器上配置 TLS 1.3、验证配置以及测试常见错误配置。
| 密码套件 | 密钥交换 | 认证 | 加密 | 哈希 |
|---|---|---|---|---|
| TLS_AES_256_GCM_SHA384 | ECDHE/DHE | 证书 | AES-256-GCM | SHA-384 |
| TLS_AES_128_GCM_SHA256 | ECDHE/DHE | 证书 | AES-128-GCM | SHA-256 |
| TLS_CHACHA20_POLY1305_SHA256 | ECDHE/DHE | 证书 | ChaCha20-Poly1305 | SHA-256 |
npx claudepluginhub killvxk/cybersecurity-skills-zhConfigures TLS 1.3 on nginx, Apache, and Python apps; validates with openssl and testssl.sh. Useful for hardening transport security and disabling legacy TLS versions.
Configures TLS 1.3 on nginx, Apache, and Python apps; validates with openssl and testssl.sh. Useful for hardening transport security and disabling legacy TLS versions.
Configures TLS 1.3 on nginx, Apache, and Python ssl apps; validates with openssl and testssl.sh. Use for secure communications, compliance, and disabling legacy TLS.