-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevsecops-ctf-template.yml
More file actions
270 lines (261 loc) · 8.45 KB
/
devsecops-ctf-template.yml
File metadata and controls
270 lines (261 loc) · 8.45 KB
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
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Participant Stack for DevSecOps CTF Workshop
Parameters:
AgreeInSydney:
Description: Type something if you have checked your console is in Sydney/ap-southeast-2
Type: String
ParticipantName:
Description: A witty name for you as an individual participant (for scoreboard).
Type: String
SquadName:
Description: A witty name for your blue squad / team (last writer wins).
Type: String
SecretHash:
Description: Your secret hash, given to you on paper, to register.
Type: String
SquadHash:
Description: Your Team's hash, given to you on paper, to register with a squad / team.
Type: String
RegisterUrl:
Default: https://api.security.catsndogs.lol/
Description: Registration endpoint, to get you onboard with the CATSNDOGS.LOL Security team.
Type: String
Outputs:
DevSecOpsStarterLink:
Value:
Fn::Sub: https://${AWS::Region}.console.aws.amazon.com/lambda/home?region=${AWS::Region}#/functions/${DevSecOpsStarter}?tab=code
EndpointURL:
Value:
Fn::Sub: https://${RestAPI}.execute-api.${AWS::Region}.amazonaws.com/api/
Resources:
APIHandler:
Properties:
CodeUri: s3://devsecops-assets/participant.zip
Environment:
Variables:
LAMBDA: !Ref DevSecOpsStarter
TESTLAMBDA: !Ref TestDevSecOpsStarter
Events:
indexpost6a99:
Properties:
Method: post
Path: /
RestApiId:
Ref: RestAPI
Type: Api
testpost098f:
Properties:
Method: post
Path: /test
RestApiId:
Ref: RestAPI
Type: Api
Handler: app.app
MemorySize: 256
Policies: AWSLambdaFullAccess
Runtime: python3.6
Tags:
aws-chalice: version=1.0.2:stage=dev:app=participant
Timeout: 60
Type: AWS::Serverless::Function
RestAPI:
Properties:
DefinitionBody:
definitions:
Empty:
title: Empty Schema
type: object
info:
title: participant
version: '1.0'
paths:
/:
options:
consumes:
- application/json
produces:
- application/json
responses:
'200':
description: 200 response
headers:
Access-Control-Allow-Headers:
type: string
Access-Control-Allow-Methods:
type: string
Access-Control-Allow-Origin:
type: string
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
passthroughBehavior: when_no_match
requestTemplates:
application/json: '{"statusCode": 200}'
responses:
default:
responseParameters:
method.response.header.Access-Control-Allow-Headers: '''Authorization,Content-Type,X-Amz-Date,X-Amz-Security-Token,X-Api-Key'''
method.response.header.Access-Control-Allow-Methods: '''POST,OPTIONS'''
method.response.header.Access-Control-Allow-Origin: '''*'''
statusCode: '200'
type: mock
post:
consumes:
- application/json
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
/test:
options:
consumes:
- application/json
produces:
- application/json
responses:
'200':
description: 200 response
headers:
Access-Control-Allow-Headers:
type: string
Access-Control-Allow-Methods:
type: string
Access-Control-Allow-Origin:
type: string
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
passthroughBehavior: when_no_match
requestTemplates:
application/json: '{"statusCode": 200}'
responses:
default:
responseParameters:
method.response.header.Access-Control-Allow-Headers: '''Authorization,Content-Type,X-Amz-Date,X-Amz-Security-Token,X-Api-Key'''
method.response.header.Access-Control-Allow-Methods: '''POST,OPTIONS'''
method.response.header.Access-Control-Allow-Origin: '''*'''
statusCode: '200'
type: mock
post:
consumes:
- application/json
produces:
- application/json
responses:
'200':
description: 200 response
schema:
$ref: '#/definitions/Empty'
x-amazon-apigateway-integration:
contentHandling: CONVERT_TO_TEXT
httpMethod: POST
passthroughBehavior: when_no_match
responses:
default:
statusCode: '200'
type: aws_proxy
uri:
Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${APIHandler.Arn}/invocations
schemes:
- https
swagger: '2.0'
x-amazon-apigateway-binary-media-types:
- application/octet-stream
- application/x-tar
- application/zip
- audio/basic
- audio/ogg
- audio/mp4
- audio/mpeg
- audio/wav
- audio/webm
- image/png
- image/jpg
- image/gif
- video/ogg
- video/mpeg
- video/webm
StageName: api
Type: AWS::Serverless::Api
RegistratorResource:
Type: "Custom::Registrator"
Properties:
ServiceToken: !GetAtt Registrator.Arn
ParticipantName: !Ref ParticipantName
SecretHash: !Ref SecretHash
SquadName: !Ref SquadName
SquadHash: !Ref SquadHash
RegisterUrl: !Ref RegisterUrl
Endpoint:
Fn::Sub: https://${RestAPI}.execute-api.${AWS::Region}.amazonaws.com/api/
Registrator:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket: devsecops-assets
S3Key: custom_resource.zip
Handler: custom_resource.handler
Runtime: python3.6
Timeout: 30
Role: !GetAtt LambdaExecutionRole.Arn
DevSecOpsStarter:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket: devsecops-assets
S3Key: devsecops_starter.zip
Handler: devsecops.handler
Runtime: python3.6
Timeout: 29
MemorySize: 512
Role: !GetAtt LambdaExecutionRole.Arn
TestDevSecOpsStarter:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket: devsecops-assets
S3Key: devsecops_starter.zip
Handler: devsecops.handler
Runtime: python3.6
Timeout: 29
MemorySize: 256
Role: !GetAtt LambdaExecutionRole.Arn
LambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: "/"
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
Transform: AWS::Serverless-2016-10-31