Would you like to react to this message? Create an account in a few clicks or log in to continue.

[Share]Membuat .dll Wallhack With C++ ini hanya sebuah copas dari hasil google, offset cari sendiri

 :: C++

Go down

[Share]Membuat .dll Wallhack With C++ ini hanya sebuah copas dari hasil google, offset cari sendiri  Empty [Share]Membuat .dll Wallhack With C++ ini hanya sebuah copas dari hasil google, offset cari sendiri

Post by ridhotherock Wed May 11, 2011 2:29 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
Code:

//
//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[] = {[color=#FF00FF]0x83, 0xCE, 0x28[/color]};    //Bytes with the wallhack effect
BYTE wallhack1_off[] = {[color=#FF00FF]0x83, 0xCE, 0x20[/color]};    //Original bytes at offset [color=#FF0000]3007EE83[/color]
BYTE wallhack2_off[] = {[color=#FF00FF]0x83, 0xCE, 0x21[/color]};    //Original bytes at offset [color=#FF0000]3007EEDB[/color]

/* 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*)0x[color=#FF0000]3007EE83[/color], &wallhack_on, 3, 0); //Function to write the data
        WriteProcessMemory(ET, (void*)0x[color=#FF0000]3007EEDB[/color], &wallhack_on, 3, 0); //Function to write the data
        }
        if(GetAsyncKeyState(VK_F11)) //On F11 key press, the wallhack goes OFF
        {
        WriteProcessMemory(ET, (void*)0x[color=#FF0000]3007EE83[/color], &wallhack1_off, 3, 0); //Function to write the data
        WriteProcessMemory(ET, (void*)0x[color=#FF0000]3007EEDB[/color], &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

credit AdawolfA in aim***s
thanks
ridhotherock
ridhotherock
Moderator
Moderator

Jumlah posting : 122
Reputation : 1003
Join date : 06.04.11
Age : 34

http://Ridhotherock.blogspot.com

Kembali Ke Atas Go down

Kembali Ke Atas

- Similar topics

 :: C++

 
Permissions in this forum:
Anda tidak dapat menjawab topik