forked from ropnop/kerbrute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserenum.go
93 lines (80 loc) · 2.18 KB
/
userenum.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package cmd
import (
"bufio"
"os"
"sync"
"sync/atomic"
"time"
"github.com/ropnop/kerbrute/util"
"github.com/spf13/cobra"
)
var userEnumCommand = &cobra.Command{
Use: "userenum [flags] <username_wordlist>",
Short: "Enumerate valid domain usernames via Kerberos",
Long: `Will enumerate valid usernames from a list by constructing AS-REQs to requesting a TGT from the KDC.
If no domain controller is specified, the tool will attempt to look one up via DNS SRV records.
A full domain is required. This domain will be capitalized and used as the Kerberos realm when attempting the bruteforce.
Valid usernames will be displayed on stdout.`,
Args: cobra.ExactArgs(1),
PreRun: setupSession,
Run: userEnum,
}
func init() {
rootCmd.AddCommand(userEnumCommand)
}
func userEnum(cmd *cobra.Command, args []string) {
usernamelist := args[0]
usersChan := make(chan string, threads)
defer cancel()
var wg sync.WaitGroup
wg.Add(threads)
var scanner *bufio.Scanner
if usernamelist != "-" {
file, err := os.Open(usernamelist)
if err != nil {
logger.Log.Error(err.Error())
return
}
defer file.Close()
scanner = bufio.NewScanner(file)
} else {
scanner = bufio.NewScanner(os.Stdin)
}
for i := 0; i < threads; i++ {
go makeEnumWorker(ctx, usersChan, &wg)
}
start := time.Now()
Scan:
for scanner.Scan() {
select {
case <-ctx.Done():
break Scan
default:
usernameline := scanner.Text()
username, err := util.FormatUsername(usernameline)
if err != nil {
logger.Log.Debugf("[!] %q - %v", usernameline, err.Error())
continue
}
time.Sleep(time.Duration(delay) * time.Millisecond)
usersChan <- username
}
}
close(usersChan)
wg.Wait()
finalCount := atomic.LoadInt32(&counter)
finalSuccess := atomic.LoadInt32(&successes)
logger.Log.Infof("Done! Tested %d usernames (%d valid) in %.3f seconds", finalCount, finalSuccess, time.Since(start).Seconds())
if err := scanner.Err(); err != nil {
logger.Log.Error(err.Error())
}
// result, err := kSession.TestUsername(usernamelist)
// if result {
// fmt.Printf("[+] %v exists!\n", usernamelist)
// }
// if err != nil {
// fmt.Println("erro!")
// fmt.Printf(err.Error())
// }
// fmt.Println("Done!")
}