Search found 350 matches
- 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...
- Wed Oct 22, 2014 4:43 pm
- Forum: Crossflip
- Topic: Code optimization
- Replies: 57
- Views: 165297
- Sat Jun 21, 2014 2:11 am
- Forum: Challenges Solved
- Topic: Valuation
- Replies: 103
- Views: 23712
- 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...
- Fri May 23, 2014 4:00 pm
- Forum: Challenges
- Topic: Challenge 'One Function'
- Replies: 13
- Views: 19253
- 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...
- 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
- Fri Nov 01, 2013 8:38 am
- Forum: Challenges Solved
- Topic: One Function
- Replies: 10
- Views: 3545
- 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

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
- 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.
- 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...
- 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 ...
- 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...
- Tue Jun 04, 2013 7:41 pm
- Forum: Challenges
- Topic: Growing Bacteria
- Replies: 39
- Views: 53853
I'm not going to Fib, Lucas can solve it with a closed-form equation.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);
- 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...