LordCyber - Komunitas Cyber Terbaik
™️™️ Welcome And Zone LordCyber ™️™️

[-] Yang Belum Punya User Di LordCyber Harap Register.
[-] Yang Sudah Ada Di HarapKan Log In Terlebih Dahulu.
[-] DaftarKan User Anda Di Special V.I.P Member (Terdapat Aplikasi Lebih Banyak).


~Thankz For ALL LordCyber~
------------------------------------
LordCyber - Komunitas Cyber Terbaik
™️™️ Welcome And Zone LordCyber ™️™️

[-] Yang Belum Punya User Di LordCyber Harap Register.
[-] Yang Sudah Ada Di HarapKan Log In Terlebih Dahulu.
[-] DaftarKan User Anda Di Special V.I.P Member (Terdapat Aplikasi Lebih Banyak).


~Thankz For ALL LordCyber~
------------------------------------
LordCyber - Komunitas Cyber Terbaik
Would you like to react to this message? Create an account in a few clicks or log in to continue.


™ † ™ LC - Komunitas Cyber Terbaik ™ † ™
 
IndeksPencarianLatest imagesPendaftaranLogin
Selamat Datang Di Forum LordCyber Silakan Tekan Register Bagi Yang Belum Punya ID.... Yang Sudah Punya ID Silakan Tekan Login Di Forum Ini
Pencarian
 
 

Display results as :
 
Rechercher Advanced Search
Drop-Down List
Login
Username:
Password:
Login otomatis: 
:: Lupa password?
Top posters
Admin
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
Mr.Cheaters
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
LC_Febri
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
acuy
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
rezaganteng
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
flamikaze
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
sapta
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
kotabumi1
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
Krenz_Tops
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
swattole
Source code Walhack EmptySource code Walhack I_voting_barSource code Walhack Empty 
Latest topics
» AUTO BBOY HIDDEN ROOM 6089
Source code Walhack EmptySun Feb 03, 2013 7:34 pm by hidea

» AUTO BBOY 6089 TAHAN 30MNT
Source code Walhack EmptySun Feb 03, 2013 1:04 pm by jasajokilistnewbie

»  Audition AyoDance Patch Add On v6089 By Chuunibyou
Source code Walhack EmptySun Jan 27, 2013 8:07 am by Admin

»  Zekertkot - Auto B-Boy v.6089
Source code Walhack EmptySun Jan 27, 2013 8:01 am by Admin

» WeekEnd Seru (Gak Pake CrossHair)
Source code Walhack EmptySun Jan 27, 2013 7:43 am by Admin

» Cheat Auto BBoy V.6089 Free By KD
Source code Walhack EmptySun Jan 27, 2013 7:27 am by Admin

»  che*t Crossfire Cnpromodz v4.6
Source code Walhack EmptyWed Jan 23, 2013 6:55 pm by Admin

» WeekEnd Party
Source code Walhack EmptySat Dec 15, 2012 11:30 pm by Admin

» Cara Mencari Byte ON/OFF Lost Saga
Source code Walhack EmptyTue Nov 27, 2012 1:23 pm by Admin

Jam Digital
Total Online
May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  
CalendarCalendar
Affiliates
free forum
free forum
free forum
free forum
free forum
Cool Purple Outer Glow Pointer
Radio Online


Share
 

 Source code Walhack

Topik sebelumnya Topik selanjutnya Go down 
PengirimMessage
acuy
™-Newbie_Member-™
™-Newbie_Member-™
acuy

Zodiac : Gemini
Jumlah posting : 27
Points : 58

Source code Walhack Empty
PostSubyek: Source code Walhack   Source code Walhack EmptyWed Nov 16, 2011 6:22 pm

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 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 ++ 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 kesalahann Cool Cool
Kembali Ke Atas Go down
 

Source code Walhack

Topik sebelumnya Topik selanjutnya Kembali Ke Atas 
Halaman 1 dari 1

Permissions in this forum:Anda tidak dapat menjawab topik
LordCyber - Komunitas Cyber Terbaik :: Private | Cyber :: Programming :: C / C++-