General Linkage
Homestarrunner
MegaTokyo
Misfile
xkcd
Mac Hall
Penny Arcade
Real Life Comics
This one has you download a file that sets up several tables in a database. I scanned through much of the file until I came upon a table named "flag?" which contains a username and maybe a hashed password. I wasn't real sure what to do with it, so I decided to keep looking at the file. In the next table, named "friends" there's an entry that looks like a string of hexidecimal unicode bytes.
They all appeared to be in the printable range, so I figured I'd decode this before moving on to anything else. I used python to remove all of the "\u00" strings and then converted the remaining bytes to ascii. Oh, look, it was the flag after all: infosec_flagis_whatsorceryisthis
Yoda again. Appears to be the same image as level 1. I already did a strings scan on the image, but lets try it again. Yeah, still nothing. :) Probably related to the source again, so let's look. Hmm, css/design.css looks like a source file I haven't seen on other pages. It contains:
.thisloveis{
color: #696e666f7365635f666c616769735f686579696d6e6f7461636f6c6f72;
}
Now, that I'm sure isn't a color, and it looks like hexadecimal in the printable range, so let's decode it: infosec_flagis_heyimnotacolor
So, this one has a large PHP logo that looks kind of funky. I opened it up in Hex Workshop and immediately saw the string: infosec_flagis_aHR0cDovL3d3dy5yb2xsZXJza2kuY28udWsvaW1hZ2VzYi9wb3dlcnNsaWRlX2xvZ29fbGFyZ2UuZ2lm
I assume the final portion is encoded and isn't the actual solution. It appears to be base64 encoded, so decoding it yields: http://www.rollerski.co.uk/imagesb/powerslide_logo_large.gif. When when loaded is a logo that says "powerslide". I'm not sure if this is the answer or if it is a red herring.
This one has you download an audio file called Flag.wav. Upon listening it sounds super sped up. I tried slowing it down with Windows Media Player, but it only goes down to 50%, which isn't near slow enough. I do already have Audacity installed, so I'll use that. If I slow it down to 10 to 15% of the original speed, a voice is heard providing the solution: infosec_flagis_sound.
| <- Back | Forward -> |