Search found 9 matches

by wodkahack0r
Mon Mar 04, 2019 10:26 pm
Forum: Challenges Solved
Topic: Fuzzy Dust
Replies: 2
Views: 2026

[boom@gate bin]$ ./zsteg ../../../fuzz.bmp [?] 378054 bytes of extra data after image end (IEND), offset = 0x5c4c6 extradata:0 .. file: PC bitmap, Windows 3.x format, 420 x 300 x 24 [boom@gate bin]$ ./zsteg -E "extradata:0" ../../../fuzz.bmp > ../../../output.bmp [boom@gate bin]$ zsteg did...
by wodkahack0r
Mon Mar 04, 2019 7:02 pm
Forum: Challenges Solved
Topic: Blue Skies, Green Grass
Replies: 3
Views: 2590

Didn't know that stegsolve is able to detect something like this. What command line did you use?

I used gimp, modifying some color space settings (gamma) :-D
by wodkahack0r
Sun Sep 28, 2014 8:58 pm
Forum: Challenges Solved
Topic: Slim Image
Replies: 4
Views: 2637

Nice challenge! I wrote a PHP script (don't blame me for this :D ) to read the BMG file and output an PNG. <?php $file = "picnic.bmp"; $im = fopen($file, "rb"); $img = fread($im, filesize($file)); $headersize = 108; $temp = unpack("H*",$img); $hex = $temp[1]; $header = ...
by wodkahack0r
Thu Apr 14, 2011 7:13 pm
Forum: Challenges Solved
Topic: 3280
Replies: 20
Views: 2509

There is always more than one way to do things ;-) Here is mine: 59.pl: #!/usr/bin/perl open (IN,"rfc3280.txt"); my $i; while (<IN>){ @arr = split / /, $_; for ($i=0;$i<=scalar(@arr);$i++) { if ($arr[$i] =~ /^\w{9}$/) { print $arr[$i]."\n"; } } } close (IN); Followed by bash &...
by wodkahack0r
Sat Mar 21, 2009 7:59 pm
Forum: Challenges
Topic: Primal Pi
Replies: 33
Views: 46484

Right. Well, then I need to adjust my script and try again.

[later]: Damn typo. Got it now.
by wodkahack0r
Sat Mar 21, 2009 3:44 pm
Forum: Challenges
Topic: Primal Pi
Replies: 33
Views: 46484

Hm. I found a prime (size 1000 < x < 1200) but it doesn't seem to be the right one. But my program cannot find another prime, which has that much digits :-/
by wodkahack0r
Thu Mar 12, 2009 11:41 pm
Forum: Challenges
Topic: Another Typo Challenge
Replies: 12
Views: 19527

Hm. I figured out what char to change. But it always says: '.....' is incorrect. My solution is 100% correct as any calculator gets the right result from the modified version. Any idea what could be wrong?

- Forget it. My position was off-by-one. It works now.
by wodkahack0r
Sun Mar 08, 2009 3:49 pm
Forum: Challenges
Topic: Too Many Digits
Replies: 26
Views: 37810

Still getting a 404.. :-/
by wodkahack0r
Sat Mar 07, 2009 8:59 pm
Forum: Challenges Solved
Topic: Maeda Path
Replies: 20
Views: 4827

Maeda Path

Didn't even know, that *.swf can be decompiled.. :-D