Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theblackturtle/wildcheck
A simple tool to detect wildcards domain based on Amass's wildcards detector.
https://github.com/theblackturtle/wildcheck
Last synced: 21 days ago
JSON representation
A simple tool to detect wildcards domain based on Amass's wildcards detector.
- Host: GitHub
- URL: https://github.com/theblackturtle/wildcheck
- Owner: theblackturtle
- Created: 2020-01-30T10:11:17.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T15:04:47.000Z (over 3 years ago)
- Last Synced: 2024-08-05T17:25:08.526Z (4 months ago)
- Language: Go
- Homepage:
- Size: 75.2 KB
- Stars: 64
- Watchers: 6
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - theblackturtle/wildcheck - A simple tool to detect wildcards domain based on Amass's wildcards detector. (Go)
README
# wildcheck
A simple tool to detect wildcards domain based on Amass's wildcards detector.
## Installation:
```
GO111MODULE=on go get -u github.com/theblackturtle/wildcheck
```## Usage
```
Usage of wildcheck:
-d string
Main domain
-i string
Subdomains list. Default is stdin (default "-")
-rate int
Max DNS Limit per second (default 20000)
-t int
Threads (default 10)
```## Example commands
#### Input from Stdin
```
cat subdomains.lst | wildcheck -t 10 -d example.com
```#### Input from file
```
wildcheck -i subdomains.lst -t 10 -d example.com
```## Credits:
Based on the work on Amass project by @caffix.