mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
412 B
Plaintext
22 lines
412 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sslscan
|
|
|
|
> Check SSL/TLS protocols and ciphers supported by a server.
|
|
> More information: <https://manned.org/sslscan>.
|
|
|
|
- Test a server on port 443:
|
|
|
|
`sslscan {{example.com}}`
|
|
|
|
- Test a specified port:
|
|
|
|
`sslscan {{example.com}}:{{465}}`
|
|
|
|
- Show certificate information:
|
|
|
|
`sslscan --show-certificate {{example.com}}`
|