forked from Netflix/security_monkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
872 lines (700 loc) · 32.3 KB
/
manage.py
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
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
# Copyright 2014 Netflix, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from datetime import datetime
import json
import sys
from flask_script import Manager, Command, Option, prompt_pass
from six import text_type
from security_monkey.account_manager import bulk_disable_accounts, bulk_enable_accounts
from security_monkey.common.s3_canonical import get_canonical_ids
from security_monkey.datastore import clear_old_exceptions, store_exception, AccountType, ItemAudit, NetworkWhitelistEntry
from security_monkey import app, db, jirasync
from security_monkey.common.route53 import Route53Service
from flask_migrate import Migrate, MigrateCommand
from security_monkey.task_scheduler.tasks import manual_run_change_reporter, manual_run_change_finder
from security_monkey.task_scheduler.tasks import audit_changes as sm_audit_changes
from security_monkey.backup import backup_config_to_json as sm_backup_config_to_json
from security_monkey.common.utils import find_modules, load_plugins
from security_monkey.datastore import Account
from security_monkey.watcher import watcher_registry
from swag_client.backend import SWAGManager
from swag_client.util import parse_swag_config_options
try:
from gunicorn.app.base import Application
GUNICORN = True
except ImportError:
# Gunicorn does not yet support Windows.
# See issue #524. https://github.com/benoitc/gunicorn/issues/524
# For dev on Windows, make this an optional import.
print('Could not import gunicorn, skipping.')
GUNICORN = False
manager = Manager(app)
migrate = Migrate(app, db)
manager.add_command('db', MigrateCommand)
find_modules('alerters')
find_modules('watchers')
find_modules('auditors')
load_plugins('security_monkey.plugins')
@manager.command
def drop_db():
""" Drops the database. """
db.drop_all()
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
def run_change_reporter(accounts):
""" Runs Reporter """
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
manual_run_change_reporter(account_names)
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
@manager.option('-m', '--monitors', dest='monitors', type=text_type, default=u'all')
def find_changes(accounts, monitors):
""" Runs watchers """
monitor_names = _parse_tech_names(monitors)
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
manual_run_change_finder(account_names, monitor_names)
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
@manager.option('-m', '--monitors', dest='monitors', type=text_type, default=u'all')
@manager.option('-r', '--send_report', dest='send_report', type=bool, default=False)
@manager.option('-s', '--skip_batch', dest='skip_batch', type=bool, default=False)
def audit_changes(accounts, monitors, send_report, skip_batch):
""" Runs auditors """
monitor_names = _parse_tech_names(monitors)
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
sm_audit_changes(account_names, monitor_names, send_report, skip_batch=skip_batch)
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
@manager.option('-m', '--monitors', dest='monitors', type=text_type, default=u'all')
def delete_unjustified_issues(accounts, monitors):
""" Allows us to delete unjustified issues. """
monitor_names = _parse_tech_names(monitors)
try:
_parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
issues = ItemAudit.query.filter_by(justified=False).all()
for issue in issues:
del issue.sub_items[:]
db.session.delete(issue)
db.session.commit()
@manager.option('-o', '--output-file', dest='output_file', type=text_type, default='environment_summary.json')
def export_environment_summary(output_file):
""" Save the Auditor.OBJECT_STORE as a JSON file. """
from security_monkey.auditor import Auditor
from collections import defaultdict
# Build the Environment Summary
Auditor._load_object_store()
# Convert sets to lists so we can serialize with JSON
json_safe_object = defaultdict(dict)
for tech_name, tech_body in Auditor.OBJECT_STORE.items():
for item_name, item_accounts in tech_body.items():
json_safe_object[tech_name][item_name] = list(item_accounts)
# Write the file to disk
with open(output_file, 'w') as of:
json.dump(json_safe_object, of, indent=2, sort_keys=True)
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
@manager.option('-m', '--monitors', dest='monitors', type=text_type, default=u'all')
@manager.option('-o', '--outputfolder', dest='outputfolder', type=text_type, default=u'backups')
def backup_config_to_json(accounts, monitors, outputfolder):
""" Saves the most current item revisions to a json file. """
monitor_names = _parse_tech_names(monitors)
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
sm_backup_config_to_json(account_names, monitor_names, outputfolder)
@manager.command
def sync_jira():
""" Syncs issues with Jira """
if jirasync:
app.logger.info('Syncing issues with Jira')
jirasync.sync_issues()
else:
app.logger.info('Jira sync not configured. Is SECURITY_MONKEY_JIRA_SYNC set?')
@manager.command
def clear_expired_exceptions():
"""
Clears out the exception logs table of all exception entries that have expired past the TTL.
:return:
"""
app.logger.info("Clearing out exceptions that have an expired TTL...")
clear_old_exceptions()
app.logger.info("Completed clearing out exceptions that have an expired TTL.")
@manager.command
def amazon_accounts():
""" Pre-populates standard AWS owned accounts """
import json
from security_monkey.datastore import Account, AccountType
data = json.load(open("data/aws_accounts.json", 'r'))
app.logger.info('Adding / updating Amazon owned accounts')
try:
account_type_result = AccountType.query.filter(AccountType.name == 'AWS').first()
if not account_type_result:
account_type_result = AccountType(name='AWS')
db.session.add(account_type_result)
db.session.commit()
db.session.refresh(account_type_result)
for group, info in data.items():
for aws_account in info['accounts']:
acct_name = "{group} ({region})".format(group=group, region=aws_account['region'])
account = Account.query.filter(Account.identifier == aws_account['account_id']).first()
if not account:
app.logger.debug(' Adding account {0}'.format(acct_name))
account = Account()
else:
app.logger.debug(' Updating account {0}'.format(acct_name))
account.identifier = aws_account['account_id']
account.account_type_id = account_type_result.id
account.active = False
account.third_party = True
account.name = acct_name
account.notes = info['url']
db.session.add(account)
db.session.commit()
app.logger.info('Finished adding Amazon owned accounts')
except Exception as e:
app.logger.exception("An error occured while adding accounts")
store_exception("manager-amazon-accounts", None, e)
@manager.command
@manager.option('-e', '--email', dest='email', type=text_type, required=True)
@manager.option('-r', '--role', dest='role', type=str, required=True)
def create_user(email, role):
from flask_security import SQLAlchemyUserDatastore
from security_monkey.datastore import User
from security_monkey.datastore import Role
from flask_security.utils import encrypt_password
user_datastore = SQLAlchemyUserDatastore(db, User, Role)
ROLES = ['View', 'Comment', 'Justify', 'Admin']
if role not in ROLES:
sys.stderr.write('[!] Role must be one of [{0}].\n'.format(' '.join(ROLES)))
sys.exit(1)
users = User.query.filter(User.email == email)
if users.count() == 0:
password1 = prompt_pass("Password")
password2 = prompt_pass("Confirm Password")
if password1 != password2:
sys.stderr.write("[!] Passwords do not match\n")
sys.exit(1)
user = user_datastore.create_user(email=email,
password=encrypt_password(password1),
confirmed_at=datetime.now())
else:
sys.stdout.write("[+] Updating existing user\n")
user = users.first()
password1 = prompt_pass("Password")
password2 = prompt_pass("Confirm Password")
if password1 != password2:
sys.stderr.write("[!] Passwords do not match\n")
sys.exit(1)
user.password = encrypt_password(password1)
user.role = role
db.session.add(user)
db.session.commit()
@manager.option('-e', '--email', dest='email', type=text_type, required=True)
@manager.option('-a', '--active', dest='active', type=bool, required=False, default=False, help='To disable, you must omit this flag.')
def toggle_active_user(email, active):
"""Enables/Disables a user.
To enable a user, provide the "--active True" flag value. To disable it, omit the --active flag. Do not use "--active False",
or it will set the value to True.
"""
from security_monkey.datastore import User
users = User.query.filter(User.email == email)
if users.count() == 0:
sys.stderr.write("[!] User is not found.\n")
sys.exit(1)
else:
sys.stdout.write("[+] Setting active toggle for user {} to {}\n".format(email, active))
user = users.first()
user.active = active
db.session.add(user)
db.session.commit()
sys.stdout.write("[+] Done!\n")
# Commented out because this will cause issues with linked issues and justifications.
# @manager.command
# @manager.option('-e', '--email', dest='email', type=text_type, required=True)
# def delete_user(email):
# from security_monkey.datastore import User
#
# users = User.query.filter(User.email == email)
#
# if users.count() == 0:
# sys.stderr.write("[!] User is not found.\n")
# sys.exit(1)
#
# else:
# sys.stdout.write("[-] Deleting user {}\n".format(email))
# user = users.first()
#
# db.session.delete(user)
# db.session.commit()
#
# sys.stdout.write("[+] Done!\n")
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
def disable_accounts(accounts):
""" Bulk disables one or more accounts """
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
bulk_disable_accounts(account_names)
@manager.option('-a', '--accounts', dest='accounts', type=text_type, default=u'all')
def enable_accounts(accounts):
""" Bulk enables one or more accounts """
try:
account_names = _parse_accounts(accounts)
except KeyError as e:
app.logger.error("The passed in account: {} does not exist in Security Monkey's database.".format(e.message))
return -1
bulk_enable_accounts(account_names)
@manager.option('-t', '--tech_name', dest='tech_name', type=str, required=True)
@manager.option('-m', '--method', dest='method', type=str, required=True)
@manager.option('-a', '--auditor', dest='auditor', type=str, required=True)
@manager.option('-s', '--score', dest='score', type=int, required=False)
@manager.option('-b', '--disabled', dest='disabled', type=bool, default=False)
@manager.option('-p', '--pattern_scores', dest='pattern_scores', type=str, required=False)
def add_override_score(tech_name, method, auditor, score, disabled, pattern_scores):
"""
Adds an audit disable/override scores
:param tech_name: technology index
:param method: the neme of the auditor method to override
:param auditor: The class name of the auditor containing the check method
:param score: The default override score to assign to the check method issue
:param disabled: Flag indicating whether the check method should be run
:param pattern_scores: A comma separated list of account field values and scores.
This can be used to override the default score based on some field in the account
that the check method is running against. The format of each value/score is:
account_type.account_field.account_value=score
"""
from security_monkey.datastore import ItemAuditScore
from security_monkey.auditor import auditor_registry
if tech_name not in auditor_registry:
sys.stderr.write('Invalid tech name {}.\n'.format(tech_name))
sys.exit(1)
valid = False
auditor_classes = auditor_registry[tech_name]
for auditor_class in auditor_classes:
if auditor_class.__name__ == auditor:
valid = True
break
if not valid:
sys.stderr.write('Invalid auditor {}.\n'.format(auditor))
sys.exit(1)
if not getattr(auditor_class, method, None):
sys.stderr.write('Invalid method {}.\n'.format(method))
sys.exit(1)
if score is None and not disabled:
sys.stderr.write('Either score (-s) or disabled (-b) required')
sys.exit(1)
if score is None:
score = 0
query = ItemAuditScore.query.filter(ItemAuditScore.technology == tech_name)
method_str = "{method} ({auditor})".format(method=method, auditor=auditor)
query = query.filter(ItemAuditScore.method == method_str)
entry = query.first()
if not entry:
entry = ItemAuditScore()
entry.technology = tech_name
entry.method = method_str
entry.score = score
entry.disabled = disabled
if pattern_scores is not None:
scores = pattern_scores.split(',')
for score in scores:
left_right = score.split('=')
if len(left_right) != 2:
sys.stderr.write('pattern_scores (-p) format account_type.account_field.account_value=score\n')
sys.exit(1)
account_info = left_right[0].split('.')
if len(account_info) != 3:
sys.stderr.write('pattern_scores (-p) format account_type.account_field.account_value=score\n')
sys.exit(1)
from security_monkey.account_manager import account_registry
if account_info[0] not in account_registry:
sys.stderr.write('Invalid account type {}\n'.format(account_info[0]))
sys.exit(1)
entry.add_or_update_pattern_score(account_info[0], account_info[1], account_info[2], int(left_right[1]))
db.session.add(entry)
db.session.commit()
db.session.close()
@manager.option('-f', '--file_name', dest='file_name', type=str, required=True)
@manager.option('-m', '--mappings', dest='field_mappings', type=str, required=False)
def add_override_scores(file_name, field_mappings):
"""
Refreshes the audit disable/override scores from a csv file. Old scores not in
the csv will be removed.
:param file_name: path to the csv file
:param field_mappings: Comma separated list of mappings of known types to csv file
headers. Ex. 'tech=Tech Name,score=default score'
"""
from security_monkey.datastore import ItemAuditScore, AccountPatternAuditScore
from security_monkey.auditor import auditor_registry
import csv
csvfile = open(file_name, 'r')
reader = csv.DictReader(csvfile)
errors = []
mappings = {
'tech': 'tech',
'auditor': 'auditor',
'method': 'method',
'disabled': 'disabled',
'score': 'score',
'patterns': {}
}
if field_mappings:
mapping_defs = field_mappings.split(',')
for mapping_def in mapping_defs:
mapping = mapping_def.split('=')
if mapping[0] in mappings:
mappings[mapping[0]] = mapping[1]
else:
patterns = mappings['patterns']
patterns[mapping[0]] = mapping[1]
line_num = 0
entries = []
for row in reader:
line_num = line_num + 1
tech_name = row[mappings['tech']]
auditor = row[mappings['auditor']]
method = row[mappings['method']]
if not tech_name or not auditor or not method:
continue
score = None
str_score = row[mappings['score']].decode('ascii', 'ignore').strip('')
if str_score != '':
if not str_score.isdigit():
errors.append('Score {} line {} is not a positive int.'.format(str_score, line_num))
continue
score = int(str_score)
if row[mappings['disabled']].lower() == 'true':
disabled = True
else:
disabled = False
if score is None and not disabled:
continue
if score is None:
score = 0
if tech_name not in auditor_registry:
errors.append('Invalid tech name {} line {}.'.format(tech_name, line_num))
continue
valid = False
auditor_classes = auditor_registry[tech_name]
for auditor_class in auditor_classes:
if auditor_class.__name__ == auditor:
valid = True
break
if not valid:
errors.append('Invalid auditor {} line {}.'.format(auditor, line_num))
continue
if not getattr(auditor_class, method, None):
errors.append('Invalid method {} line {}.'.format(method, line_num))
continue
entry = ItemAuditScore(technology=tech_name, method=method + ' (' + auditor + ')',
score=score, disabled=disabled)
pattern_mappings = mappings['patterns']
for mapping in pattern_mappings:
str_pattern_score = row[pattern_mappings[mapping]].decode('ascii', 'ignore').strip()
if str_pattern_score != '':
if not str_pattern_score.isdigit():
errors.append('Pattern score {} line {} is not a positive int.'.format(str_pattern_score, line_num))
continue
account_info = mapping.split('.')
if len(account_info) != 3:
errors.append('Invalid pattern mapping {}.'.format(mapping))
continue
from security_monkey.account_manager import account_registry
if account_info[0] not in account_registry:
errors.append('Invalid account type {}'.format(account_info[0]))
continue
db_pattern_score = AccountPatternAuditScore(account_type=account_info[0],
account_field=account_info[1],
account_pattern=account_info[2],
score=int(str_pattern_score))
entry.account_pattern_scores.append(db_pattern_score)
entries.append(entry)
if len(errors) > 0:
for error in errors:
sys.stderr.write("{}\n".format(error))
sys.exit(1)
AccountPatternAuditScore.query.delete()
ItemAuditScore.query.delete()
for entry in entries:
db.session.add(entry)
db.session.commit()
db.session.close()
def _parse_tech_names(tech_str):
if tech_str == 'all':
return watcher_registry.keys()
else:
return tech_str.split(',')
def _parse_accounts(account_str, active=True):
"""Parse the account ID or name. This will raise a KeyError if it can't find it."""
if account_str == 'all':
accounts = Account.query.filter(Account.third_party == False).filter(Account.active == active).all()
accounts = [account.name for account in accounts]
return accounts
else:
names_or_ids = account_str.split(',')
accounts = Account.query.all()
accounts_by_id = {account.identifier: account.name for account in accounts}
accounts_by_name = {account.name: account.identifier for account in accounts}
# Verify that the account name exists (raise a KeyError if it doesn't):
names = []
for n in names_or_ids:
if not accounts_by_id.get(n):
_ = accounts_by_name[n]
names.append(n)
return names
@manager.option('-n', '--name', dest='name', type=text_type, required=True)
def delete_account(name):
from security_monkey.account_manager import delete_account_by_name
delete_account_by_name(name)
@manager.option('-t', '--tech_name', dest='tech_name', type=str, required=True)
@manager.option('-d', '--disabled', dest='disabled', type=bool, default=False)
# We are locking down the allowed intervals here to 15 minutes, 1 hour, 12 hours, 24
# hours or one week because too many different intervals could result in too many
# scheduler threads, impacting performance.
@manager.option('-i', '--interval', dest='interval', type=int, default=60, choices=[15, 60, 720, 1440, 10080])
def add_watcher_config(tech_name, disabled, interval):
from security_monkey.datastore import WatcherConfig
from security_monkey.watcher import watcher_registry
if tech_name not in watcher_registry:
sys.stderr.write('Invalid tech name {}.\n'.format(tech_name))
sys.exit(1)
query = WatcherConfig.query.filter(WatcherConfig.index == tech_name)
entry = query.first()
if not entry:
entry = WatcherConfig()
entry.index = tech_name
entry.interval = interval
entry.active = not disabled
db.session.add(entry)
db.session.commit()
db.session.close()
@manager.option("--override", dest="override", type=bool, default=True)
def fetch_aws_canonical_ids(override):
"""
Adds S3 canonical IDs in for all AWS accounts in SM.
"""
app.logger.info("[ ] Fetching S3 canonical IDs for all AWS accounts being monitored by Security Monkey.")
# Get all the active AWS accounts:
accounts = Account.query.filter(Account.active == True) \
.join(AccountType).filter(AccountType.name == "AWS").all() # noqa
get_canonical_ids(accounts, override=override)
app.logger.info("[@] Completed canonical ID fetching.")
@manager.command
def clean_stale_issues():
"""
Cleans up issues for auditors that have been removed
"""
from security_monkey.common.audit_issue_cleanup import clean_stale_issues
clean_stale_issues()
class APIServer(Command):
def __init__(self, host='127.0.0.1', port=app.config.get('API_PORT'), workers=12):
self.address = "{}:{}".format(host, port)
self.workers = workers
def get_options(self):
return (
Option('-b', '--bind',
dest='address',
type=str,
default=self.address),
Option('-w', '--workers',
dest='workers',
type=int,
default=self.workers),
)
def __call__(self, app, *args, **kwargs):
if app.config.get('USE_ROUTE53'):
route53 = Route53Service()
route53.register(app.config.get('FQDN'), exclusive=True)
workers = kwargs['workers']
address = kwargs['address']
if not GUNICORN:
print('GUNICORN not installed. Try `runserver` to use the Flask debug server instead.')
else:
class FlaskApplication(Application):
def init(self, parser, opts, args):
return {
'bind': address,
'workers': workers,
'timeout': 1800
}
def load(self):
return app
FlaskApplication().run()
@manager.option('-o', '--owner', type=text_type, required=True,
help="Owner of the accounts, this is often set to a company name.")
@manager.option('-b', '--bucket-name', dest='bucket_name', type=text_type, required=True,
help="S3 bucket where SWAG data is stored.")
@manager.option('-p', '--bucket-prefix', dest='bucket_prefix', type=text_type, default='accounts.json',
help="Prefix to fetch account data from. Default: accounts.json")
@manager.option('-r', '--bucket-region', dest='bucket_region', type=text_type, default='us-east-1',
help="Region SWAG S3 bucket is located. Default: us-east-1")
@manager.option('-t', '--account-type', dest='account_type', default='AWS',
help="Type of account to sync from SWAG data. Default: AWS")
@manager.option('-s', '--spinnaker', dest='spinnaker', default=False, action='store_true',
help='Use the spinnaker names as account names.')
def sync_swag(owner, bucket_name, bucket_prefix, bucket_region, account_type, spinnaker):
"""Use the SWAG client to sync SWAG accounts to Security Monkey."""
from security_monkey.account_manager import account_registry
swag_opts = {
'swag.type': 's3',
'swag.bucket_name': bucket_name,
'swag.data_file': bucket_prefix,
'swag.region': bucket_region
}
swag = SWAGManager(**parse_swag_config_options(swag_opts))
account_manager = account_registry[account_type]()
for account in swag.get_all("[?provider=='{provider}']".format(provider=account_type.lower())):
services = account.get('services', [])
services_by_name = {s['name']: s for s in services}
# Check if the account is active or not:
# With the current SWAG schema, need to do the following:
# 1. Check if the 'account_status' field is set to 'ready'.
# 2. Loop through all the services for "security_monkey" and if the status is "active", then the account
# is active.
check_active = active = False
if account['account_status'] == 'ready':
check_active = True
if check_active:
secmonkey_service = services_by_name.get('security_monkey', {})
for status in secmonkey_service.get('status', []):
if status['region'] == 'all':
active = status.get('enabled', False)
break
thirdparty = account['owner'] != owner
if spinnaker:
spinnaker_name = swag.get_service_name('spinnaker', "[?id=='{id}']".format(id=account['id']))
if not spinnaker_name:
name = account['name']
else:
name = spinnaker_name
else:
name = account['name']
notes = account['description']
identifier = account['id']
custom_fields = {}
s3_name = swag.get_service_name('s3', "[?id=='{id}']".format(id=account['id']))
if s3_name:
custom_fields['s3_name'] = s3_name
s3_service = services_by_name.get('s3', {})
if s3_service:
c_id = s3_service['metadata'].get('canonicalId', None)
if c_id:
custom_fields['canonical_id'] = c_id
role_name = secmonkey_service.get('metadata', {}).get('role_name', None)
if role_name is not None:
custom_fields['role_name'] = role_name
account_manager.sync(account_manager.account_type, name, active, thirdparty,
notes, identifier,
custom_fields=custom_fields)
db.session.close()
app.logger.info('SWAG sync successful.')
@manager.option('-b', '--bucket-name', dest='bucket_name', type=text_type, help="S3 bucket where network whitelist data is stored.")
@manager.option('-i', '--input-filename', dest='input_filename', type=text_type, default='networks.json', help="File path or bucket prefix to fetch account data from. Default: networks.json")
@manager.option('-a', '--authoritative', dest='authoritative', default=False, action='store_true', help='Remove all networks not named in `input_filename`.')
def sync_networks(bucket_name, input_filename, authoritative):
"""Imports a JSON file of networks to the Security Monkey whitelist."""
if bucket_name:
import boto3
s3 = boto3.client('s3')
response = s3.get_object(
Bucket=bucket_name,
Key=input_filename,
)
handle = response['Body']
else:
handle = open(input_filename)
networks = json.load(handle)
handle.close()
existing = NetworkWhitelistEntry.query.filter(
NetworkWhitelistEntry.name.in_(networks)
)
new = set(networks.keys()) - set(entry.name for entry in existing)
for entry in existing:
entry.cidr = networks[entry.name]
db.session.add(entry)
for name in new:
app.logger.debug('Adding new network %s', name)
entry = NetworkWhitelistEntry(
name=name,
cidr=networks[name],
)
db.session.add(entry)
if authoritative:
old = NetworkWhitelistEntry.query.filter(
~NetworkWhitelistEntry.name.in_(networks)
)
for entry in old:
app.logger.debug('Removing stale network %s', entry.name)
db.session.delete(entry)
db.session.commit()
db.session.close()
class AddAccount(Command):
def __init__(self, account_manager, *args, **kwargs):
super(AddAccount, self).__init__(*args, **kwargs)
self._account_manager = account_manager
self.__doc__ = "Add %s account" % account_manager.account_type
def get_options(self):
options = [
Option('-n', '--name', type=text_type, required=True),
Option('--id', dest='identifier', type=text_type, required=True),
Option('--thirdparty', action='store_true'),
Option('--active', action='store_true'),
Option('--notes', type=text_type),
Option('--update-existing', action="store_true")
]
for cf in self._account_manager.custom_field_configs:
options.append(Option('--%s' % cf.name, dest=cf.name, type=str))
return options
def __call__(self, app, *args, **kwargs):
name = kwargs.pop('name')
active = kwargs.pop('active', False)
thirdparty = kwargs.pop('thirdparty', False)
notes = kwargs.pop('notes', u'')
identifier = kwargs.pop('identifier')
update = kwargs.pop('update_existing', False)
if update:
result = self._account_manager.update(None, self._account_manager.account_type, name, active, thirdparty,
notes, identifier,
custom_fields=kwargs
)
else:
result = self._account_manager.create(
self._account_manager.account_type,
name, active, thirdparty, notes, identifier,
custom_fields=kwargs)
db.session.close()
if not result:
return -1
def main():
from security_monkey.account_manager import account_registry
for name, account_manager in account_registry.items():
manager.add_command("add_account_%s" % name.lower(), AddAccount(account_manager()))
manager.add_command("run_api_server", APIServer())
manager.run()
if __name__ == "__main__":
main()