ice3man 2018-05-09 14:49:13 +05:30
commit 8144974a9d
1 changed files with 8 additions and 3 deletions

View File

@ -32,7 +32,7 @@ This will display help for the tool. Here are all the switches it supports.
| Flag | Description | Example |
|------|-------------|---------|
| -b | Use bruteforcing top find subdomains | ./subfinder -d example.com -b |
| -b | Use bruteforcing to find subdomains | ./subfinder -d example.com -b |
| -c | Don't show colored output | ./subfinder -c |
| -d | Domain to find subdomains for | ./subfinder -d example.com |
| -dl | List of domains to find subdomains for | ./subfinder -dl hosts.txt |
@ -55,14 +55,19 @@ This will display help for the tool. Here are all the switches it supports.
The installation is easy. Git clone the repo and run go build.
```bash
go get github.com/ice3man543/subfinder
go get github.com/Ice3man543/subfinder
```
## Upgrading
If you wish to upgrade the package you can use:
```bash
go get -u github.com/Ice3man543/subfinder
```
## Running in a Docker Container
Git clone the repo, then build and run subfinder in a container with the following commands
- Clone the repo using `git clone https://github.com/ice3man543/subfinder.git`
- Clone the repo using `git clone https://github.com/Ice3man543/subfinder.git`
- Build your docker container
```bash
docker build -t subfinder .