Search found 2 matches

by alakani
Fri Jul 06, 2012 2:43 am
Forum: Challenges Solved
Topic: Telecran
Replies: 24
Views: 2015

More PHP, wewt. I'm glad the flag names contained U, D, L, R. This one was fun :D $page = file_get_contents('http://www.hacker.org/challenge/chal.php?id=52&name=alakani&password=XXXXXXXXXXXXX'); $lines = explode("\n", $page); $x = 10; $y = 10; $lastx = 10; $lasty = 10; $answer = im...
by alakani
Thu Jul 05, 2012 11:06 pm
Forum: Challenges Solved
Topic: didactic green
Replies: 12
Views: 1210

using imagemagick: $ stream greenline.png - these bytes are ascii text, as you obviously guessed. your answer is 'ilearnsogood'. That is so pimp, thank you for sharing. I just used PHP: $picture = imagecreatefrompng('greenline.png'); $width = imagesx($picture); for ($x = 0; $x < $width; $x++) { $pi...