added challenge 147

This commit is contained in:
Kristian Krsnik 2023-08-23 23:21:52 +02:00
parent e8dd0365e5
commit 8018d9fe58
3 changed files with 9 additions and 0 deletions

6
000-999/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\").";
}

1
000-999/147/inputs/flag Normal file
View File

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

2
000-999/147/main.py Normal file
View File

@ -0,0 +1,2 @@
with open('./000-999/147/inputs/flag') as file:
print(file.read())