From cybersecurity-skills
Assesses SSL/TLS server configurations using sslyze to evaluate cipher suites, certificate chains, protocol versions, HSTS headers, and known vulnerabilities like Heartbleed and ROBOT.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cybersecurity-skills:performing-ssl-tls-security-assessmentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
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.
npx claudepluginhub costrict-plugins-repo/mukul975-anthropic-cybersecurity-skills-cybersecurity-skillsAssesses SSL/TLS server configurations using sslyze to evaluate cipher suites, certificate chains, protocol versions, HSTS headers, and known vulnerabilities like Heartbleed and ROBOT.
Assesses SSL/TLS server configurations using sslyze to evaluate cipher suites, certificate chains, protocol versions, HSTS headers, and known vulnerabilities like Heartbleed and ROBOT.
Assesses SSL/TLS server configurations using sslyze Python library, evaluating cipher suites, certificate chains, protocols, HSTS, and vulnerabilities like Heartbleed and ROBOT. For security audits and testing.