document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <windows.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5.  
  6.  
  7. #define size 100 * 1024 * 1024
  8.  
  9. int main(int argc, char** argv)
  10. {
  11.     char *data;
  12.     int ret;
  13.  
  14.     data = (char *)malloc(size+1);
  15.    
  16.  
  17.     if (VirtualLock(data, size+1) != 0) {
  18.         printf ("VirtualLock() Error !\\n");
  19.         exit (1) ;
  20.     }
  21.  
  22.     ret = sprintf(data, "UnPasswordMegaSecreto");
  23.        
  24.     printf ("Mi password mega secreto %s\\n", data) ;
  25.  
  26.     free(data);
  27.     data = NULL;
  28. }
');