LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

ssl-checker

Collect and analyze SSL/TLS certificate information

TLDR

Check SSL certificate for a host
$ ssl_checker -H [github.com:443]
copy
Output certificate info as JSON
$ ssl_checker -H [example.com] -j
copy
Analyze host for security vulnerabilities
$ ssl_checker -H [example.com] -a
copy

SYNOPSIS

ssl_checker [-H host [host...]] [-f file] [options]

DESCRIPTION

ssl-checker is a Python script that collects SSL/TLS information from hosts. It can check certificate expiration dates, issuer details, and cipher suites. It supports security vulnerability analysis, SOCKS proxy connections, and exports results in JSON, CSV, or HTML formats.

PARAMETERS

-H HOST

Host(s) to check, in host:port format.
-f FILE
File containing hostnames to check.
-j
Output results in JSON format.
-a
Analyze host for security vulnerabilities.
-c
Output results in CSV format.
-S
Output summary only.
-x
Export results as HTML file.
-J
Export JSON individually per host.
-v
Enable verbose output for troubleshooting.
-t TIMEOUT
Connection timeout in seconds.
-s HOST:PORT
Use a SOCKS proxy for connections.

HISTORY

ssl-checker was created by narbehaj and is written in Python.

SEE ALSO

openssl(1), testssl(1)

Copied to clipboard
Kai