Advertisement
badeip

part2.h - www.canyoucrackit.co.uk - part #2

Nov 22nd, 2011
57,697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.89 KB | None | 0 0
  1. // part2.h by Petter Wahlman, http://www.twitter.com/badeip
  2. // Solution to Part 2 of http://www.canyoucrackit.co.uk
  3. // This is the missing pice to get level 1 http://pastebin.com/cqzbkw4H to compile
  4. //
  5. // The information contained in the following array was located as base64 encoded data in the png header
  6. //
  7. // Note: The program must be executed on a 32-bit Linux distro to reveal the decrypted URL for part3
  8.  
  9. #ifndef PART2_H
  10. #define PART2_H
  11.  
  12. // base64 encoded data in the png header
  13. static char part2[] = {
  14.     0x42, 0x42, 0x42, 0x42, 0x32, 0x00, 0x00, 0x00,   0x91, 0xd8, 0xf1, 0x6d, 0x70, 0x20, 0x3a, 0xab,
  15.     0x67, 0x9a, 0x0b, 0xc4, 0x91, 0xfb, 0xc7, 0x66,   0x0f, 0xfc, 0xcd, 0xcc, 0xb4, 0x02, 0xfa, 0xd7,
  16.     0x77, 0xb4, 0x54, 0x38, 0xab, 0x1f, 0x0e, 0xe3,   0x8e, 0xd3, 0x0d, 0xeb, 0x99, 0xc3, 0x93, 0xfe,
  17.     0xd1, 0x2b, 0x1b, 0x11, 0xc6, 0x11, 0xef, 0xc8,   0xca, 0x2f,
  18. };
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement