Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hakluke/haktldextract

Extract domains/subdomains from URLs en masse
https://github.com/hakluke/haktldextract

Last synced: 5 days ago
JSON representation

Extract domains/subdomains from URLs en masse

Awesome Lists containing this project

README

        

# haktldextract

Basic tool to extract domains/subdomains from URLs en masse

### Installation

```
go install github.com/hakluke/haktldextract@latest
```

### Usage
```
cat urls.txt | haktldextract
```

Options:
```
-t threads (number of concurrent threads to use, default is 16)
-s subdomains (dump subdomains instead of base domains)
```

Example:
```
cat urls.txt | haktldextract -s -t 16 | tee ./subs.txt
```