-
Notifications
You must be signed in to change notification settings - Fork 0
/
brute.go
176 lines (147 loc) · 4.13 KB
/
brute.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package main
import "fmt"
import "sync"
import "net"
import "bytes"
import "time"
import "flag"
import "math"
import "os"
import "bufio"
import "io"
// config
var concurrency int = 200
var timeout int = 1
var dns string = "8.8.8.8:53"
var error int = 0
var success int = 0
var cost int = 0
func status(name string, done int, total int) {
fmt.Printf("%s\t [%.2f%%] [cost: %ds, success: %d, error: %d]\r", name, float32(done) / float32(total) * 100, cost, success, error)
}
func generator(target []byte, alpha []byte, length int, ch chan []byte) {
count := 0
total := int(math.Pow(float64(len(alpha)), float64(length)))
startTime := time.Now().Unix()
data := make([]int, length)
for {
pos := length - 1
result := make([]byte, length + len(target) + 1)
for i, c := range data {
result[i] = alpha[c]
}
result[len(data)] = '.'
for i, c := range target {
result[len(data) + 1 + i] = c
}
count += 1
if count % 0x30 == 0 {
cost = int(time.Now().Unix() - startTime)
go status(string(result), count, total)
}
ch <- []byte(result)
data[pos] += 1
for data[pos] == len(alpha) {
if pos == 0 {
close(ch)
return
}
data[pos] = 0
data[pos - 1] += 1
pos -= 1
}
}
}
func query(name []byte) bool {
conn, err := net.Dial("udp", dns)
if err != nil {
return false
}
defer conn.Close()
buffer := new(bytes.Buffer)
// ID
buffer.WriteByte('\x00')
buffer.WriteByte('\x00')
// FLAGS
buffer.WriteByte('\x01')
buffer.WriteByte('\x00')
// QDCount, almost server never support multiple query in one record
buffer.WriteByte('\x00')
buffer.WriteByte('\x01')
//buffer.WriteByte(byte(len(questions)))
// ANCount
buffer.WriteByte('\x00')
buffer.WriteByte('\x00')
// NSCount
buffer.WriteByte('\x00')
buffer.WriteByte('\x00')
// ARCount
buffer.WriteByte('\x00')
buffer.WriteByte('\x00')
// QName
for _, n := range bytes.Split(name, []byte{'.'}) {
buffer.WriteByte(byte(len(n)))
buffer.Write(n)
}
buffer.WriteByte('\x00')
// QType A
buffer.WriteByte('\x00')
buffer.WriteByte('\x01')
// QClass IN
buffer.WriteByte('\x00')
buffer.WriteByte('\x01')
conn.Write(buffer.Bytes())
resp := make([]byte, 8)
conn.SetReadDeadline(time.Now().Add(time.Duration(timeout) * time.Second))
_, err = conn.Read(resp)
if err != nil {
error += 1
return false
}
return resp[3] & 0xF == 0 && resp[7] != 0
}
func brute(target []byte, alphabet []byte, length int, file io.Writer) {
source := make(chan []byte)
go generator(target, alphabet, length, source)
wg := new(sync.WaitGroup)
for i := 0; i < concurrency; i++ {
wg.Add(1)
go func () {
for name := range source {
if query(name) {
fmt.Fprintln(file, string(name))
success += 1
}
}
wg.Done()
}()
}
wg.Wait()
}
func main() {
var target, alphabet, outFile string
var length int
flag.StringVar(&target, "t", "", "Target You Want To Bruteforce")
flag.StringVar(&alphabet, "a", "abcdefghijklmnopqrstuvwxyz", "Brute Alphabet")
flag.IntVar(&length, "l", 3, "Sub Domain Name Length")
flag.StringVar(&outFile, "o", "output.txt", "Output File")
flag.Parse()
if len(target) == 0 {
flag.PrintDefaults()
return
}
file, err := os.Create(outFile)
if err != nil {
fmt.Println("A error occured while open", outFile)
return
}
defer file.Close()
fileBufer := bufio.NewWriter(file)
brute([]byte(target), []byte(alphabet), length, fileBufer)
fileBufer.Flush()
fmt.Printf("\033[K")
fmt.Println("Total: ", math.Pow(float64(len(alphabet)), float64(length)))
fmt.Println("Result: ", success)
fmt.Println("Error: ", success, "timeout")
fmt.Println("cost: ", cost, "seconds")
}