From 7f09fc0c14ac9e67ec9f0bcae77729320e2f1368 Mon Sep 17 00:00:00 2001 From: sho-luv Date: Tue, 7 May 2019 16:51:10 -0700 Subject: [PATCH] Fixed the examples option There is a misleading -h option printed in the examples. However, the real option is -t. I was like this doesn't work until I realized what was going on. --- msmailprobe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msmailprobe.go b/msmailprobe.go index 5fed341..ae9517d 100644 --- a/msmailprobe.go +++ b/msmailprobe.go @@ -151,7 +151,7 @@ func main() { } if examplesCommand.Parsed() { - fmt.Println("./msmailprobe identify -h mail.target.com") + fmt.Println("./msmailprobe identify -t mail.target.com") fmt.Println("./msmailprobe userenum --onprem -t mail.target.com -U users.txt -o validusers.txt --threads 20") fmt.Println("./msmailprobe userenum --onprem -t mail.target.com -u admin") fmt.Println("./msmailprobe userenum --o365 -E emailList.txt -o validemails.txt --threads 50")