-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update authors and include @rmaksimov
- Loading branch information
1 parent
a832fd8
commit 7a5a262
Showing
1 changed file
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -447,9 +447,9 @@ func connect(c *cli.Context) error { | |
|
||
if mapiURL == "" { //try RPC | ||
if rawAutodiscover != "" { | ||
resp, _, config.RPCURL, config.RPCMailbox, config.RPCNtlm, err = autodiscover.GetRPCHTTP(config.Email, url, resp) | ||
resp, _, config.RPCURL, config.RPCMailbox, config.RPCNtlm, err = autodiscover.GetRPCHTTP(config.Email, url, resp) | ||
} else { | ||
resp, rawAutodiscover, config.RPCURL, config.RPCMailbox, config.RPCNtlm, err = autodiscover.GetRPCHTTP(config.Email, url, resp) | ||
resp, rawAutodiscover, config.RPCURL, config.RPCMailbox, config.RPCNtlm, err = autodiscover.GetRPCHTTP(config.Email, url, resp) | ||
} | ||
|
||
if err != nil { | ||
|
@@ -1128,15 +1128,25 @@ func main() { | |
|
||
app.Name = "ruler" | ||
app.Usage = "A tool to abuse Exchange Services" | ||
app.Version = "2.2.2" | ||
app.Author = "Etienne Stalmans <[email protected]>, @_staaldraad" | ||
app.Version = "2.4.0" | ||
app.Authors = []cli.Author{ | ||
cli.Author{ | ||
Name: "Etienne Stalmans", | ||
Email: "@_staaldraad", | ||
}, | ||
cli.Author{ | ||
Name: "Roman Maksimov", | ||
Email: "@rmaksimov", | ||
}, | ||
} | ||
app.Description = ` _ | ||
_ __ _ _| | ___ _ __ | ||
| '__| | | | |/ _ \ '__| | ||
| | | |_| | | __/ | | ||
|_| \__,_|_|\___|_| | ||
A tool by @_staaldraad from @sensepost to abuse Exchange Services.` | ||
A tool by @_staaldraad and @sensepost to abuse Exchange Services. | ||
` | ||
|
||
app.Flags = []cli.Flag{ | ||
cli.StringFlag{ | ||
|