-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopulate.py
More file actions
498 lines (419 loc) · 15.9 KB
/
populate.py
File metadata and controls
498 lines (419 loc) · 15.9 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
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import datetime
import hashlib
import random
import argparse
from CTFd import create_app
from CTFd.cache import clear_challenges, clear_config, clear_standings, clear_pages
from CTFd.models import (
Users,
Teams,
Challenges,
Flags,
Hints,
Awards,
ChallengeFiles,
Fails,
Solves,
Tracking,
Brackets,
Solutions,
Ratings,
)
from faker import Faker
fake = Faker()
parser = argparse.ArgumentParser()
parser.add_argument("--mode", help="Set user mode", default="teams")
parser.add_argument("--users", help="Amount of users to generate", default=50, type=int)
parser.add_argument("--teams", help="Amount of teams to generate", default=10, type=int)
parser.add_argument(
"--challenges", help="Amount of challenges to generate", default=20, type=int
)
parser.add_argument(
"--awards", help="Amount of awards to generate", default=5, type=int
)
parser.add_argument(
"--brackets", help="Amount of brackets to generate", default=5, type=int
)
args = parser.parse_args()
app = create_app()
mode = args.mode
USER_AMOUNT = args.users
TEAM_AMOUNT = args.teams if args.mode == "teams" else 0
CHAL_AMOUNT = args.challenges
AWARDS_AMOUNT = args.awards
BRACKETS_AMOUNT = args.brackets
categories = [
"Exploitation",
"Reversing",
"Web",
"Forensics",
"Scripting",
"Cryptography",
"Networking",
]
companies = ["Corp", "Inc.", "Squad", "Team"]
icons = [
None,
"shield",
"bug",
"crown",
"crosshairs",
"ban",
"lightning",
"code",
"cowboy",
"angry",
]
def gen_text():
return fake.text()
def gen_sentence():
return fake.sentence()
def gen_name():
return fake.first_name()
def gen_team_name():
return fake.word().capitalize() + str(random.randint(1, 1000))
def gen_email():
return fake.email()
def gen_category():
return random.choice(categories)
def gen_affiliation():
return (fake.word() + " " + random.choice(companies)).title()
def gen_value():
return random.choice(range(100, 500, 50))
def gen_cost():
return random.choice([0, 50, 100])
def gen_word():
return fake.word()
def gen_icon():
return random.choice(icons)
def gen_file():
return fake.file_name()
def gen_ip():
return fake.ipv4()
def gen_rating():
return random.choice((-1, 1))
def random_date(start, end):
return start + datetime.timedelta(
seconds=random.randint(0, int((end - start).total_seconds()))
)
def random_chance():
return random.random() > 0.5
if __name__ == "__main__":
with app.app_context():
db = app.db
# Generating Challenges
print("GENERATING CHALLENGES")
for x in range(CHAL_AMOUNT):
word = gen_word()
chal = Challenges(
name=word,
description=gen_text(),
attribution=f"Written by {gen_name()}",
value=gen_value(),
category=gen_category(),
)
db.session.add(chal)
db.session.commit()
f = Flags(challenge_id=x + 1, content=word, type="static")
db.session.add(f)
db.session.commit()
# Generating Solutions
print("GENERATING SOLUTIONS")
solutions = []
for x in range(CHAL_AMOUNT):
solution = Solutions(
content=" ".join([gen_text() for _ in range(5)]),
state="visible",
challenge_id=x + 1,
)
db.session.add(solution)
solutions.append(solution)
db.session.commit()
# Generating Hints
print("GENERATING HINTS")
for challenge_id in range(1, CHAL_AMOUNT + 1):
# Each challenge gets 0-3 hints (weighted towards having hints)
num_hints = random.choices([0, 1, 2, 3], weights=[20, 30, 35, 15])[0]
for hint_num in range(num_hints):
hint = Hints(
title=gen_sentence(),
content=gen_text(),
cost=gen_cost(),
challenge_id=challenge_id,
type="standard",
)
db.session.add(hint)
db.session.commit()
# Generating Files
print("GENERATING FILES")
AMT_CHALS_WITH_FILES = int(CHAL_AMOUNT * (3.0 / 4.0))
for x in range(AMT_CHALS_WITH_FILES):
chal = random.randint(1, CHAL_AMOUNT)
filename = gen_file()
md5hash = hashlib.md5(filename.encode("utf-8")).hexdigest()
chal_file = ChallengeFiles(
challenge_id=chal, location=md5hash + "/" + filename
)
db.session.add(chal_file)
db.session.commit()
# Generating Brackets
print("GENERATING BRACKETS")
for x in range(BRACKETS_AMOUNT):
bracket = Brackets(
name=gen_team_name(), description=gen_sentence(), type="teams"
)
db.session.add(bracket)
for x in range(BRACKETS_AMOUNT):
bracket = Brackets(
name=gen_team_name(), description=gen_sentence(), type="users"
)
db.session.add(bracket)
db.session.commit()
TEAM_BRACKETS = [b.id for b in Brackets.query.filter_by(type="teams").all()]
USER_BRACKETS = [b.id for b in Brackets.query.filter_by(type="users").all()]
# Generating Teams
print("GENERATING TEAMS")
used = []
used_oauth_ids = []
count = 0
while count < TEAM_AMOUNT:
name = gen_team_name()
if name not in used:
used.append(name)
team = Teams(name=name, password="password")
if random_chance():
team.affiliation = gen_affiliation()
if random_chance():
oauth_id = random.randint(1, 1000)
while oauth_id in used_oauth_ids:
oauth_id = random.randint(1, 1000)
used_oauth_ids.append(oauth_id)
team.oauth_id = oauth_id
if random_chance():
team.bracket_id = random.choice(TEAM_BRACKETS)
db.session.add(team)
count += 1
db.session.commit()
# Generating Users
print("GENERATING USERS")
used = []
used_oauth_ids = []
count = 0
while count < USER_AMOUNT:
name = gen_name()
if name not in used:
used.append(name)
try:
user = Users(name=name, email=gen_email(), password="password")
user.verified = True
if random_chance():
user.affiliation = gen_affiliation()
if random_chance():
oauth_id = random.randint(1, 1000)
while oauth_id in used_oauth_ids:
oauth_id = random.randint(1, 1000)
used_oauth_ids.append(oauth_id)
user.oauth_id = oauth_id
if random_chance():
user.bracket_id = random.choice(USER_BRACKETS)
if mode == "teams":
user.team_id = random.randint(1, TEAM_AMOUNT)
db.session.add(user)
db.session.flush()
track = Tracking(ip=gen_ip(), user_id=user.id)
db.session.add(track)
db.session.flush()
count += 1
except Exception:
pass
db.session.commit()
if mode == "teams":
# Assign Team Captains
print("GENERATING TEAM CAPTAINS")
teams = Teams.query.all()
for team in teams:
captain = (
Users.query.filter_by(team_id=team.id)
.order_by(Users.id)
.limit(1)
.first()
)
if captain:
team.captain_id = captain.id
db.session.commit()
# Generating Challenge Open Tracking Events
print("GENERATING CHALLENGE TRACKING EVENTS")
base_time = datetime.datetime.utcnow() + datetime.timedelta(minutes=-12000)
for user_id in range(1, USER_AMOUNT + 1):
user = Users.query.filter_by(id=user_id).first()
if user:
# Each user opens/views some random challenges (60-100% of challenges)
num_challenges_to_open = random.randint(
int(CHAL_AMOUNT * 0.6), CHAL_AMOUNT
)
challenges_to_open = random.sample(
range(1, CHAL_AMOUNT + 1), num_challenges_to_open
)
user_time = base_time + datetime.timedelta(
minutes=random.randint(0, 1000)
)
for challenge_id in challenges_to_open:
# Create tracking event for challenge open
track_event = Tracking(
type="challenges.open",
ip=gen_ip(),
target=challenge_id,
user_id=user_id,
date=user_time,
)
db.session.add(track_event)
# Increment time by 1-30 minutes between challenge opens
user_time += datetime.timedelta(minutes=random.randint(1, 30))
db.session.commit()
# Generating Solves
print("GENERATING SOLVES")
if mode == "users":
for x in range(USER_AMOUNT):
used = []
base_time = datetime.datetime.utcnow() + datetime.timedelta(
minutes=-10000
)
for y in range(random.randint(1, CHAL_AMOUNT)):
chalid = random.randint(1, CHAL_AMOUNT)
if chalid not in used:
used.append(chalid)
user = Users.query.filter_by(id=x + 1).first()
solve = Solves(
user_id=user.id,
team_id=user.team_id,
challenge_id=chalid,
ip="127.0.0.1",
provided=gen_word(),
)
new_base = random_date(
base_time,
base_time
+ datetime.timedelta(minutes=random.randint(30, 60)),
)
solve.date = new_base
base_time = new_base
db.session.add(solve)
db.session.commit()
elif mode == "teams":
for x in range(1, TEAM_AMOUNT):
used_teams = []
used_users = []
base_time = datetime.datetime.utcnow() + datetime.timedelta(
minutes=-10000
)
team = Teams.query.filter_by(id=x).first()
members_ids = [member.id for member in team.members]
for y in range(random.randint(1, CHAL_AMOUNT)):
chalid = random.randint(1, CHAL_AMOUNT)
user_id = random.choice(members_ids)
if (chalid, team.id) not in used_teams:
if (chalid, user_id) not in used_users:
solve = Solves(
user_id=user_id,
team_id=team.id,
challenge_id=chalid,
ip="127.0.0.1",
provided=gen_word(),
)
new_base = random_date(
base_time,
base_time
+ datetime.timedelta(minutes=random.randint(30, 60)),
)
solve.date = new_base
base_time = new_base
db.session.add(solve)
db.session.commit()
used_teams.append((chalid, team.id))
used_users.append((chalid, user_id))
db.session.commit()
# Generating Awards
print("GENERATING AWARDS")
for x in range(USER_AMOUNT):
base_time = datetime.datetime.utcnow() + datetime.timedelta(minutes=-10000)
for _ in range(random.randint(0, AWARDS_AMOUNT)):
user = Users.query.filter_by(id=x + 1).first()
award = Awards(
user_id=user.id,
team_id=user.team_id,
name=gen_word(),
value=random.randint(-10, 10),
icon=gen_icon(),
)
new_base = random_date(
base_time,
base_time + datetime.timedelta(minutes=random.randint(30, 60)),
)
award.date = new_base
base_time = new_base
db.session.add(award)
db.session.commit()
# Generating Wrong Flags
print("GENERATING WRONG FLAGS")
for x in range(USER_AMOUNT):
used = []
base_time = datetime.datetime.utcnow() + datetime.timedelta(minutes=-10000)
for y in range(random.randint(1, CHAL_AMOUNT * 20)):
chalid = random.randint(1, CHAL_AMOUNT)
if chalid not in used:
used.append(chalid)
user = Users.query.filter_by(id=x + 1).first()
wrong = Fails(
user_id=user.id,
team_id=user.team_id,
challenge_id=chalid,
ip="127.0.0.1",
provided=gen_word(),
)
new_base = random_date(
base_time,
base_time + datetime.timedelta(minutes=random.randint(30, 60)),
)
wrong.date = new_base
base_time = new_base
db.session.add(wrong)
db.session.commit()
db.session.commit()
# Generating Ratings and Reviews for Solved Challenges
print("GENERATING RATINGS AND REVIEWS")
solves = Solves.query.all()
for solve in solves:
# Only some users will rate challenges they solve (60% chance)
if random.random() < 0.6:
try:
# Check if this user has already rated this challenge
existing_rating = Ratings.query.filter_by(
user_id=solve.user_id, challenge_id=solve.challenge_id
).first()
if not existing_rating:
rating = Ratings(
user_id=solve.user_id,
challenge_id=solve.challenge_id,
value=gen_rating(),
review=gen_sentence()
if random.random() < 0.7
else None, # 70% chance of review
date=solve.date
+ datetime.timedelta(
minutes=random.randint(
5, 120
) # Rate within 5 minutes to 2 hours after solving
),
)
db.session.add(rating)
except Exception:
# Skip if there's any constraint violation
pass
db.session.commit()
db.session.close()
clear_config()
clear_standings()
clear_challenges()
clear_pages()