forked from balidani/tinyctf-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.json
executable file
·86 lines (86 loc) · 2.83 KB
/
tasks.json
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
{"categories": [
{"id": 0, "name": "Misc.", "short_name": "Misc", "tasks": [
{
"id": 0,
"row": 0,
"name": "Test flag, please ignore",
"score": "50",
"flag": "flag{hello_world}",
"desc": "The flag is hello_world, with the flag tag and brackets",
"file": "misc50.zip"
},
{
"id": 1,
"row": 1,
"name": "Test flag, please ignore 2",
"score": "100",
"flag": "flag{test_test}",
"desc": "The flag is test_test, with the flag tag and brackets",
"file": "misc100.zip"
}
]},
{"id": 1, "name": "Web", "short_name": "Web", "tasks": [
{
"id": 2,
"row": 0,
"name": "Some sqli task",
"score": "100",
"flag": "flag{web_test}",
"desc": "The flag is web_test, with the flag tag and brackets",
"file": "web100.zip"
}
]},
{"id": 2, "name": "Reversing", "short_name": "Rev", "tasks": [
{
"id": 3,
"row": 0,
"name": "gdb is your friend",
"score": "100",
"flag": "flag{reversing_is_fun}",
"desc": "The flag is reversing_is_fun, with the flag tag and brackets",
"file": "rev100.zip"
}
]},
{"id": 3, "name": "Exploit", "short_name": "Exp", "tasks": [
{
"id": 4,
"row": 0,
"name": "Smashing the stack for fun and profit",
"score": "200",
"flag": "flag{pwning_is_even_more_fun}",
"desc": "The flag is pwning_is_even_more_fun, with the flag tag and brackets",
"file": "pwn200.zip"
}
]},
{"id": 4, "name": "Crypto", "short_name": "Cry", "tasks": [
{
"id": 5,
"row": 0,
"name": "Some simple crypto task here",
"score": "100",
"flag": "flag{some_crypto_task}",
"desc": "The flag is some_crypto_task, with the flag tag and brackets",
"file": "cry100.zip"
},
{
"id": 6,
"row": 1,
"name": "More crypto tasks!",
"score": "200",
"flag": "flag{more_crypto}",
"desc": "The flag is more_crypto, with the flag tag and brackets",
"file": "cry200.zip"
}
]},
{"id": 5, "name": "Stego", "short_name": "Steg", "tasks": [
{
"id": 7,
"row": 0,
"name": "Ucucuga",
"score": "100",
"flag": "flag{ucucuga}",
"desc": "The flag is ucucuga, with the flag tag and brackets",
"file": "stego100.zip"
}
]}
]}