Skip to content

Commit cf250d1

Browse files
committed
Time for that ASCII art logo
1 parent 5792223 commit cf250d1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

main.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ type NetLogonExResponse struct {
3939
DomainGUID [16]byte
4040
}
4141

42+
const banner = ` __ ____ _____ _____
43+
| | | \| _ | _ |___ ___ _____ ___ ___ _____
44+
| |__| | | | __| | . | | | . | |
45+
|_____|____/|__|__|__| |_|_|___|_|_|_|_|_|___|_|_|_|`
46+
4247
func main() {
4348
server := flag.String("server", "", "Comma separated list of DCs to connect to, use IP or full hostname - will try autodection if not supplied")
4449
dnsdomain := flag.String("dnsdomain", "", "Domain to connect to in DNS suffix format - will try autodection if not supplied")
@@ -59,7 +64,10 @@ func main() {
5964
maxstrategy := flag.String("maxstrategy", "fastest", "How to select servers if more are found than wanted (fastest, random)")
6065
parallel := flag.Int("parallel", 8, "How many connections per server to run in parallel")
6166

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

6472
flag.Parse()
6573

0 commit comments

Comments
 (0)