document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <signal.h>
  4. #include <setjmp.h>
  5.  
  6. void catcher(int a)
  7. {
  8.         setresuid(geteuid(),geteuid(),geteuid());
  9.     printf("WIN!\\n");
  10.         system("/bin/sh");
  11.         exit(0);
  12. }
  13.  
  14. int main(int argc, char **argv)
  15. {
  16.         if (argc != 3 || !atoi(argv[2]))
  17.                 return 1;
  18.         signal(SIGFPE, catcher);
  19.         return abs(atoi(argv[1])) / atoi(argv[2]);
  20. }
');