-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfsec.cform
574 lines (561 loc) · 20.1 KB
/
cfsec.cform
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
AWSTemplateFormatVersion: 2010-09-09
Description: CFSEC AWS Cloudformation template
## These are parameters that users fill in at cloudformation web UI upon deploying this stack
Parameters:
## AlarmMetric depends on this
AlarmMetricLogGroupName:
Type: String
Default: ""
Description: >-
Enter CloudWatch Logs log group name. Usually the default is
CloudTrail/DefaultLogGroup. Note that leaving this blank will skip deployment of AlarmMetric
## Alarm Lambda function depends on these
AlarmLambdaBucketName:
Type: String
Default: cfsec
Description: The bucket name where the lambda code is reside in
AlarmLambdaBucketKey:
Type: String
Default: assets/snstoslack.zip
Description: The path to the lambda code
AlarmLambdaFunctionName:
Type: String
Default: SnsToSlack
Description: The name of the function
AlarmSlackWebhook:
Type: String
Description: The Slack webhook used by lambda function to notify users
AlarmSnsTopicName:
Type: String
Default: CFSEC_Alarm_SNSTopic
Description: The aws topic which AWS alarms fire to
## Honey Host creation depends on these
HoneyHostSshKeyName:
Type: String
Default: ""
Description: Name of ssh key you want to use to manage honeyhost.
HoneyHostVpcId:
Type: String
Default: ""
Description: VpcId where Honey Host should be installed to.
HoneyHostSubnetId:
Type: String
Default: ""
Description: SubnetId where Honey Host should be installed to.
HoneyHostPorts:
Type: String
Default: "80,443,23,21,8080"
Description: List of ports we should use knockd to alert on.
HoneyHostAmi:
Type: String
Default: ami-085925f297f89fce1
Description: We should use the latest Ubuntu 18.04 LTS ami.
# Condition is a fantastic way to make decisions in cloudformation stack
# I'm using this mostly to decide what resources will be created at launch.
Conditions:
CreateAlarmLambda: !And
- !Not [!Equals ['', !Ref AlarmLambdaBucketName]]
- !Not [!Equals ['', !Ref AlarmLambdaBucketKey]]
- !Not [!Equals ['', !Ref AlarmSlackWebhook]]
CreateAlarmMetric: !Not
- !Equals ['', !Ref AlarmMetricLogGroupName]
CreateHoneyHost: !And
- !Not [ !Equals ['', !Ref HoneyHostVpcId] ]
- !Not [ !Equals ['', !Ref HoneyHostSubnetId] ]
CreateHoneyHostWithKey: !Not
- !Equals ['', !Ref HoneyHostSshKeyName]
Resources:
## These are the default AlarmMetric comes with the example from AWS!
AlarmMetricSecurityGroupChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = AuthorizeSecurityGroupIngress) || ($.eventName =
AuthorizeSecurityGroupEgress) || ($.eventName =
RevokeSecurityGroupIngress) || ($.eventName = RevokeSecurityGroupEgress)
|| ($.eventName = CreateSecurityGroup) || ($.eventName =
DeleteSecurityGroup) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: SecurityGroupEventCount
MetricValue: '1'
AlarmMetricSecurityGroupChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailSecurityGroupChanges
AlarmDescription: >-
Alarms when an API call is made to create, update or delete a Security
Group.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: SecurityGroupEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricNetworkAclChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = CreateNetworkAcl) || ($.eventName =
CreateNetworkAclEntry) || ($.eventName = DeleteNetworkAcl) ||
($.eventName = DeleteNetworkAclEntry) || ($.eventName =
ReplaceNetworkAclEntry) || ($.eventName = ReplaceNetworkAclAssociation)
}
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: NetworkAclEventCount
MetricValue: '1'
AlarmMetricNetworkAclChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailNetworkAclChanges
AlarmDescription: >-
Alarms when an API call is made to create, update or delete a Network
ACL.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: NetworkAclEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricGatewayChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = CreateCustomerGateway) || ($.eventName =
DeleteCustomerGateway) || ($.eventName = AttachInternetGateway) ||
($.eventName = CreateInternetGateway) || ($.eventName =
DeleteInternetGateway) || ($.eventName = DetachInternetGateway) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: GatewayEventCount
MetricValue: '1'
AlarmMetricGatewayChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailGatewayChanges
AlarmDescription: >-
Alarms when an API call is made to create, update or delete a Customer
or Internet Gateway.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: GatewayEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricVpcChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = CreateVpc) || ($.eventName = DeleteVpc) || ($.eventName
= ModifyVpcAttribute) || ($.eventName = AcceptVpcPeeringConnection) ||
($.eventName = CreateVpcPeeringConnection) || ($.eventName =
DeleteVpcPeeringConnection) || ($.eventName =
RejectVpcPeeringConnection) || ($.eventName = AttachClassicLinkVpc) ||
($.eventName = DetachClassicLinkVpc) || ($.eventName =
DisableVpcClassicLink) || ($.eventName = EnableVpcClassicLink) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: VpcEventCount
MetricValue: '1'
AlarmMetricVpcChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailVpcChanges
AlarmDescription: >-
Alarms when an API call is made to create, update or delete a VPC, VPC
peering connection or VPC connection to classic.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: VpcEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricEC2InstanceChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = RunInstances) || ($.eventName = RebootInstances) ||
($.eventName = StartInstances) || ($.eventName = StopInstances) ||
($.eventName = TerminateInstances) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: EC2InstanceEventCount
MetricValue: '1'
AlarmMetricEC2InstanceChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailEC2InstanceChanges
AlarmDescription: >-
Alarms when an API call is made to create, terminate, start, stop or
reboot an EC2 instance.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: EC2InstanceEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricEC2LargeInstanceChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = RunInstances) && (($.requestParameters.instanceType =
*.8xlarge) || ($.requestParameters.instanceType = *.4xlarge)) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: EC2LargeInstanceEventCount
MetricValue: '1'
AlarmMetricEC2LargeInstanceChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailEC2LargeInstanceChanges
AlarmDescription: >-
Alarms when an API call is made to create, terminate, start, stop or
reboot a 4x or 8x-large EC2 instance.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: EC2LargeInstanceEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricCloudTrailChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = CreateTrail) || ($.eventName = UpdateTrail) ||
($.eventName = DeleteTrail) || ($.eventName = StartLogging) ||
($.eventName = StopLogging) }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: CloudTrailEventCount
MetricValue: '1'
AlarmMetricCloudTrailChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailChanges
AlarmDescription: >-
Alarms when an API call is made to create, update or delete a CloudTrail
trail, or to start or stop logging to a trail.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: CloudTrailEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricConsoleSignInFailuresFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.eventName = ConsoleLogin) && ($.errorMessage = "Failed
authentication") }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: ConsoleSignInFailureCount
MetricValue: '1'
AlarmMetricConsoleSignInFailuresAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailConsoleSignInFailures
AlarmDescription: >-
Alarms when an unauthenticated API call is made to sign into the
console.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: ConsoleSignInFailureCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '3'
AlarmMetricAuthorizationFailuresFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{ ($.errorCode = "*UnauthorizedOperation") || ($.errorCode =
"AccessDenied*") }
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: AuthorizationFailureCount
MetricValue: '1'
AlarmMetricAuthorizationFailuresAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailAuthorizationFailures
AlarmDescription: Alarms when an unauthorized API call is made.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: AuthorizationFailureCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmMetricIAMPolicyChangesFilter:
Condition: CreateAlarmMetric
Type: 'AWS::Logs::MetricFilter'
Properties:
AlarmMetricLogGroupName: !Ref AlarmMetricLogGroupName
FilterPattern: >-
{($.eventName=DeleteGroupPolicy)||($.eventName=DeleteRolePolicy)||($.eventName=DeleteUserPolicy)||($.eventName=PutGroupPolicy)||($.eventName=PutRolePolicy)||($.eventName=PutUserPolicy)||($.eventName=CreatePolicy)||($.eventName=DeletePolicy)||($.eventName=CreatePolicyVersion)||($.eventName=DeletePolicyVersion)||($.eventName=AttachRolePolicy)||($.eventName=DetachRolePolicy)||($.eventName=AttachUserPolicy)||($.eventName=DetachUserPolicy)||($.eventName=AttachGroupPolicy)||($.eventName=DetachGroupPolicy)}
MetricTransformations:
- MetricNamespace: CloudTrailMetrics
MetricName: IAMPolicyEventCount
MetricValue: '1'
AlarmMetricIAMPolicyChangesAlarm:
Condition: CreateAlarmMetric
Type: 'AWS::CloudWatch::Alarm'
Properties:
AlarmName: CloudTrailIAMPolicyChanges
AlarmDescription: Alarms when an API call is made to change an IAM policy.
AlarmActions:
- !Ref AlarmSnsTopic
MetricName: IAMPolicyEventCount
Namespace: CloudTrailMetrics
ComparisonOperator: GreaterThanOrEqualToThreshold
EvaluationPeriods: '1'
Period: '300'
Statistic: Sum
Threshold: '1'
AlarmSnsTopic:
Type: 'AWS::SNS::Topic'
Condition: CreateAlarmLambda
Properties:
TopicName: !Ref AlarmSnsTopicName
Subscription:
- Endpoint: !GetAtt
- AlarmLambda
- Arn
Protocol: lambda
DependsOn:
- AlarmLambda
AlarmLambda:
Type: 'AWS::Lambda::Function'
Condition: CreateAlarmLambda
Properties:
FunctionName: !Ref AlarmLambdaFunctionName
Code:
S3Bucket: !Ref AlarmLambdaBucketName
S3Key: !Ref AlarmLambdaBucketKey
Description: >-
Lamda function used to send notification for AWS alarms. This was
created from a cloudformation stack
Environment:
Variables:
SLACK_WEBHOOK: !Ref AlarmSlackWebhook
MemorySize: 128
Handler: "snstoslack.lambda_handler"
Role: !GetAtt
- LambdaExecutionRole
- Arn
Timeout: 5
Runtime: python3.8
DependsOn:
- LambdaExecutionRole
LambdaExecutionRole:
Type: 'AWS::IAM::Role'
Condition: CreateAlarmLambda
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: log
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'logs:*'
Resource: 'arn:aws:logs:*:*:*'
- PolicyName: snssubscribe
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- 'sns:Publish'
- 'sns:Unsubscribe'
- 'sns:Subscribe'
- 'sns:ListSubscriptions'
Resource: !Join
- ''
- - 'arn:aws:sns:'
- !Ref 'AWS::Region'
- ':'
- !Ref 'AWS::AccountId'
- ':'
- !Ref AlarmSnsTopicName
LambdaInvokePermission:
Type: 'AWS::Lambda::Permission'
Condition: CreateAlarmLambda
Properties:
Action: 'lambda:InvokeFunction'
Principal: sns.amazonaws.com
SourceArn: !Ref AlarmSnsTopic
FunctionName: !GetAtt
- AlarmLambda
- Arn
## A wild open securitygroup use for HoneyHost to accept traffic from everywhere and alert upon visit.
HoneyHostSecurityGroup:
Type: AWS::EC2::SecurityGroup
Condition: CreateHoneyHost
Properties:
GroupDescription: Allow http to client host
VpcId: !Ref HoneyHostVpcId
SecurityGroupIngress:
- IpProtocol: -1
FromPort: 0
ToPort: 65535
CidrIp: 0.0.0.0/0
SecurityGroupEgress:
- IpProtocol: -1
FromPort: 0
ToPort: 65535
CidrIp: 0.0.0.0/0
HoneyHostRole:
Type: "AWS::IAM::Role"
Condition: CreateHoneyHost
Properties:
RoleName: HoneyHostRole
Policies:
-
PolicyName: "publish-to-alarm-sns-topic"
PolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Action: "SNS:Publish"
Resource: !Ref AlarmSnsTopic
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Principal:
Service:
- "ec2.amazonaws.com"
Action:
- "sts:AssumeRole"
# Lesson learnt: You can't reference the role directly in AWS::EC2::Instance Property ... you need this.. duh
HoneyHostInstanceProfile:
Type: "AWS::IAM::InstanceProfile"
Condition: CreateHoneyHost
Properties:
Path: "/"
Roles:
- !Ref HoneyHostRole
HoneyHostEC2:
Type: AWS::EC2::Instance
Condition: CreateHoneyHost
Properties:
ImageId: !Ref HoneyHostAmi
IamInstanceProfile: !Ref HoneyHostInstanceProfile
InstanceType: t2.micro
KeyName: !If
- CreateHoneyHostWithKey
- !Ref HoneyHostSshKeyName
- !Ref "AWS::NoValue"
SecurityGroupIds:
- !GetAtt HoneyHostSecurityGroup.GroupId
SubnetId: !Ref HoneyHostSubnetId
UserData:
Fn::Base64: !Sub |
#!/bin/bash -xe
apt update
apt install -y knockd awscli
cat <<EOF >/etc/knockd.conf
[options]
UseSyslog
[445]
sequence = 445
seq_timeout = 1
command = aws --region ${AWS::Region} sns publish --topic-arn "${AlarmSnsTopic}" --message "HoneyHost SMB port 445 was knocked by %IP%"
tcpflags = syn
[21]
sequence = 21
seq_timeout = 1
command = aws --region ${AWS::Region} sns publish --topic-arn "${AlarmSnsTopic}" --message "HoneyHost FTP port 21 was knocked by %IP%"
tcpflags = syn
[23]
sequence = 23
seq_timeout = 1
command = aws --region ${AWS::Region} sns publish --topic-arn "${AlarmSnsTopic}" --message "HoneyHost Telnet port 23 was knocked by %IP%"
tcpflags = syn
[80]
sequence = 80
seq_timeout = 1
command = aws --region ${AWS::Region} sns publish --topic-arn "${AlarmSnsTopic}" --message "HoneyHost HTTP port 80 was knocked by %IP%"
tcpflags = syn
EOF
systemctl enable knockd.service
systemctl restart knockd.service
# We are exporting our LambdaARN and Alarm SNS topic arn incase we want to reuse it from another cloudformation stack in the future.
Outputs:
AlarmLambdaArn:
Condition: CreateAlarmLambda
Description: The ARN of our AlarmLambda function
Value: !GetAtt
- AlarmLambda
- Arn
AlarmSnsTopicArn:
Condition: CreateAlarmLambda
Description: The arn of the SNS topic which trigger our Lambda function
Value: !Ref AlarmSnsTopic