working example

This commit is contained in:
2023-08-24 18:40:32 +02:00
parent f83393b0a7
commit 46ce08588a
9 changed files with 48 additions and 21 deletions

6
exercises/147/info.nix Normal file
View File

@ -0,0 +1,6 @@
{
name = "Obedient Cat";
points = 5;
url = "https://play.picoctf.org/practice/challenge/147";
description = "This file has a flag in plain sight (aka \"in-the-clear\").";
}

View File

@ -0,0 +1 @@
picoCTF{s4n1ty_v3r1f13d_4a2b35fd}

5
exercises/147/main.py Normal file
View File

@ -0,0 +1,5 @@
if __name__ == '__main__':
with open('./exercises/147/inputs/flag') as file:
input = file.read()
print(input)