https://github.com/devanshbatham/realm
A utility for recursively traversing SSL/TLS certificates for collecting DNS names
https://github.com/devanshbatham/realm
Last synced: about 1 year ago
JSON representation
A utility for recursively traversing SSL/TLS certificates for collecting DNS names
- Host: GitHub
- URL: https://github.com/devanshbatham/realm
- Owner: devanshbatham
- License: other
- Created: 2023-08-26T14:40:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-26T15:10:33.000Z (almost 3 years ago)
- Last Synced: 2025-03-29T05:12:18.459Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 264 KB
- Stars: 45
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
realm
A utility for recursively traversing SSL/TLS certificates for collecting DNS names

# Install
```sh
go install github.com/devanshbatham/realm@v0.0.2
```
# Usage
```sh
(~) >>> realm -d example.com -n 2
🔍 Traversing example.com: 8 domains found
example.com
example.org
www.example.com
www.example.edu
www.example.net
www.example.org
example.net
example.edu
🔍 Traversing example.org: 8 domains found
example.com
example.org
www.example.com
www.example.edu
www.example.net
www.example.org
example.net
example.edu
🔍 Traversing www.example.com: 8 domains found
example.org
www.example.com
www.example.edu
www.example.net
www.example.org
example.net
example.edu
example.com
🔍 Traversing www.example.edu: 8 domains found
www.example.org
example.net
example.edu
example.com
example.org
www.example.com
www.example.edu
www.example.net
...
...
```