-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
486 lines (464 loc) · 12.3 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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
package main
import (
"fmt"
"log"
"os"
"runtime"
"time"
"github.com/GoodwayGroup/gw-aws-audit/ec2"
"github.com/GoodwayGroup/gw-aws-audit/iam"
"github.com/GoodwayGroup/gw-aws-audit/info"
"github.com/GoodwayGroup/gw-aws-audit/rds"
"github.com/GoodwayGroup/gw-aws-audit/s3"
"github.com/GoodwayGroup/gw-aws-audit/sg"
"github.com/clok/cdocs"
"github.com/urfave/cli/v2"
)
var version string
func init() {
cli.VersionPrinter = func(c *cli.Context) {
_, _ = fmt.Fprintf(c.App.Writer, "%s %s (%s/%s)\n", info.AppName, version, runtime.GOOS, runtime.GOARCH)
}
}
func main() {
im, err := cdocs.InstallManpageCommand(&cdocs.InstallManpageCommandInput{
AppName: info.AppName,
})
if err != nil {
log.Fatal(err)
}
app := &cli.App{
Name: info.AppName,
Version: version,
Compiled: time.Now(),
Authors: []*cli.Author{
{
Name: "Derek Smith",
Email: "dsmith@goodwaygroup.com",
},
},
Copyright: "(c) 2020 Goodway Group",
HelpName: info.AppName,
Usage: "a collection of tools to audit AWS.",
EnableBashCompletion: true,
Commands: []*cli.Command{
{
Name: "s3",
Usage: "S3 related commands",
Subcommands: []*cli.Command{
{
Name: "add-cost-tag",
Usage: "Add s3-cost-name to all S3 buckets",
UsageText: `
Idempotent action that will add the ` + "`s3-cost-name`" + ` tag to ALL S3 buckets for a
given account.
The value will be the Bucket name.
`,
Action: func(c *cli.Context) error {
err := s3.AddCostTag()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "metrics",
Usage: "Get usage metrics",
UsageText: `
Prints out a CSV report to STDOUT to help track usage across all buckets for a
given account.
Metrics per Bucket:
Objects (count)
Size (Bytes)
Size (GB)
Size (TB)
Bytes per Object
MB per Object
Has Cost Tag
`,
Action: func(c *cli.Context) error {
err := s3.GetBucketMetrics()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "clear-bucket",
Aliases: []string{"exterminatus"},
Usage: "Clear all Objects within a given Bucket",
UsageText: `
Efficiently delete all objects within a bucket.
This process will run multiple paged deletes in parallel. It will handle API
throttling from AWS with an exponential backoff with retry.
`,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "bucket",
Aliases: []string{"b"},
Usage: "Bucket to clear",
Required: true,
},
},
Action: func(c *cli.Context) error {
err := s3.ClearBucketObjects(c)
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
},
},
{
Name: "rds",
Usage: "RDS related commands",
Subcommands: []*cli.Command{
{
Name: "enhanced-monitoring",
Usage: "Produce report of Enhanced Monitoring enabled instances",
Action: func(c *cli.Context) error {
err := rds.ListMonitoringEnabled()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "public",
Usage: "Produce report of instances that have public interfaces attached",
UsageText: `
Produces a report that displays a list RDS servers that are configured as Publicly Accessible.
The report contains:
DB INSTANCE:
- Name of the instance
ENGINE:
- RDS DB engine
SECURITY GROUPS:
- Security Group ID
- Security Group Name
- Inbound Port
- CIDR rules applied to the Port
`,
Action: func(c *cli.Context) error {
err := rds.ListPublicInterfaces()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
},
},
{
Name: "ec2",
Usage: "EC2 related commands",
Subcommands: []*cli.Command{
{
Name: "enhanced-monitoring",
Usage: "Produce report of Enhanced Monitoring enabled instances",
Action: func(c *cli.Context) error {
err := ec2.ListMonitoringEnabled()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "detached-volumes",
Usage: "List detached EBS volumes and snapshot counts",
Action: func(c *cli.Context) error {
err := ec2.ListDetachedVolumes()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "stopped-hosts",
Usage: "List stopped EC2 hosts and associated EBS volumes",
Action: func(c *cli.Context) error {
err := ec2.ListStoppedHosts()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "pem-keys",
Usage: "List instances and PEM key used at time of creation",
Action: func(c *cli.Context) error {
err := ec2.ListPemKeyUsage()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
},
},
{
Name: "sg",
Usage: "Security Group related commands",
Subcommands: []*cli.Command{
{
Name: "detached",
Usage: "generate a report of all Security Groups that are NOT attached to an instance",
UsageText: `
This command will scan the EC2 NetworkInterfaces to determine what
Security Groups are NOT attached/assigned in AWS.
`,
Action: func(c *cli.Context) error {
err := sg.ListDetachedSecurityGroups()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "attached",
Usage: "generate a report of all Security Groups that are attached to an instance",
UsageText: `
This command will scan the EC2 NetworkInterfaces to determine what
Security Groups are attached/assigned in AWS.
`,
Action: func(c *cli.Context) error {
err := sg.ListAttachedSecurityGroups()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "cidr",
Usage: "generate a report comparing SG rules with input CIDR blocks",
UsageText: `
$ gw-aws-audit sg cidr --allowed 10.176.0.0/16,10.175.0.0/16 --alert 174.0.0.0/8,1.2.3.4/32
This command will generate a report detecting the port to CIDR mapping rules
for attached Security Groups.
A list of Approved CIDRs is required. This is typically the CIDR block associated
with your VPC.
`,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "approved",
Aliases: []string{"a"},
Usage: "CIDR blocks that are approved (csv)",
Required: true,
},
&cli.StringFlag{
Name: "warn",
Aliases: []string{"w"},
Usage: "CIDR blocks that will cause a warning (csv)",
Value: "204.0.0.0/8",
},
&cli.StringFlag{
Name: "alert",
Aliases: []string{"b"},
Usage: "CIDR blocks that will cause an alert (csv)",
Value: "174.0.0.0/8",
},
&cli.StringFlag{
Name: "ignore-ports",
Aliases: []string{"p"},
Usage: "Ports that can be ignored (csv)",
Value: "80,443,3,4,3-4",
},
&cli.StringFlag{
Name: "ignore-protocols",
Usage: "Protocols to ignore. Can be tcp,udp,icmp (csv)",
},
&cli.BoolFlag{
Name: "all",
Usage: "Process ALL Security Groups, not just attached",
Value: false,
},
},
Action: func(c *cli.Context) error {
err := sg.GenerateCIDRReport(c)
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "port",
Usage: "generate a report comparing SG rules with input CIDR blocks on a specific port",
UsageText: `
$ gw-aws-audit sg ports --ports 22,3306 --allowed 10.176.0.0/16,10.175.0.0/16 --alert 174.0.0.0/8,1.2.3.4/32
This command will generate a report for a set of PORTS for attached Security Groups.
A list of Approved CIDRs is required. This is typically the CIDR block associated
with your VPC.
`,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "ports",
Aliases: []string{"p"},
Usage: "Ports to generate report on (csv)",
Value: "22",
},
&cli.StringFlag{
Name: "approved",
Aliases: []string{"a"},
Usage: "CIDR blocks that are approved (csv)",
Required: true,
},
&cli.StringFlag{
Name: "warn",
Aliases: []string{"w"},
Usage: "CIDR blocks that will cause a warning (csv)",
Value: "204.0.0.0/8",
},
&cli.StringFlag{
Name: "alert",
Aliases: []string{"b"},
Usage: "CIDR blocks that will cause an alert (csv)",
Value: "174.0.0.0/8",
},
&cli.StringFlag{
Name: "ignore-protocols",
Usage: "Protocols to ignore. Can be tcp,udp,icmp (csv)",
},
&cli.BoolFlag{
Name: "all",
Usage: "Process ALL Security Groups, not just attached",
Value: false,
},
},
Action: func(c *cli.Context) error {
err := sg.GeneratePortReport(c)
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "amazon",
Usage: "generate a report of allow SG with rules mapped to known AWS IPs",
UsageText: `
This method loads the current version of https://ip-ranges.amazonaws.com/ip-ranges.json
and compares the CIDR blocks against all Security Groups.
`,
Action: func(c *cli.Context) error {
err := sg.GenerateExternalAWSIPReport()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
{
Name: "direct-ip-mapping",
Aliases: []string{"dim"},
Usage: "generate report of Security Groups with direct mappings to EC2 instances",
UsageText: `
This method will generate a report comparing all Security Groups with all
EC2 instances to determine where you have a direct IP mapping.
This will note Internal and External IP usage as well.
`,
Action: func(c *cli.Context) error {
err := sg.GenerateMappedEC2Report()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
},
},
{
Name: "iam",
Usage: "IAM related commands",
Subcommands: []*cli.Command{
{
Name: "user",
Usage: "Set of commands to take action on AWS Users",
Subcommands: []*cli.Command{
iam.ActionUserReport,
iam.ActionUserModify,
iam.ActionUserPermissions,
iam.ActionUserKeys,
},
},
{
Name: "keys",
Usage: "Set of commands to take action on AWS Access Keys",
UsageText: "",
Subcommands: []*cli.Command{
iam.ActionKeysDeactivate,
iam.ActionKeysDelete,
iam.ActionKeysRecent,
iam.ActionKeysUnused,
},
},
iam.ActionDeprecatedUserReport,
},
},
{
Name: "cw",
Usage: "CloudWatch related commands",
Subcommands: []*cli.Command{
{
Name: "enhanced-monitoring",
Usage: "Produce report of Enhanced Monitoring enabled EC2 & RDS instances",
Action: func(c *cli.Context) error {
fmt.Println("Enhanced Metrics can add a cost. See: https://aws.amazon.com/cloudwatch/pricing/")
fmt.Printf("Checking for EC2 Enhanced Monitoring\n\n")
err := ec2.ListMonitoringEnabled()
if err != nil {
return cli.Exit(err, 2)
}
fmt.Printf("\n\nChecking for RDS Enhanced Monitoring\n\n")
err = rds.ListMonitoringEnabled()
if err != nil {
return cli.Exit(err, 2)
}
return nil
},
},
},
},
im,
{
Name: "version",
Aliases: []string{"v"},
Usage: "Print version info",
Action: func(c *cli.Context) error {
fmt.Printf("%s %s (%s/%s)\n", info.AppName, version, runtime.GOOS, runtime.GOARCH)
return nil
},
},
},
}
app.EnableBashCompletion = true
if os.Getenv("DOCS_MD") != "" {
docs, err := cdocs.ToMarkdown(app)
if err != nil {
panic(err)
}
fmt.Println(docs)
return
}
if os.Getenv("DOCS_MAN") != "" {
docs, err := cdocs.ToMan(app)
if err != nil {
panic(err)
}
fmt.Println(docs)
return
}
err = app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}