An open API service indexing awesome lists of open source software.

https://github.com/devanshbatham/getsan

A utility to fetch and display dns names from the SSL/TLS cert data
https://github.com/devanshbatham/getsan

Last synced: about 1 year ago
JSON representation

A utility to fetch and display dns names from the SSL/TLS cert data

Awesome Lists containing this project

README

          


getsan


A utility to fetch and display dns names from the SSL/TLS cert data


🏗️ Installation
⛏️ Usage


![getsan](https://github.com/devanshbatham/getsan/blob/main/static/banner.png?raw=true)

# Installation
```sh
go install github.com/devanshbatham/getsan@latest
```

# Usage

- Fetches and displays dns names from the SSL/TLS cert data
- Uses concurrency for efficient and fast lookups (e.g. `-c 200`)

```sh
⚓ echo "cdn.syndication.twitter.com" | getsan | jq

{
"domain": "cdn.syndication.twitter.com",
"common_name": "syndication.twitter.com",
"org": [
"Twitter, Inc."
],
"dns_names": [
"syndication.twitter.com",
"syndication.twimg.com",
"cdn.syndication.twitter.com",
"cdn.syndication.twimg.com",
"syndication-o.twitter.com",
"syndication-o.twimg.com"
]
}
```