Search found 350 matches

by CodeX
Sun Jan 18, 2015 1:07 am
Forum: The Hacker's Server
Topic: Where is everyone?
Replies: 31
Views: 77833

It looks like 2009 was the heyday of this site judging by the Most users ever online was 793 on Fri Oct 02, 2009 3:44 pm on the index page and distant memories, around two years after the site started up ( 15 April~15 May 2007 ). I guess this site has been stagnating on Google for these past 6 years...
by CodeX
Wed Oct 22, 2014 4:43 pm
Forum: Crossflip
Topic: Code optimization
Replies: 57
Views: 165297

Try adding a "Accept-Encoding: gzip" header to your request
by CodeX
Sat Jun 21, 2014 2:11 am
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 23712

And here is a backwards Python solution that makes things nice and simple :3 s = "93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6x5x9698222x771237745034x51335...
by CodeX
Fri Jun 20, 2014 4:32 pm
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 23712

This seems like a perfectly good excuse to play with asm/masm32 again: .386 .MODEL flat, stdcall OPTION CaseMap:None include \masm32\macros\macros.asm include \masm32\include\masm32.inc includelib \masm32\lib\masm32.lib include \masm32\include\kernel32.inc includelib \masm32\lib\kernel32.lib .DATA I...
by CodeX
Fri May 23, 2014 4:00 pm
Forum: Challenges
Topic: Challenge 'One Function'
Replies: 13
Views: 19253

The function should be returning a 17 digit decimal, there's more than one way to interpret the code
by CodeX
Thu May 22, 2014 2:31 am
Forum: General
Topic: Super Hack VM sources
Replies: 2
Views: 19401

My memory can be a little bit fuzzy but I think the PHP class for handling SuperHack went something exactly like this <?php class SHVM { public $MAX_CYCLES = 10000; private $movin = array(array(1, 0), array(0, -1), array(-1, 0), array(0, 1)); // public $MEM_HEIGHT = 8; public $MEM_HEIGHT = 128; publ...
by CodeX
Fri Feb 14, 2014 9:45 am
Forum: Challenges Solved
Topic: lotsa dots
Replies: 26
Views: 4638

See the bottom of this for automated submitting
by CodeX
Fri Nov 01, 2013 8:38 am
Forum: Challenges Solved
Topic: One Function
Replies: 10
Views: 3545

As much as I would like to claim this was intentional, I think it is just a coincidence. If I recall basic x86 instructions in 16,32 & 64bit are essentially the same (it just depends on the processor mode), and I think there would only be one or two places where the instructions take immediate v...
by CodeX
Wed Aug 21, 2013 3:31 am
Forum: Challenges Solved
Topic: Russian Dolls
Replies: 40
Views: 4635

If you give it a good bash the answer will simply fall out :D

Code: Select all

wget -qO a.z http://www.hacker.org/challenge/misc/doll.bin
while true
do
    (gzip -d a.z 2>/dev/null && mv a a.z) || break
done
cat a.z
rm a.z
by CodeX
Mon Aug 12, 2013 1:39 pm
Forum: The Hacker's Server
Topic: I HAVE A DREAM...and thats to learn...
Replies: 3
Views: 24877

You may also have to complete a challenges like Who goes there?, this probably isn't the place to post about "a IP Flodder" though.
by CodeX
Sun Aug 11, 2013 5:23 pm
Forum: Challenges
Topic: ASM cracking
Replies: 3
Views: 9863

Maeda Path -> Number Theory -> One Function may be of interest to you. I guess there aren't more simply because people haven't submitted them, it could also be because they have been rejected - platform dependency + arbitrary code execution could be grounds for rejection. There are also plenty of C...
by CodeX
Thu Jul 25, 2013 2:28 am
Forum: Challenges Solved
Topic: Brokenest Keys
Replies: 26
Views: 3870

I looks like I can take the accolades for longest + ugliest code from megabreit and slowest from elsewhere! The code is 1806 bytes long, takes 1802+6(n-1) cycles and limited to 0<n<=250 where n is the lowest of the two values. It basically uses memory[0:250] as a lookup table for function addresses ...
by CodeX
Tue Jul 23, 2013 11:49 pm
Forum: Challenges
Topic: 'Mod' Challenge
Replies: 19
Views: 23199

Assuming that was with code that prints nothing out: it's because an empty string is assumed to be 0 by PHP's casting so happens to be interpreted as correct by the test script. As far as I recall all the VM test scripts don't print out the input/output for any tests passed and even some 'secret' te...
by CodeX
Tue Jun 04, 2013 7:41 pm
Forum: Challenges
Topic: Growing Bacteria
Replies: 39
Views: 53853

Luk.Online wrote:I think I've programmed the correct algorithm, but is the only way to figure out the answer by iterate

Code: Select all

while (amount < 1000000000000);
???
I'm not going to Fib, Lucas can solve it with a closed-form equation.
by CodeX
Mon Apr 15, 2013 11:27 pm
Forum: Challenges
Topic: Growing Bacteria
Replies: 39
Views: 53853

I think the page you get after solving a challenge points you to the Challenges form instead of the Challenges Solved one - I noticed this after solving Super Brainfuck the other day, there wasn't even a thread in the solved section for it which doesn't seem ideal. As much as I like the challenges a...