Search found 10 matches
- Thu Mar 12, 2009 8:41 pm
- Forum: The Hacker's Server
- Topic: HEY!
- Replies: 26
- Views: 20136
- Thu Mar 12, 2009 8:05 pm
- Forum: The Hacker's Server
- Topic: Server hacked
- Replies: 111
- Views: 317826
- Wed Mar 04, 2009 10:02 pm
- Forum: The Hacker's Server
- Topic: List of Hacker.org members online
- Replies: 16
- Views: 19928
Passwords should still be updated. (for email too if you happen to use the same password) That should be emphasized ! People using the same combination of username/email and password for common web-services should change their passwords immediatly!!! I would also recommend suspending accounts at ha...
- Sun Jan 25, 2009 1:20 am
- Forum: General Puzzles
- Topic: Chart history's meaning
- Replies: 2
- Views: 20268
- Fri Jan 02, 2009 11:37 pm
- Forum: Challenges Solved
- Topic: Breakout Extreme
- Replies: 13
- Views: 1614
- Wed Dec 31, 2008 3:32 pm
- Forum: Challenges Solved
- Topic: Broken Key
- Replies: 12
- Views: 4191
Broken Key
Hmm, I expected this to be harder. My 1st idea was to decrement both values in a loop and break out when the first number falls to zero. But before testing this solution I thaught about the cycle limit and potentially negative values and discarded that idea. But as I didn't had an idea how to test f...
- Sat Dec 13, 2008 3:39 pm
- Forum: Challenges Solved
- Topic: Typo
- Replies: 5
- Views: 1237
- Sun Dec 07, 2008 7:56 pm
- Forum: Challenges Solved
- Topic: Bigger Fib
- Replies: 10
- Views: 2286
Bigger Fib
That was fun. While solving "Big Fib" with bc driven by a perl-script and using the dijkstra-simplification, I realized that getting the solution for this challenge would take more time and cycles than I want to spent on it. So, I changed to C with GMP and was really thrilled by the speed ...
- Thu Nov 27, 2008 5:51 pm
- Forum: Challenges
- Topic: One Minute man challenge
- Replies: 10
- Views: 15459
Re: client or server time
If it were client time then you could spoof the packets ... Normally, HTTP doesn't expect that the client sends a "Date" header with the request. So, I don't think the server cares about one, if given. Anyway, I solved it and asked myself afterwards if I missed any hint on what time the o...
- Wed Nov 19, 2008 12:05 pm
- Forum: Challenges Solved
- Topic: UpCount
- Replies: 28
- Views: 6527
I turned the program into a for-loop starting with 1 and solved it with that perl-snippet
Code: Select all
my $depth;
my $cc = 1;
for ( $depth = 1; $depth <= 11589; $depth++ ) {
$cc = $cc + ($depth % 7) + (((($cc ^ $depth) % 4) == 0) ? 1 : 0);
}
print $cc, "\n";