-
Notifications
You must be signed in to change notification settings - Fork 14
/
main.go
227 lines (214 loc) · 4.54 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
package main
import (
"os"
"fmt"
"log"
"github.com/codegangsta/cli"
)
var AppHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
{{.Name}} {{if .Flags}}-i/--interface <device> [-b/--bia] {{end}}command{{if .Flags}} [command options]{{end}} [arguments...]
VERSION:
{{.Version}}{{if len .Authors}}
AUTHOR(S):
{{range .Authors}}{{ . }}{{end}}{{end}}
COMMANDS:
{{range .Commands}}{{join .Names ", "}}{{range .Subcommands}}{{ " (" }}{{ join .Names "|"}}{{ ")" }}{{end}}{{ "\t\t" }}{{.Usage}}
{{end}}{{if .Flags}}
GLOBAL OPTIONS:
{{range .Flags}}{{.}}
{{end}}{{end}}
`
func main() {
cli.AppHelpTemplate = AppHelpTemplate
app := cli.NewApp()
app.Name = "macouflage"
app.Usage ="macouflage is a MAC address anonymization tool"
app.Version = "0.1"
app.Author = "David McKinney"
app.Email = "mckinney@subgraph.com"
app.Flags = []cli.Flag {
cli.StringFlag{
Name: "i, interface",
Usage: "Target device (required)",
},
cli.BoolFlag{
Name: "b, bia",
Usage: "Pretend to be a burned-in-address",
},
}
app.Commands = []cli.Command {
{
Name: "show",
Usage: "Print the MAC address and exit",
Action: show,
},
{
Name: "ending",
Usage: "Don't change the vendor bytes (generate last three bytes: XX:XX:XX:??:??:??)",
Action: ending,
},
{
Name: "another",
Usage: "Set random vendor MAC of the same kind",
Action: another,
},
{
Name: "any",
Usage: "Set random vendor MAC of any kind",
Action: any,
},
{
Name: "permanent",
Usage: "Reset to original, permanent hardware MAC",
Action: permanent,
},
{
Name: "random",
Usage: "Set fully random MAC",
Action: random,
},
{
Name: "popular",
Usage: "Set a MAC from the popular vendors list",
Action: popular,
},
{
Name: "list",
Usage: "Print known vendors",
Action: list,
Subcommands: []cli.Command{
{
Name: "popular",
Usage: "Print known popular vendors",
Action: listPopular,
},
},
},
{
Name: "search",
Usage: "Search vendor names",
Action: search,
},
{
Name: "mac",
Usage: "Set the MAC XX:XX:XX:XX:XX:XX",
Action: mac,
},
}
app.Run(os.Args)
}
func show(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
result, err := getCurrentMacInfo(iface)
if err != nil {
log.Fatal(err)
}
fmt.Println(result)
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func list(c *cli.Context) {
results, err := listVendors("", false)
if err != nil {
log.Fatal(err)
}
fmt.Println(results)
}
func listPopular(c *cli.Context) {
results, err := listVendors("", true)
if err != nil {
log.Fatal(err)
}
fmt.Println(results)
}
func search(c *cli.Context) {
results, err := listVendors(c.Args().First(), false)
if err != nil {
log.Fatal(err)
}
fmt.Println(results)
}
func ending(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := spoofMacEnding(iface)
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func another(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := spoofMacAnother(iface)
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func any(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := spoofMacAny(iface)
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func permanent(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := revertMac(iface)
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func random(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := spoofMacRandom(iface, c.GlobalBool("b"))
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func popular(c *cli.Context) {
iface := c.GlobalString("i")
if iface != "" {
err := spoofMacPopular(iface)
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}
func mac(c *cli.Context) {
if c.Args().First() == "" {
log.Fatal("No MAC address argument specified")
}
iface := c.GlobalString("i")
if iface != "" && c.Args().First() != "" {
err := spoofMac(iface, c.Args().First())
if err != nil {
log.Fatal(err)
}
} else {
log.Fatal("No target device provided via -i, --interface argument")
}
}