Advertisement
Madmouse

A challenge for you

Sep 18th, 2014
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.96 KB | None | 0 0
  1. // ----------------------------------------------------------------------------
  2. // "THE BEER-WARE LICENSE" (Revision 43):
  3. // <aaronryool@gmail.com> wrote this file. As long as you retain this notice you
  4. // can do whatever you want with this stuff. If we meet some day, and you think
  5. // this stuff is worth it, you can buy me a beer in return Aaron R. Yool
  6. // ----------------------------------------------------------------------------
  7. // Email me your answers :D
  8. //
  9. // install gcc-multilib first...
  10. //
  11. // then compile like this:
  12. //   gcc -m32 challenge.c -o ima
  13.  
  14. main(int count, char **arg)
  15. {
  16. // HINT: Follow the rabbit, and you will find the answer you are looking for while he rests.
  17. //   you just have to read between the lines.
  18.    ((void(*)(void*))
  19.       "\x55\x89\xe5\x8b\x5d\x08\x31\xc0\x74\x04\x62"
  20.       "\x6d\x39\x76\x04\x09\x40\xcd\x80\xeb\x03\x59"
  21.       "\x69\x41\x31\xd9\x75\x05\x36\x55\x41\x3d\x3d"
  22.       "\xb0\x01\x31\xdb\xcd\x80"
  23.    )(arg[0]);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement