-
Notifications
You must be signed in to change notification settings - Fork 0
/
credentials.go
426 lines (376 loc) · 9.11 KB
/
credentials.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
package credentials
import (
"bufio"
"bytes"
"fmt"
"os"
"strings"
"time"
"github.com/aws/aws-sdk-go/service/iam"
"github.com/fatih/color"
)
const (
DefaultKeyMaxAge = 90
)
type AccessKeyMetaData struct {
Loaded bool
KeyAge int
IsOld bool
LastUsed *time.Time
}
type AccessKey struct {
iam.AccessKeyMetadata
AccessKeyMetaData
}
type Config struct {
svc *iam.IAM
KeyMaxAge int
WriteCredentialsFile bool
}
func New(s *iam.IAM) *Config {
return &Config{
svc: s,
KeyMaxAge: DefaultKeyMaxAge,
}
}
var (
red = color.New(color.FgRed)
white = color.New(color.FgWhite)
green = color.New(color.FgGreen)
)
// RunListCmd runs default command to check current user access keys
func (c *Config) RunListCmd() int {
keys, err := c.getCurrentAccessKeys()
if err != nil {
return fatal(err)
}
fmt.Println()
printAccessKeys(keys)
return 0
}
// RunUserListCmd runs command to check given user access keys
func (c *Config) RunUserListCmd(username string) int {
keys, err := c.getUserAccessKeys(username)
if err != nil {
return fatal(err)
}
fmt.Println()
printAccessKeys(keys)
return 0
}
// RunAllCmd retrieves all users and their access keys
func (c *Config) RunAllCmd() int {
var keys []AccessKey
fmt.Println("Retrieving keys for all users, please wait...")
usernames, err := c.getAllUsernames()
if err != nil {
return fatal(err)
}
for _, username := range usernames {
uk, err := c.getUserAccessKeys(username)
if err != nil {
return fatal(err)
}
for _, k := range uk {
keys = append(keys, k)
}
}
fmt.Println()
printAccessKeys(keys)
return 0
}
func (c *Config) RunCheckKeys() int {
keys, err := c.getCurrentAccessKeys()
if err != nil {
return fatal(err)
}
return checkAccessKeys(keys)
}
func (c *Config) RunCheckAllKeys() int {
var keys []AccessKey
usernames, err := c.getAllUsernames()
if err != nil {
return fatal(err)
}
for _, username := range usernames {
uk, err := c.getUserAccessKeys(username)
if err != nil {
return fatal(err)
}
for _, k := range uk {
keys = append(keys, k)
}
}
return checkAccessKeys(keys)
}
// RunNewCmd creates a new access key
func (c *Config) RunNewCmd() int {
err := c.createNewKey(&iam.CreateAccessKeyInput{})
if err != nil {
return fatal(err)
}
return 0
}
// RunUserNewCmd creates a new access key for the given user
func (c *Config) RunUserNewCmd(username string) int {
in := &iam.CreateAccessKeyInput{
UserName: &username,
}
err := c.createNewKey(in)
if err != nil {
return fatal(err)
}
return 0
}
func (c *Config) createNewKey(in *iam.CreateAccessKeyInput) error {
fmt.Println("Generating new access key")
out, err := c.svc.CreateAccessKey(in)
if err != nil {
return err
}
fmt.Print("Access key generated: ")
color.Green(*out.AccessKey.AccessKeyId)
credsOutput := formatCredentialsFile(out.AccessKey)
if c.WriteCredentialsFile {
fmt.Println("Writing credentials file")
err = writeCredentialsFile(credsOutput)
if err != nil {
return err
}
fmt.Println("~/.aws/credentials updated: ")
fmt.Println(credsOutput)
fmt.Println("Activate new profile with: ")
fmt.Printf("\texport AWS_PROFILE=%v.new\n\n", getProfile())
} else {
fmt.Printf("Activate with:\n\n")
fmt.Println(formatConsoleExport(out.AccessKey))
}
credentials, _ := c.svc.Config.Credentials.Get()
fmt.Println("Delete old key with:")
fmt.Printf("\tcredentials delete %v\n", credentials.AccessKeyID)
return nil
}
// RunDeleteUserKeyCmd deletes a given users access key
func (c *Config) RunDeleteUserKeyCmd(key, username string) int {
return c.deleteKey(&iam.DeleteAccessKeyInput{
AccessKeyId: &key,
UserName: &username,
})
}
// RunDeleteCmd deletes a given access key
func (c *Config) RunDeleteCmd(key string) int {
return c.deleteKey(&iam.DeleteAccessKeyInput{
AccessKeyId: &key,
})
}
func (c *Config) deleteKey(in *iam.DeleteAccessKeyInput) int {
_, err := c.svc.DeleteAccessKey(in)
if err != nil {
return fatal(err)
}
red.Printf("%s deleted.\n", *in.AccessKeyId)
return 0
}
// RunDisableCmd deactivates a given access key
func (c *Config) RunDisableCmd(key string) int {
status := "Inactive"
return c.disableKey(&iam.UpdateAccessKeyInput{
AccessKeyId: &key,
Status: &status,
})
}
// RunDisableUserKeyCmd deactivates a given user access key
func (c *Config) RunDisableUserKeyCmd(key, username string) int {
status := "Inactive"
return c.disableKey(&iam.UpdateAccessKeyInput{
AccessKeyId: &key,
Status: &status,
UserName: &username,
})
}
func (c *Config) disableKey(in *iam.UpdateAccessKeyInput) int {
_, err := c.svc.UpdateAccessKey(in)
if err != nil {
return fatal(err)
}
fmt.Printf("%s deactivated.\n", *in.AccessKeyId)
return 0
}
// RunEnableCmd activates a given access key
func (c *Config) RunEnableCmd(key string) int {
status := "Active"
return c.enableKey(&iam.UpdateAccessKeyInput{
AccessKeyId: &key,
Status: &status,
})
}
// RunEnableCmd activates a given access key
func (c *Config) RunEnableUserKeyCmd(key, username string) int {
status := "Active"
return c.enableKey(&iam.UpdateAccessKeyInput{
AccessKeyId: &key,
Status: &status,
UserName: &username,
})
}
func (c *Config) enableKey(in *iam.UpdateAccessKeyInput) int {
_, err := c.svc.UpdateAccessKey(in)
if err != nil {
return fatal(err)
}
green.Printf("%s activated.\n", in.AccessKeyId)
return 0
}
func (c *Config) getAllUsernames() ([]string, error) {
usernames := []string{}
in := &iam.ListUsersInput{}
for {
resp, err := c.svc.ListUsers(in)
if err != nil {
return nil, err
}
for _, u := range resp.Users {
usernames = append(usernames, *u.UserName)
}
if *resp.IsTruncated {
in.SetMarker(*resp.Marker)
continue
}
break
}
return usernames, nil
}
func (c *Config) getCurrentAccessKeys() ([]AccessKey, error) {
return c.getAccessKeys(&iam.ListAccessKeysInput{})
}
func (c *Config) getUserAccessKeys(user string) ([]AccessKey, error) {
in := &iam.ListAccessKeysInput{
UserName: &user,
}
return c.getAccessKeys(in)
}
func (c *Config) getAccessKeys(in *iam.ListAccessKeysInput) ([]AccessKey, error) {
out, err := c.svc.ListAccessKeys(in)
if err != nil {
return nil, err
}
creds, _ := c.svc.Config.Credentials.Get()
var keys []AccessKey
for _, meta := range out.AccessKeyMetadata {
ak := AccessKey{
*meta,
AccessKeyMetaData{
Loaded: *meta.AccessKeyId == creds.AccessKeyID,
KeyAge: daysSince(*meta.CreateDate),
IsOld: olderThan(*meta.CreateDate, c.KeyMaxAge),
},
}
resp, ierr := c.svc.GetAccessKeyLastUsed(
&iam.GetAccessKeyLastUsedInput{AccessKeyId: meta.AccessKeyId})
if ierr != nil {
fmt.Println("Couldn't get usage data for ", meta.AccessKeyId)
err = ierr
} else {
ak.LastUsed = resp.AccessKeyLastUsed.LastUsedDate
}
keys = append(keys, ak)
}
return keys, err
}
func daysSince(t time.Time) int {
return int(time.Since(t).Hours() / 24)
}
func olderThan(t time.Time, d int) bool {
return daysSince(t) > d
}
func printAccessKeys(keys []AccessKey) {
white.Printf(" %-20s\t%-4s\t%-8s\t%-30s\t%s\n",
"AccessKeyId", "Age", "Status", "LastUsed", "Username")
for _, k := range keys {
if k.Loaded {
green.Printf("✔ ")
} else {
fmt.Printf(" ")
}
fmt.Printf("%-20s\t", *k.AccessKeyId)
if k.IsOld {
red.Printf("%-4d\t", k.KeyAge)
} else {
fmt.Printf("%-4d\t", k.KeyAge)
}
if *k.Status == "Active" {
green.Printf("%-8s\t", *k.Status)
} else {
fmt.Printf("%-8s\t", *k.Status)
}
if k.LastUsed != nil {
fmt.Printf("%-30v\t", k.LastUsed)
} else {
fmt.Printf("%-30s\t", "never")
}
fmt.Println(*k.UserName)
}
}
func checkAccessKeys(keys []AccessKey) int {
var b bytes.Buffer
ret := 0
w := bufio.NewWriter(&b)
fmt.Fprintf(w, "%-20s\t%-4s\t%-8s\t%-30s\t%s\n",
"AccessKeyId", "Age", "Status", "LastUsed", "Username")
for _, k := range keys {
if k.IsOld {
ret = 1
fmt.Fprintf(w, "%-20s\t", *k.AccessKeyId)
fmt.Fprintf(w, "%-4d\t", k.KeyAge)
fmt.Fprintf(w, "%-8s\t", *k.Status)
if k.LastUsed != nil {
fmt.Fprintf(w, "%-30v\t", k.LastUsed)
} else {
fmt.Fprintf(w, "%-30s\t", "never")
}
fmt.Fprintln(w, *k.UserName)
}
}
w.Flush()
if ret != 0 {
fmt.Print(b.String())
}
return ret
}
func getProfile() string {
p := os.Getenv("AWS_PROFILE")
if p != "" {
return p
}
return "default"
}
func formatCredentialsFile(k *iam.AccessKey) string {
b := &strings.Builder{}
fmt.Fprintf(b, "\n[%v.new]\n", getProfile())
fmt.Fprintf(b, "aws_access_key_id=%v\n", *k.AccessKeyId)
fmt.Fprintf(b, "aws_secret_access_key=%v\n", *k.SecretAccessKey)
return b.String()
}
func formatConsoleExport(k *iam.AccessKey) string {
b := &strings.Builder{}
fmt.Fprintf(b, "\texport AWS_ACCESS_KEY_ID=%v\n", *k.AccessKeyId)
fmt.Fprintf(b, "\texport AWS_SECRET_ACCESS_KEY=%v\n", *k.SecretAccessKey)
return b.String()
}
func writeCredentialsFile(s string) error {
path, _ := os.UserHomeDir()
path = path + "/.aws/credentials"
f, err := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
return err
}
defer f.Close()
if _, err := f.WriteString(s); err != nil {
return err
}
return nil
}
func fatal(i ...interface{}) int {
fmt.Println(i...)
return 1
}