School-CTF was a short 5 hour CTF. Nevertheless, they offered awesome challenges and it was fun. Internetwache made it to the 17th place.
The jury posted their sample solutions and most of them don’t differ to ours. So we’re just going to write about solutions which we approached differently.
Admin 200: Awesome web
After saving the private key admin
, you could connect to one of the SSH ports:
ssh -v -p 15026 -i /tmp/admin.key -F /dev/null admin@sibears.ru
A simple shell welcomed us:
1 2 3 4 |
|
You can see the flag, but you only have a limited set of commands. I gave history
a try and scrolled through the commands of other CTF participants (at least I didn’t use the majority of the commands). Luckly I discovered a strange looking string therein which turned out to be the correct flag: 4dm1n_1s_1mp0r74nt_m^^mk3y
We didn’t think that this was the intended solution, so we wanted to see if we could extract the flag ourself. We learned that there are more restrictions than just a limited set of commands:
1 2 3 4 |
|
After playing around for a while and almost giving up because of the forbidden syntax
-error, we tried the following command:
1 2 |
|
YAY - But we still haven’t figured out if that’s a legit solution or a bypass for the filters.
Crypto 100: Lazy cryptanalyst
We didn’t google for the website in the picture, but started to write a small python script to substitute the characters:
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 |
|
After solving it this way, Denis hinted a website quipqiup.com which instantly found the correct substitutions.
Joy 100: Highly professional
The only difference to the given solution was, that we used Google’s reverse image search to find out that is has something to do with the hacker serie Mr. Robot
. Googling further lead to a wiki which listed the names of three employees. One of them was the flag: Gideon_Goddard
Stegano 100: Pure color
The sample solution uses MS Paint to change the background color. Using GIMP we played around with the color curves of red, green & blue. Moving the blue color curve to the right-hand bottom corner revealed the yellow label with the flag: flag_is_this_is_a_simple_stego
Flags
Here’s a list with all services we solved:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
|
The team of internetwache.org