-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinfo.yml
47 lines (35 loc) · 1.39 KB
/
info.yml
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
# Info for the schoreboard
service_name: "speedrun-001"
description: |
The Fast and the Furious
For all speedrun challenges, flag is in `/flag`
tags:
- pwn
violates_flag_format: false # if this is not "true", the flag is verfied against the flag format
allow_egress: False
flag: "OOO{Ask any pwner. Any real pwner. It don't matter if you pwn by an inch or a m1L3. pwning's pwning.}" # this is the flag of the service
# Type can be normal or king_of_the_hill
type: normal
# This is the number of concurrent connections that a container should be able to handle.
# This will be tested by the test script
concurrent_connections: 16
authors:
- adamd
game_network_info:
host: speedrun-001.quals2019.oooverflow.io
port: 31337
#
# Directories below the next two are absolute in either the `service` or `interaction` docker container.
#
# These are the files that will be "public" to the teams via the scoreboard.
# The paths are relative to the repository!
public_files:
- service/speedrun-001
# Test scripts are heavily encouraged.
# All scripts should exit 0 if nothing went wrong.
# Scripts are automatically determined to be exploit scripts if they start with the word "exploit".
# Exploit scripts must output the flag using "FLAG: <FLAG>" and exit with 0 if the flag was captured correctly.
# The paths are absolute in the `interaction` docker container.
interactions:
- /exploit.sh
- /check.sh