| Crates.io | tlsinspect |
| lib.rs | tlsinspect |
| version | 0.2.0 |
| created_at | 2026-01-02 17:56:29.295838+00 |
| updated_at | 2026-01-03 21:08:28.390743+00 |
| description | A CLI for inspecting TLS certificate chains and IP overrides. |
| homepage | |
| repository | https://github.com/praveenkulkarni1996/tlsinspect |
| max_upload_size | |
| id | 2018953 |
| size | 33,595 |
A command-line tool for inspecting TLS/SSL certificates and connections.
git clone https://github.com/praveenkulkarni1996/tlsinspect.git
cd tlsinspect
cargo build --release
The binary will be available at target/release/tlsinspect.
tlsinspect [OPTIONS] <HOST>
<HOST>: The hostname for SNI and validation (e.g., www.google.com)--ip <IP>: Optional specific IP to connect to (overrides DNS resolution)--port <PORT>: Port to connect to (default: 443)# Inspect a certificate from a domain
tlsinspect example.com
# Connect to a specific IP while using example.com for SNI
tlsinspect example.com --ip 93.184.216.34
# Connect to a non-standard port
tlsinspect example.com --port 8443
This project is licensed under the MIT License - see the LICENSE.md file for details.
Contributions are welcome! Please feel free to submit a Pull Request.