FORUM KOMUNITAS CYBER

More info? Follow us @fadilrandomze
FORUM KOMUNITAS CYBER

More info? Follow us @fadilrandomze
FORUM KOMUNITAS CYBER
Would you like to react to this message? Create an account in a few clicks or log in to continue.

FORUM KOMUNITAS CYBER

Gaming And Community Forum
 
IndeksLatest imagesPencarianPendaftaranLogin
™️WELCOME TO FACEINYOU [DAFTARKAN DIRI ANDA SEGERA™️ ™️BANYAK FITUR-FITUR YANG MENARIK DARI KAMI™️
Login
Username:
Password:
Login otomatis: 
:: Lupa password?
Pencarian
 
 

Display results as :
 
Rechercher Advanced Search
Latest topics
»  Update Cheat Point Blank Gosh Mode++HS++rPE,Title,Point,Match,Misi Major,Masmed, SPECIAL 23 September 2012 WEEK END Topik sebelumnya Topik selanjutnya Go down 2012
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeThu Sep 27, 2012 5:16 pm by ozifazli

» RF BIG online
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeWed Aug 08, 2012 6:45 am by begalon

» Penawaran Kerjasama Forum
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeSat Jun 30, 2012 4:41 am by Fathur

» Cara Membuat Forum IPB
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeMon May 21, 2012 9:37 pm by sarbi

» Membuka Lowongan VIP MEMBERS
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeFri Jan 06, 2012 1:25 am by Bots_™[F|C]™KrussH

» Avacs Live chat
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeSat Oct 15, 2011 6:04 am by not

» 1 hit sg gosong
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeSun Sep 25, 2011 1:23 am by alorba

» [RPE+Winmode]Work100% With FD/Ultra ISO
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeThu Aug 18, 2011 2:32 am by Fikzryu

» Event Logo Forum
[SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeSun Aug 07, 2011 2:57 am by [F.I.Y.]™♣sal!m♣™

Navigation
 Portal
 Indeks
 Anggota
 Profil
 FAQ
 Pencarian
Forum


 

 [SHARE] CARA MEMBUAT INJECTOR

Go down 
4 posters
PengirimMessage
Admin
Admin
Admin
Admin


Jumlah posting : 106
Reputasi : 274
Reputation : 3
Join date : 08.03.11

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeMon Mar 21, 2011 5:21 am

adapun software yang diperlukan sebagai berikut, yang belum punya silakan download:

http://adf.ly/107887/http://www.microsoft.com/express/downloads/#2008-visual-cpp
injector, dalam tutorial ini tool injector favorit ane adalah x1nject=http://adf.ly/92615/http://www.ziddu.com/download/11483730/x1nject.rar.html

adapun target game yang ada dalam tutorial ini adalah point blank, dengan contoh hack misi mayor.

silakan ikuti langkah-langah di bawah ini:

jalankan visual c++ 2008 express edition, buat sebuah project dengan cara akses menu file – new – project atau dengan menekan tombol ctrl + shift + n.screenshot:
Posted Image
project telah berhasil dibuat. pada bagian solution explorer, klik kanan pada nama project (1), kemudian pilih menu properties (2).screenshot:
Posted Image properties
jendela project properties akan tampil. pada tree menu sebelah kiri, pilih configuration properties (1), kemudian bagian opsi project defaults, ubah opsi configuration type menjadi dynamic library (.dll) (2), kemudian tekan tombol ok (3) untuk melakukan perubahan.screenshot:
Posted Image
pada jendela add new item yang tampil, pada bagian templates pilih c++ file (.cpp) (1), beri nama ‘main.cpp‘ (2) pada bagian kolom name, kemudian tekan tombol ok (3).screenshot:
Posted Image
sebuah file bernama ‘main.cpp‘ berhasil dibuat. silakan masukkan kode-kode di bawah ini pada file tersebut, kemudian simpan (save).screenshot:
Posted Image
berikutnya adalah membuat sebuah file bernama main.cpp untuk memasukkan kode-kode utama, dengan cara pilih direktori source files (1) pada bagian solution explorer, kemudian klik menu project – add new item (2) atau dengan menekan tombol ctrl + shift + a.

#define _crt_secure_no_warnings
#include
#include

// definisikan variable dengan 'window title', 'window classname' dan modul
char *pprocesswindowtitle = "point blank";
char *pprocesswindowclass = "i3viewer";
char *pprocessmodulename = "pointblank.i3exec";

// etc...
uint_ptr uipuserrankvalue = 35; // major? <img src=" class="wp-smiley">
uint_ptr uipuserpointsvalue = 999999; // omg!

uint_ptr uiptrfinalrank, uiptrfinalpoints;

bool isinitmmhmemory = true;

dword dwprocessid;
uint_ptr uipmmhbaseaddress;
handle hprocess;

dword getmodulebase(lpstr lpmodulename, dword dwprocessid)
{
moduleentry32 lpmoduleentry = {0};
handle hsnapshot = createtoolhelp32snapshot(th32cs_snapmodule, dwprocessid);

if(!hsnapshot)
return null;
lpmoduleentry.dwsize = sizeof(lpmoduleentry);
bool bmodule = module32first( hsnapshot, &lpmoduleentry );
while(bmodule)
{
if(!strcmp( lpmoduleentry.szmodule, lpmodulename ) )
{
closehandle(hsnapshot);
return (dword)lpmoduleentry.modbaseaddr;
}
bmodule = module32next( hsnapshot, &lpmoduleentry );
}
closehandle( hsnapshot );
return null;
}

// deref() = credit l. spiro (mhs)
uint_ptr deref( uint_ptr _uiptrpointer ) {
uint_ptr uiptrret;
if (!::readprocessmemory(hprocess, reinterpret_cast(_uiptrpointer), &uiptrret, sizeof(uiptrret), null)) { return 0ul; }
return uiptrret;
}

// inisialisasi proses
void initapplicationprocess()
{
bool isfindwindow = true;
hwnd hwnd = null;

while(isfindwindow)
{
if((hwnd = findwindowa(pprocesswindowclass, pprocesswindowtitle)) != null) // jika window ditemukan
{
isfindwindow = false;
}
sleep(500);
}

getwindowthreadprocessid(hwnd, &dwprocessid);
hprocess = openprocess(process_all_access|process_vm_operation|process_vm_read|process_vm_write|process_query_information, false, dwprocessid);
}

void majormissionhack()
{
if(isinitmmhmemory)
{
uipmmhbaseaddress = getmodulebase(pprocessmodulename, dwprocessid);

// misal: pointer yang didapat = pointblank.i3exec+00471234 dengan offset 0xa12, tuliskan seperti di bawah!
uiptrfinalrank = deref(uipmmhbaseaddress + 0x4xxxxx) + 0xxxx; // user rank pointer - masked, sorry!
uiptrfinalpoints = deref(uipmmhbaseaddress + 0x4xxxxx) + 0xxxx; // user points pointer - masked, sorry!

isinitmmhmemory = false;
}

// writeprocessmemory pada pointer 'rank', berikan nilai uipuserrankvalue (35)
::writeprocessmemory(hprocess, reinterpret_cast(uiptrfinalrank), &uipuserrankvalue, sizeof(uipuserrankvalue), null);

// writeprocessmemory pada pointer 'points', berikan nilai uipuserpointsvalue (999999) lol!
::writeprocessmemory(hprocess, reinterpret_cast(uiptrfinalpoints), &uipuserpointsvalue, sizeof(uipuserpointsvalue), null);
}

void lovelyloopy()
{
// ok, berikan salam dulu! <img src=" class="wp-smiley">
messagebox(0, "dll berhasil di-inject. lanjutkan!", "hello world", mb_ok + mb_iconasterisk);

initapplicationprocess();

while(1) // loop selamanya <img src=" class="wp-smiley">
{
if(getasynckeystate(vk_f12)&1) // jika f12 ditekan
{
majormissionhack(); // panggil fungsi 'majormissionhack()'
sleep(500);
}

sleep(1);
}
}

bool winapi dllmain(hmodule hdll, dword dwreason, lpvoid lpreserved)
{
disablethreadlibrarycalls(hdll);

if(dwreason == dll_process_attach)
{
createthread(null, null, (lpthread_start_routine)lovelyloopy, null, null, null);
}
else if(dwreason == dll_process_detach)
{
closehandle(hprocess);
}

return true;
}



screenshot:
Posted Image
jika kode sudah disimpan (save), langkah berikutnya adalah membentuk file dll-nya dengan cara klik menu build – build solution atau dengan menekan tombol f7.screenshot:
Posted Image
setelah proses build solution, pada jendela output akan menampilkan hasil dari proses compile/build tersebut, jika tidak ada kesalahan (error) berarti kode-kode sudah benar dan file dll sudah terbentuk. jika ternyata ada kesalahan (error), silakan periksa langkah-langkah sebelumnya jika ada yang terlewatkan.screenshot:
Posted Image
kemudian buka direktori tempat project anda disimpan, dalam tutorial ini ane simpan di direktori d:\!projects!\sukasukaenter dan buka direktori yang bernama debug di dalamnya (sesuaikan letak direktori anda).screenshot:
Posted Image
bisa kita lihat ada beberapa file yang terbentuk, namun yang kita perlukan hanyalah file yang berekstensi .dll, karena file tersebut yang akan kita injeksikan ke proses program/game. agar tidak membingungkan, sekaligus ane copy-kan file injector-nya (x1nject.exe) ke direktori tersebut.

kemudian jalankan injector (x1nject.exe), ubah pada kolom ‘what to inject‘ dengan nama proses program/game, (contoh: pointblank.exe), pada bagian ‘add to injection list‘ tambahkan file .dll yang telah kita buat dengan menekan tombol browse dan cari pada direktori debug project kita.screenshot:
Posted Image
jalankan program/game yang akan kita injeksikan dengan .dll yang kita buat, dan apabila program/game telah berjalan, injector x1nject.exe otomatis menginjeksikan file .dll tersebut.screenshot:
http://static.nyit-n...60829_thumb.jpg

dan hasilnya adalah:

screenshot:
http://static.nyit-n...61703_thumb.jpg
berikutnya kita coba hack misi mayor yang telah kita buat (lihat fungsi lovelyloopy() dan majormissionhack() pada kode untuk lebih jelas), dengan menekan tombol f12 pada keyboard, kita lihat hasilnya pada gambar di bawah ini:
spoiler untuk bukti
Spoiler
http://janglapuk.fil.../09/14_ss01.jpg


spoiler untuk bukti2
Spoiler
http://janglapuk.fil.../09/14_ss02.jpg


dll injection kita telah bekerja!

semoga bisa membantu teman-teman semua, posted image jika berguna…!

happy cheating!

nb: pointer & offset pada fungsi majormissionhack() sengaja saya tidak tampilkan. silakan dimodifikasi jika ingin menambahkan fungsi-fungsi lainnya (unlimited ammo, grenade dsb).
Kembali Ke Atas Go down
https://faceinyou.forumid.net
™[FIY]™◄|KhÄdîr|►
LEVEL 2
LEVEL 2
™[FIY]™◄|KhÄdîr|►


Taurus Jumlah posting : 30
Reputasi : 76
Reputation : 3
Join date : 21.03.11
Age : 31
Lokasi : Solok

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeMon Mar 21, 2011 5:24 am

gag ngerti ane itu gan !!

Sad Sad Sad Sad Sad
Kembali Ke Atas Go down
Admin
Admin
Admin
Admin


Jumlah posting : 106
Reputasi : 274
Reputation : 3
Join date : 08.03.11

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeMon Mar 21, 2011 5:47 am

™[FIY]™◄|KhÄdîr|► wrote:
gag ngerti ane itu gan !!

Sad Sad Sad Sad Sad
belajar lah gan heheheh
Kembali Ke Atas Go down
https://faceinyou.forumid.net
[F.I.Y.]™♣sal!m♣™
Co-Admin
Co-Admin
[F.I.Y.]™♣sal!m♣™


Aries Jumlah posting : 61
Reputasi : 106
Reputation : 2
Join date : 17.03.11
Age : 29
Lokasi : --Di LuxVille--

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeTue Mar 22, 2011 1:50 am

kk di down load semua tuh
Kembali Ke Atas Go down
http://salimpekalongancheater.blogspot.com
™[FIY]Ieldan'٩(-̮̮̃•̃)۶™
LEVEL 2
LEVEL 2
™[FIY]Ieldan'٩(-̮̮̃•̃)۶™


Gemini Jumlah posting : 10
Reputasi : 17
Reputation : 1
Join date : 17.03.11
Age : 29
Lokasi : malang

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeTue Mar 22, 2011 4:39 am

iya gan bingung caranya....
Kembali Ke Atas Go down
[F.I.Y.]™♣sal!m♣™
Co-Admin
Co-Admin
[F.I.Y.]™♣sal!m♣™


Aries Jumlah posting : 61
Reputasi : 106
Reputation : 2
Join date : 17.03.11
Age : 29
Lokasi : --Di LuxVille--

[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitimeThu Mar 24, 2011 1:52 am

downloadnya gimana kk???
Kembali Ke Atas Go down
http://salimpekalongancheater.blogspot.com
Sponsored content





[SHARE] CARA MEMBUAT INJECTOR Empty
PostSubyek: Re: [SHARE] CARA MEMBUAT INJECTOR   [SHARE] CARA MEMBUAT INJECTOR I_icon_minitime

Kembali Ke Atas Go down
 
[SHARE] CARA MEMBUAT INJECTOR
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» CARA MEMBUAT INJECTOR
» cara membuat Injector Auto Inject
» Cara Membuat Forum IPB
» Event Membuat Cheat DLL + INJECTOR FOR FACEINYOU
» [Share]Membuat .dll Wallhack With C++

Permissions in this forum:Anda tidak dapat menjawab topik
FORUM KOMUNITAS CYBER :: VISUAL BASIC C++ :: MEMBUAT INJECTOR-
Navigasi: