We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c85d941 commit b54c55cCopy full SHA for b54c55c
src/o365/userEnum.go
@@ -22,6 +22,10 @@ func (options *Options) UserEnum() []string {
22
go func(i int) {
23
defer wg.Done()
24
for email := range queue {
25
+ if len(strings.Split(email, "@")) == 1 {
26
+ options.Log.Fail(email + " is not an email")
27
+ continue
28
+ }
29
domain := strings.Split(email, "@")[1]
30
// If we didn't already checked the domain
31
mux.Lock()
0 commit comments