-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
68 lines (55 loc) · 1.38 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
package main
import (
"encoding/json"
"fmt"
"net/http"
"github.com/attacker/types"
util "github.com/attacker/utils"
"github.com/gorilla/mux"
)
func launchAttack(w http.ResponseWriter, r *http.Request) {
var ac types.AttackConfig
var err error
var name string
params, ok := r.URL.Query()["tool"]
if !ok || len(params) != 1 {
name = "metasploit"
} else {
name = params[0]
}
if r.Method != "POST" {
msg := fmt.Sprintf("Invalid request method: %s", r.Method)
util.LogPrint(w, msg, http.StatusBadRequest)
return
}
decoder := json.NewDecoder(r.Body)
defer r.Body.Close()
err = decoder.Decode(&ac)
fmt.Println(ac)
if err != nil {
util.LogPrint(w, err.Error(), http.StatusBadRequest)
return
}
err = types.LaunchNewAttack(name, ac)
if err != nil {
util.LogPrint(w, err.Error(), http.StatusBadRequest)
return
}
msg := fmt.Sprintf("Attack '%s' success.", ac.Name)
util.LogPrint(w, msg, http.StatusOK)
}
func getAttackTool(w http.ResponseWriter, r *http.Request) {
tools := []string{}
for t := range types.Attackers {
tools = append(tools, t)
}
msg := fmt.Sprintf("Attack tools: %s", tools)
util.LogPrint(w, msg, http.StatusOK)
}
func main() {
router := mux.NewRouter()
router.HandleFunc("/attack", launchAttack).Methods("POST")
router.HandleFunc("/attack", getAttackTool).Methods("GET")
fmt.Println("Listening on 8080.")
http.ListenAndServe(":8080", router)
}