Skip to content

Commit

Permalink
update authors and include @rmaksimov
Browse files Browse the repository at this point in the history
  • Loading branch information
staaldraad committed May 3, 2020
1 parent a832fd8 commit 7a5a262
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions ruler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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{
Expand Down

0 comments on commit 7a5a262

Please sign in to comment.