Skip to content

Commit

Permalink
Time for that ASCII art logo
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed Feb 7, 2024
1 parent 5792223 commit cf250d1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion main.go
Expand Up @@ -39,6 +39,11 @@ type NetLogonExResponse struct {
DomainGUID [16]byte
}

const banner = ` __ ____ _____ _____
| | | \| _ | _ |___ ___ _____ ___ ___ _____
| |__| | | | __| | . | | | . | |
|_____|____/|__|__|__| |_|_|___|_|_|_|_|_|___|_|_|_|`

func main() {
server := flag.String("server", "", "Comma separated list of DCs to connect to, use IP or full hostname - will try autodection if not supplied")
dnsdomain := flag.String("dnsdomain", "", "Domain to connect to in DNS suffix format - will try autodection if not supplied")
Expand All @@ -59,7 +64,10 @@ func main() {
maxstrategy := flag.String("maxstrategy", "fastest", "How to select servers if more are found than wanted (fastest, random)")
parallel := flag.Int("parallel", 8, "How many connections per server to run in parallel")

log.Println("LDAP Nom Nom - quietly and anonymously bruteforce your way to Active Directory usernames")
fmt.Println(banner)
fmt.Println()
fmt.Println("IN SPACE NO ONE CAN HEAR YOU NOM NOM USERNAMES")
fmt.Println()

flag.Parse()

Expand Down

0 comments on commit cf250d1

Please sign in to comment.