SSL cert check
Below are the different ways to check the SSL cert and its validity remotely
NMAP is used to check the port and services running on the remote machine
$nmap --script ssl-cert -p PORT URL
The OpenSSL program is a command-line tool for using the various cryptography functions of OpenSSL's crypto library from the shell. It can be used for
- Creation and management of private keys, public keys and parameters
- Public key cryptographic operations
- Creation of X.509 certificates, CSRs and CRLs
- Calculation of Message Digests
- Encryption and Decryption with Ciphers
- SSL/TLS Client and Server Tests
- Handling of S/MIME signed or encrypted mail
- Time Stamp requests, generation and verification
openssl s_client -showcerts -connect URL:PORT
Comments
Post a Comment