Wolftü Güncel Auto Bypass Atabilir Misiniz?

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Ultra Üye
Katılım
6 May 2018
Mesajlar
2,369
Çözümler
1
Tepki puanı
591
Ödüller
11
8 HİZMET YILI
C++:
#include <Windows.h>

DWORD dwXignInitFnc = 0x004AA2C0;

BOOL WriteBytes(DWORD dwAddress, LPBYTE lpBuffer, DWORD nBytes) {

if (nBytes == 0) {

OutputDebugString(L"WriteBytes:: Tried to write 0 bytes to memory.");

return FALSE;

}

DWORD dwOldProtect;

if (!VirtualProtect((LPVOID)dwAddress, nBytes, PAGE_EXECUTE_READWRITE, &dwOldProtect)) {

OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");

return FALSE;

}

memcpy((LPVOID)dwAddress, lpBuffer, nBytes);

if (!VirtualProtect((LPVOID)dwAddress, nBytes, dwOldProtect, &dwOldProtect)) {

OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");

return FALSE;

}

return TRUE;

}

BOOL StopXignInit() {

/*

Modify code to:

mov eax, 1

ret

nop

*/

return WriteBytes(dwXignInitFnc, (PBYTE)"\xB8\x01\x00\x00\x00\xC3\x90", 9);

}

BOOL APIENTRY DllMain(__in HINSTANCE hInstance, __in DWORD fdwReason, __in __reserved LPVOID lpReserved) {

UNREFERENCED_PARAMETER(lpReserved);

if (fdwReason == DLL_PROCESS_ATTACH) {

if (StopXignInit()) {

OutputDebugString(L"Successfully stopped XIGNCODE3 from initializing!");

}

else {

OutputDebugString(L"Failed to stop XIGNCODE3 from initializing!");

}

}

return TRUE;

}
 
Moderatörün son düzenlenenleri:
Griffin Premium
Katılım
3 Mar 2017
Mesajlar
1,378
Çözümler
1
Tepki puanı
1,001
Ödüller
12
Sosyal
9 HİZMET YILI
  1. #include <Windows.h>
  2. DWORD dwXignInitFnc = 0x004AA2C0;
  3. BOOL WriteBytes(DWORD dwAddress, LPBYTE lpBuffer, DWORD nBytes) {
  4. if (nBytes == 0) {
  5. OutputDebugString(L"WriteBytes:: Tried to write 0 bytes to memory.");
  6. return FALSE;
  7. }
  8. DWORD dwOldProtect;
  9. if (!VirtualProtect((LPVOID)dwAddress, nBytes, PAGE_EXECUTE_READWRITE, &dwOldProtect)) {
  10. OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");
  11. return FALSE;
  12. }
  13. memcpy((LPVOID)dwAddress, lpBuffer, nBytes);
  14. if (!VirtualProtect((LPVOID)dwAddress, nBytes, dwOldProtect, &dwOldProtect)) {
  15. OutputDebugString(L"WriteBytes:: Failed to change access protection on memory address.");
  16. return FALSE;
  17. }
  18. return TRUE;
  19. }
  20. BOOL StopXignInit() {
  21. /*
  22. Modify code to:
  23. mov eax, 1
  24. ret
  25. nop
  26. */
  27. return WriteBytes(dwXignInitFnc, (PBYTE)"\xB8\x01\x00\x00\x00\xC3\x90", 9);
  28. }
  29. BOOL APIENTRY DllMain(__in HINSTANCE hInstance, __in DWORD fdwReason, __in __reserved LPVOID lpReserved) {
  30. UNREFERENCED_PARAMETER(lpReserved);
  31. if (fdwReason == DLL_PROCESS_ATTACH) {
  32. if (StopXignInit()) {
  33. OutputDebugString(L"Successfully stopped XIGNCODE3 from initializing!");
  34. }
  35. else {
  36. OutputDebugString(L"Failed to stop XIGNCODE3 from initializing!");
  37. }
  38. }
  39. return TRUE;
  40. }
Kardeş kod blogu içinde atarmısın bir zahmet o kod bloğunu oraya süs olarak koymadılar.
 
The Best Cheaters
Süper Üye
Katılım
10 Haz 2017
Mesajlar
749
Çözümler
3
Tepki puanı
105
Ödüller
8
Yaş
33
9 HİZMET YILI
la bu kadar yardım edicenize direk proje atın adama oda editlesin ben yaptım desin işte ne ugrasıyorsunuz
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst