Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/hakluke/haktldextract
- Owner: hakluke
- Created: 2020-04-13T20:25:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-08T13:21:53.000Z (over 1 year ago)
- Last Synced: 2024-08-05T17:25:32.493Z (3 months ago)
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 133
- Watchers: 7
- Forks: 29
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - hakluke/haktldextract - Extract domains/subdomains from URLs en masse (Go)
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
```