Skip to content

Commit

Permalink
Update usage for dns module (#31)
Browse files Browse the repository at this point in the history
Update usage for dns module
  • Loading branch information
phra committed Jul 13, 2019
2 parents 67e8af9 + 0051a98 commit e9fa05e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXAMPLES:
1. Dir mode:
rustbuster dir -u http://localhost:3000/ -w examples/wordlist -e php
2. Dns mode:
rustbuster dns -u google.com -w examples/wordlist
rustbuster dns -d google.com -w examples/wordlist
3. Vhost mode:
rustbuster vhost -u http://localhost:3000/ -w examples/wordlist -d test.local -x "Hello"
4. Fuzz mode:
Expand Down Expand Up @@ -110,7 +110,7 @@ OPTIONS:
-w, --wordlist <wordlist>... Sets the wordlist
EXAMPLE:
rustbuster dns -u google.com -w examples/wordlist
rustbuster dns -d google.com -w examples/wordlist
```

### `vhost` usage
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ fn main() {
1. Dir mode:
rustbuster dir -u http://localhost:3000/ -w examples/wordlist -e php
2. Dns mode:
rustbuster dns -u google.com -w examples/wordlist
rustbuster dns -d google.com -w examples/wordlist
3. Vhost mode:
rustbuster vhost -u http://localhost:3000/ -w examples/wordlist -d test.local -x \"Hello\"
4. Fuzz mode:
Expand All @@ -77,7 +77,7 @@ fn main() {
.subcommand(set_wordlist_args(set_dns_args(set_common_args(SubCommand::with_name("dns"))))
.about("A/AAAA entries enumeration mode")
.after_help("EXAMPLE:
rustbuster dns -u google.com -w examples/wordlist"))
rustbuster dns -d google.com -w examples/wordlist"))
.subcommand(set_wordlist_args(set_vhost_args(set_http_args(set_common_args(SubCommand::with_name("vhost")))))
.about("Virtual hosts enumeration mode")
.after_help("EXAMPLE:
Expand Down

0 comments on commit e9fa05e

Please sign in to comment.