-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
324 lines (280 loc) · 7.07 KB
/
main.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
package main
import (
"crypto/tls"
"flag"
"fmt"
"log"
"net/http"
"net/http/cookiejar"
"net/url"
"os"
"sync"
"time"
"golang.org/x/net/http2"
)
const (
DEFALT_DOMAIN = "http://localhost:8000"
DEFALUT_USER_AGENT = "gohakai"
REMOTE_CONF = ".gohakai.config.yml"
HAKAI_BIN_NAME = "gohakai"
MODE_NORMAL = "default"
MODE_NODE = "node"
MODE_NODE_LOCAL = "node-local"
)
var client http.Client
var Version string
var ExecMode string = MODE_NORMAL
var GitCommit string
var PathCount map[string]uint32
var PathTime map[string]time.Duration
var ok chan bool
var verbose bool
var m sync.Mutex
type Worker struct {
Client http.Client
Config *Config
ExVarOffset map[string]int
}
func hakai(c http.Client, config *Config, offset map[string]int) {
u, err := url.Parse(config.Domain)
if err != nil {
log.Fatal(err)
}
queryParams := map[string]string{}
for k, v := range config.QueryParams {
vv := ReplaceNames(v, offset)
queryParams[k] = vv
}
headers := map[string]string{}
for k, v := range config.Headers {
headers[k] = ReplaceNames(v, offset)
}
cookieJar, _ := cookiejar.New(nil)
c.Jar = cookieJar
attacker := Attacker{
Client: &c,
Url: u,
Gzip: config.Gzip,
UserAgent: config.UserAgent,
QueryParams: &queryParams,
Headers: &headers,
ExVarOffset: offset,
}
for _, action := range config.Actions {
attacker.Action = action
attacker.Attack()
}
}
func worker(id int, wg *sync.WaitGroup, limiter chan Worker) {
for {
ret := <-limiter
hakai(ret.Client, ret.Config, ret.ExVarOffset)
wg.Done()
}
}
func setupNode(configFile string) {
var wg sync.WaitGroup
var i, allProcs int
for key := range NODES {
allProcs += NODES[key].Proc
}
// scp when nodes option
for key := range NODES {
if NODES[key].Host == "localhost" {
go func(_n Node, o, p int) {
dumpVars(GOB_FILE, o, _n.Proc, p)
}(NODES[key], i, allProcs)
} else {
wg.Add(1)
go func(_n Node, o, p int) {
srcGob, err := os.CreateTemp(os.TempDir(), fmt.Sprintf("%s.node.%s", GOB_FILE, _n.Host))
if err != nil {
log.Println("CreateTemp() error:", err)
return
}
defer os.Remove(srcGob.Name())
defer wg.Done()
// scp for gohakai (self-propagation!!)
// TODO: cofigurable? remote is same architecture, now.
src := HAKAI_BIN_NAME
dst := HAKAI_BIN_NAME
if err := _n.Scp(src, dst); err != nil {
log.Println("scp error:", err)
return
}
// config file
if err := _n.Scp(configFile, REMOTE_CONF); err != nil {
log.Println("scp error:", err)
return
}
// all vars file
dst = GOB_FILE
dumpVars(srcGob.Name(), o, _n.Proc, p)
if err := _n.Scp(srcGob.Name(), dst); err != nil {
log.Println("scp error:", err)
return
}
}(NODES[key], i, allProcs)
}
i += NODES[key].Proc
}
wg.Wait()
fmt.Println("setup node end")
}
func attackNode(configFile string, c chan string, wg *sync.WaitGroup) {
for key := range NODES {
wg.Add(1)
if NODES[key].Host == "localhost" {
go func(node Node) {
if err := node.LocalAttack(configFile, c); err != nil {
log.Println("local attack:", err, node)
}
}(NODES[key])
} else {
go func(node Node) {
if err := node.RemoteAttack(c); err != nil {
log.Println("remote attack:", err, node)
}
}(NODES[key])
}
}
}
func localMain(loop, maxScenario, maxRequest, totalDuration int, config *Config, stats *Statistics) {
var wg sync.WaitGroup
var wgIndicator sync.WaitGroup
redirectFunc := func(req *http.Request, via []*http.Request) error {
if len(via) > 10 {
return fmt.Errorf("%d consecutive requests(redirects)", len(via))
}
if len(via) == 0 {
// No redirects
return nil
}
// mutate the subsequent redirect requests with the first Header
for key, val := range via[0].Header {
req.Header[key] = val
referer := req.Referer()
checkUrl, err := url.Parse(referer)
if err != nil {
log.Printf("url.Parse() Error: %v\n", err)
return err
}
req.URL.RawQuery = checkUrl.RawQuery
}
return nil
}
if config.HTTPVersion == 2 {
client = http.Client{
Transport: &http2.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: false,
},
},
CheckRedirect: redirectFunc,
}
} else {
client = http.Client{
Transport: &http.Transport{
MaxIdleConnsPerHost: maxRequest, // default is 2
},
Timeout: time.Duration(config.Timeout) * time.Second, // default is 30
CheckRedirect: redirectFunc,
}
}
limiter := make(chan Worker, maxRequest)
stats.MaxRequest = maxRequest
stats.StartTime = time.Now()
// exec worker
for num := 0; num < maxRequest; num++ {
go worker(num, &wg, limiter)
}
// exec indicator & total duration
ok = make(chan bool)
indicatorFin := make(chan bool)
go Indicator(indicatorFin, &wgIndicator)
wgIndicator.Add(1)
if totalDuration != 0 {
go stats.PrintAfterDuration(totalDuration)
}
// attack
for i := 0; i < loop*maxScenario; i++ {
wg.Add(1)
offset := map[string]int{}
for k := range EXVARS {
offset[k] = EXVARS[k].Offset
EXVARS[k].Offset += 1
if EXVARS[k].Offset >= len(EXVARS[k].Value) {
EXVARS[k].Offset = 0
}
}
w := Worker{Client: client, Config: config, ExVarOffset: offset}
limiter <- w
}
// wait all request & response
wg.Wait()
indicatorFin <- true
wgIndicator.Wait()
}
func clean() {
if _, err := os.Stat(GOB_FILE); err == nil {
os.Remove(GOB_FILE)
}
if _, err := os.Stat(REMOTE_CONF); err == nil {
os.Remove(REMOTE_CONF)
}
if ExecMode == MODE_NODE {
os.Remove(HAKAI_BIN_NAME)
}
}
func usage() {
fmt.Fprintln(os.Stderr, "gohakai - Internet Hakai with Go")
fmt.Fprintf(os.Stderr, "version:%s, id:%s\n\n", Version, GitCommit)
fmt.Fprintln(os.Stderr, "Usage: gohakai [option] config.yaml")
flag.PrintDefaults()
os.Exit(0)
}
func main() {
if MODE_NODE == os.Getenv("GOHAKAI") {
ExecMode = MODE_NODE
} else if MODE_NODE_LOCAL == os.Getenv("GOHAKAI") {
ExecMode = MODE_NODE_LOCAL
}
config := Config{}
statistics := Statistics{}
statistics.Config = &config
var maxScenario, maxRequest, loop, totalDuration int
// command line option
flag.IntVar(&maxScenario, "s", 1, "max scenario")
flag.IntVar(&maxRequest, "c", 0, "max concurrency requests")
flag.IntVar(&loop, "n", 1, "scenario exec N-loop")
flag.IntVar(&totalDuration, "d", 0, "total duration")
flag.BoolVar(&verbose, "verbose", false, "verbose mode")
flag.Parse()
args := flag.Args()
if len(args) < 1 {
usage()
}
configFile := args[0]
if err := config.Load(configFile); err != nil {
usage()
}
if maxRequest == 0 {
maxRequest = maxScenario
}
PathCount = map[string]uint32{}
PathTime = map[string]time.Duration{}
if len(config.Nodes) >= 1 && ExecMode == MODE_NORMAL {
statChan := make(chan string)
var statWg sync.WaitGroup
setupNode(configFile)
go statistics.Collector(statChan, &statWg)
attackNode(configFile, statChan, &statWg)
statWg.Wait()
} else {
localMain(loop, maxScenario, maxRequest, totalDuration, &config, &statistics)
finishTime := time.Now()
statistics.Delta = finishTime.Sub(statistics.StartTime)
}
statistics.Print()
clean()
}