Guest User

Untitled

a guest
Jun 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. #include <windows.h>
  2. #include <dos.h>
  3.  
  4. #include <stdio.h>
  5.  
  6. #include <conio.h>
  7. #include <iostream>
  8. #include <conio.h>
  9. #include <windows.h>
  10.  
  11.  
  12. int HackOn = 0;
  13.  
  14. int HackMax = 10;
  15.  
  16. bool Experiment = false;
  17.  
  18. #define ADDR_SBULLLETS 0x3741CD3D
  19.  
  20. void Superbullets (void)
  21. {
  22. Sleep(5000);
  23. Sleep(5000);
  24. Sleep(5000);
  25. Sleep(5000);
  26. Sleep(5000);
  27. Sleep(5000);
  28.  
  29. while(1)
  30.  
  31. {
  32. if(GetAsyncKeyState(VK_NUMPAD1)&1)
  33.  
  34. {
  35. Experiment = (!Experiment);
  36.  
  37. }
  38. if(GetAsyncKeyState(VK_NUMPAD2)&1)
  39.  
  40. {
  41. HackOn ++;
  42.  
  43. if(HackOn == HackMax) HackOn = 0;
  44.  
  45. }
  46. if(Experiment)
  47.  
  48. {
  49. memcpy( (PBYTE)ADDR_SBULLLETS, (PBYTE)"\x33\xC0\x90", 3 );
  50.  
  51. }else{
  52.  
  53. memcpy( (PBYTE)ADDR_SBULLLETS, (PBYTE)"\x0F\x94\xC0", 3 );
  54.  
  55. }
  56. }
  57. }
  58.  
  59. DWORD WINAPI Lesson (LPVOID)
  60.  
  61. {
  62. Superbullets();
  63.  
  64. return 1;
  65.  
  66. }
  67.  
  68. BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
  69.  
  70. {
  71. DisableThreadLibraryCalls(hDll);
  72.  
  73. if ( dwReason == DLL_PROCESS_ATTACH )
  74. {
  75. MessageBoxA(NULL, "Numberpad 1: On , Numberpad 2: Off , Made by Shadow", "Injection Successful!", MB_OK);
  76. MessageBoxA(NULL,"Powered by: Team Visual Lust","Enjoy the hack",MB_OK);
  77. CreateThread(NULL, NULL, Lesson, NULL, NULL, NULL);
  78.  
  79. }
  80. return TRUE;
  81.  
  82.  
  83. }
Add Comment
Please, Sign In to add comment