githubEdit

SSL/TLS

Modern Testing Tools

# Comprehensive TLS testing (recommended)
# testssl.sh - https://github.com/drwetter/testssl.sh
testssl.sh https://example.com

# With specific checks
testssl.sh --vulnerable https://example.com
testssl.sh --cipher-per-proto https://example.com

# SSLyze - Python-based
# https://github.com/nabla-c0d3/sslyze
sslyze --regular example.com:443

# tlsx - Fast TLS prober
# https://github.com/projectdiscovery/tlsx
tlsx -u example.com -port 443

# Nmap SSL scripts
nmap --script ssl-* -p 443 example.com

2025 Best Practices

Quick Vulnerability Checks

DROWN

TLS_FALLBACK_SCSV

BEAST

LUCKY13

Sweet32

Logjam

SSLv2 Support

SSLv3 Support

Cipher suites

Secure renegotiation

CRIME

BREACH

Heartbleed

Change cipher spec injection

Cipher order enforcement

Additional Vulnerabilities

POODLE

ROBOT

Certificate Issues

Resources

Last updated

Was this helpful?