Search found 3 matches

by awf
Tue May 17, 2011 7:28 pm
Forum: Challenges Solved
Topic: Don't Blink
Replies: 22
Views: 1952

First i was confused how to get the one.php.
Then i just read its header with the web console
build into the firefox beta. 8)
by awf
Tue May 17, 2011 3:38 pm
Forum: Challenges Solved
Topic: Russian Dolls
Replies: 40
Views: 3185

Script?

I solved this like "mystery file" by pressing the unpack shortcut in 7-zip until the solution was found. Does somebody know how this .bin-packing works? I first tried to write a script from hand to solve "mystery file" but the input string from the file is seemingly random hex-nu...
by awf
Sun May 08, 2011 4:16 pm
Forum: Challenges Solved
Topic: Lorem Ipsum
Replies: 34
Views: 3772

def wordcount(path) file=File.open(path);a=IO.read(file).split(" ");b=[[a[0],1]]; for i in 1..a.length-1 for j in 0..b.length-1 if a[i].chomp(",").chomp(".")==b[j][0].chomp(",").chomp(".") then b[j][1]=b[j][1]+1;c=false;break; else c=true; end; end;...