Assess SSL/TLS server configurations using sslyze, a fast Python-based scanning library. This skill covers evaluating supported protocol versions (SSLv2/3, TLS 1.0-1.3), cipher suite strength, certificate chain validation, HSTS enforcement, OCSP stapling, and scanning for known vulnerabilities including Heartbleed, ROBOT, and session renegotiation weaknesses.
sslyze library (pip install sslyze)Create ServerScanRequest with ServerNetworkLocation specifying target hostname and port.
Use sslyze Scanner to queue and execute scans for all TLS check commands concurrently.
Evaluate accepted cipher suites, certificate validity, protocol versions, and vulnerability scan results.
Produce a JSON report with compliance findings and remediation recommendations.
JSON report with supported protocols, accepted cipher suites, certificate details, vulnerability results (Heartbleed, ROBOT), and HSTS status.