Skip to content

Commit

Permalink
Fix version in code and readme, update THANKS
Browse files Browse the repository at this point in the history
  • Loading branch information
OJ committed Mar 1, 2017
1 parent 4ea33f8 commit 2c3a57c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Gobuster v1.2 (OJ Reeves @TheColonial)
Gobuster v1.3 (OJ Reeves @TheColonial)
======================================

Gobuster is a tool used to brute-force:
Expand Down Expand Up @@ -97,7 +97,7 @@ Default options looks like this:
```
$ gobuster -u http://buffered.io/ -w words.txt
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dir
[+] Url/Domain : http://buffered.io/
Expand All @@ -114,7 +114,7 @@ Default options with status codes disabled looks like this:
```
$ gobuster -u http://buffered.io/ -w words.txt -n
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dir
[+] Url/Domain : http://buffered.io/
Expand All @@ -132,7 +132,7 @@ Verbose output looks like this:
```
$ gobuster -u http://buffered.io/ -w words.txt -v
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dir
[+] Url/Domain : http://buffered.io/
Expand All @@ -151,7 +151,7 @@ Example showing content length:
```
$ gobuster -u http://buffered.io/ -w words.txt -l
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dir
[+] Url/Domain : http://buffered.io/
Expand Down Expand Up @@ -183,7 +183,7 @@ Normal sample run goes like this:
```
$ gobuster -m dns -w subdomains.txt -u google.com
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dns
[+] Url/Domain : google.com
Expand Down Expand Up @@ -214,7 +214,7 @@ Show IP sample run goes like this:
```
$ gobuster -m dns -w subdomains.txt -u google.com -i
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dns
[+] Url/Domain : google.com
Expand Down Expand Up @@ -246,7 +246,7 @@ Base domain validation warning when the base domain fails to resolve. This is a
```
$ gobuster -m dns -w subdomains.txt -u yp.to -i
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dns
[+] Url/Domain : yp.to
Expand All @@ -261,7 +261,7 @@ Wildcard DNS is also detected properly:
```
$ gobuster -w subdomainsbig.txt -u doesntexist.com -m dns
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dns
[+] Url/Domain : doesntexist.com
Expand All @@ -276,7 +276,7 @@ If the user wants to force processing of a domain that has wildcard entries, use
```
$ gobuster -w subdomainsbig.txt -u doesntexist.com -m dns -fw
Gobuster v1.2 OJ Reeves (@TheColonial)
Gobuster v1.3 OJ Reeves (@TheColonial)
=====================================================
[+] Mode : dns
[+] Url/Domain : doesntexist.com
Expand Down
3 changes: 3 additions & 0 deletions THANKS
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
@0x42424242 - initial DNS support
@averagesecurityguy - quiet mode support
@g0tmi1k - content length, wordlist and command line parsing fixes
@gehaxelt - DIR mode UUID wildcard detection
@justinsteven - HTTP basic auth support
@kevinnz - custom user agent support
@knapsy - saving output to file, and CNAME resolution for DNS mode
@rverton - CLI flag to skip SSL verification
@viaMorgoth - base domain validation for DNS mode
@UID1K - initial DNS wildcard check support
@Ne0nd0g - STDIN support for wordlists
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ func Banner(state *State) {
}

fmt.Println("")
fmt.Println("Gobuster v1.2 OJ Reeves (@TheColonial)")
fmt.Println("Gobuster v1.3 OJ Reeves (@TheColonial)")
Ruler(state)
}

Expand Down

0 comments on commit 2c3a57c

Please sign in to comment.