™[FIY]™◄|KhÄdîr|►
Jumlah posting : 30 Reputasi : 76 Reputation : 3 Join date : 21.03.11 Age : 31 Lokasi : Solok
| Subyek: [Share]Membuat .dll Wallhack With C++ Mon Mar 21, 2011 11:16 am | |
| mohon maaf sebelumnya agan2 nih sebenarnya hanya sebua hasil pencarian dari si mbah
code ini blom diujicobakan, [masih dalam proses... hehehehe]
code dibawah ini jika dicompile harus memerlukan bahan2, seperti; 1.ms vcc++ [untuk cara mengcompile, silahkan cari sendiri] 2. otak yang jernih 3. program untuk mencari offset, banyak kok [pake mbah google ya....]
contoh jika anda menemukan sebuah offset [ini hanya contoh]
Original: offset: 3007EE83, bytes: 83, CE, 20 offset: 3007EEDB, bytes 83, CE, 21
Modified: offset: 3007EE83, bytes: 83 CE 28 offset: 3007EEDB, bytes: 83 CE 28
isi code - Spoiler:
// //code untuk membuat wallhack //© ///PALE 2009 //
#include
HANDLE ET = GetCurrentProcess(); //Get the process where we make the modifications
/* The data which we are going to write in the process. */
BYTE wallhack_on[] = {0x83, 0xCE, 0x28}; //Bytes with the wallhack effect BYTE wallhack1_off[] = {0x83, 0xCE, 0x20}; //Original bytes at offset 3007EE83 BYTE wallhack2_off[] = {0x83, 0xCE, 0x21}; //Original bytes at offset 3007EEDB
/* Wallhack thread*/
void Wallhack() { for(;; Sleep(50)) //Little delay in key presses { if(GetAsyncKeyState(VK_F12)) //On F12 key press, the wallhack goes ON { WriteProcessMemory(ET, (void*)0x3007EE83, &wallhack_on, 3, 0); //Function to write the data WriteProcessMemory(ET, (void*)0x3007EEDB, &wallhack_on, 3, 0); //Function to write the data } if(GetAsyncKeyState(VK_F11)) //On F11 key press, the wallhack goes OFF { WriteProcessMemory(ET, (void*)0x3007EE83, &wallhack1_off, 3, 0); //Function to write the data WriteProcessMemory(ET, (void*)0x3007EEDB, &wallhack2_off, 3, 0); //Function to write the data } } }
/* DLL Main */
BOOL WINAPI DllMain (HINSTANCE hModule, DWORD dwAttached, LPVOID lpvReserved) { if (dwAttached == DLL_PROCESS_ATTACH) { CreateThread(0, 0, (LPTHREAD_START_ROUTINE)&Wallhack, 0, 0, 0); //Start the Wallhack thread on DLL inject } return 1; }
untuk nilai bytes, ofsset = silahkan anda cari sendiri,
ingat code ini hanya merupakan hasil pencarian dari si mbah google dan merupakan contoh code pembuatan wallhack saja, untuk work atau tidaknya atau anda ingin mengajukan pertanyaan tentang offset maka saya tidak dapat menjawabnya,silahkan berkreasi sendiri
untuk yang merasa membutuhkan cukup tekan tombol thanks aja, tidak memerlukan post junk di thread saya jika anda yang mau bertanya mohon maaf saya masih nubie, so kadang bisa kadang ga bisa jawab, dan untuk yang bisa mohon untuk memperbaiki kesalahannya | |
|
[F.I.Y.]™♣sal!m♣™
Jumlah posting : 61 Reputasi : 106 Reputation : 2 Join date : 17.03.11 Age : 29 Lokasi : --Di LuxVille--
| Subyek: Re: [Share]Membuat .dll Wallhack With C++ Sun Mar 27, 2011 2:53 am | |
| ni bisa dipake buat bikin WH nda | |
|