Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/netevert/delator
Golang-based subdomain miner leveraging certificate transparency logs
https://github.com/netevert/delator
certificate-transparency-abuse certificate-transparency-logs go golang penetration-testing pentest-tool pentesting recon reconnaissance subdomain-scanner subdomainlist subdomains threat-intelligence threatintel
Last synced: 3 months ago
JSON representation
Golang-based subdomain miner leveraging certificate transparency logs
- Host: GitHub
- URL: https://github.com/netevert/delator
- Owner: netevert
- License: mit
- Created: 2018-03-31T22:58:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-08T06:38:14.000Z (over 1 year ago)
- Last Synced: 2024-10-15T14:22:31.061Z (3 months ago)
- Topics: certificate-transparency-abuse, certificate-transparency-logs, go, golang, penetration-testing, pentest-tool, pentesting, recon, reconnaissance, subdomain-scanner, subdomainlist, subdomains, threat-intelligence, threatintel
- Language: Go
- Homepage:
- Size: 10.7 MB
- Stars: 77
- Watchers: 4
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-hacking-lists - netevert/delator - Golang-based subdomain miner leveraging certificate transparency logs (Go)
README
![Icon](https://github.com/netevert/delator/blob/master/docs/icon.png)
=======
[![baby-gopher](https://raw.githubusercontent.com/drnic/babygopher-site/gh-pages/images/babygopher-logo-small.png)](http://www.babygopher.org)
[![GitHub release](https://img.shields.io/github/release/netevert/delator.svg?style=flat-square)](https://github.com/netevert/delator/releases)
[![license](https://img.shields.io/github/license/netevert/delator.svg?style=flat-square)](https://github.com/netevert/delator/blob/master/LICENSE)
[![Go Report Card](https://goreportcard.com/badge/github.com/netevert/delator?style=flat-square)](https://goreportcard.com/report/github.com/netevert/delator)DELATOR (*lat.* **informer**) is a tool to perform subdomain enumeration and initial reconnaissance through the abusing of certificate transparency (CT) logs. It expands on the original work done by [Sheila A. Berta](https://github.com/UnaPibaGeek) with her [CTFR](https://github.com/UnaPibaGeek/ctfr) tool and leverages the speed and power of [Go](https://golang.org/).
![demo](https://github.com/netevert/delator/blob/master/docs/demo.gif)
Using DELATOR is as simple as running:
./delator -d facebook.com -s crt
To run DELATOR a domain (_-d_) and search source (_-s_) must always be specified.
DELATOR can also be instructed to resolve any subdomains found, giving a first indication of any live sites:
./delator -d facebook.com -s crt -a
DELATOR can also mine subdomains directly from CT logs for storage in a local database:
./delator -p
Once subdomains have been pulled from CT logs, queries can be made directly to the local database just by changing the search source from "_crt_" to "_db_":
./delator.exe -d starbucks.com -s db
Installation
============
There are two ways to install DELATOR on your system:1. Downloading the pre-compiled binaries for your platform from the [latest release page](https://github.com/netevert/delator/releases) and extracting in a directory of your choosing.
2. Downloading and compiling the source code yourself by running the following commands:
- ```go get github.com/netevert/delator```
- `cd /$GOPATH/src/github.com/netevert/delator`
- `go build`License
=======Distributed under the terms of the [MIT](http://www.linfo.org/mitlicense.html) license, DELATOR is free and open
source software written and maintained with ❤ by NetEvert.Versioning
==========This project adheres to [Semantic Versioning](https://semver.org/).