Results 1 to 9 of 9
  1. #1
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead

    Post [CIY]nDestroy Source Code [New Address]

    Sup Guys

    This is the Source Code of nDestroy

    Credit

    Base of nDestroy - @Jhem
    Address - @buxkaizhe @astron51



    Main.cpp

    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    #include "Addy.h"
    #include "Function.h"
    
    BOOL WINAPI DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    	switch (dwReason) {
    	case DLL_PROCESS_ATTACH:
    
    		DisableThreadLibraryCalls(hModule);
    		//CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)KillGGNow, NULL, NULL, NULL); //Remove the // if You want to.
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)BetaBypass, NULL, NULL, NULL);
    		break;
    	case DLL_PROCESS_DETACH:
    		break;
    	case DLL_THREAD_ATTACH:
    		break;
    	case DLL_THREAD_DETACH:
    		break;
    	}
    	return TRUE;
    }
    Function.h

    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    #include "DnB.h"
    #include <stdio.h>
    #include <iostream>
    #include <stdlib.h>
    
    void KillGG(const char *processName) {
    	HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPALL, NULL);
    	PROCESSENTRY32 pEntry;
    	pEntry.dwSize = sizeof(pEntry);
    	BOOL hRes = Process32First(hSnapShot, &pEntry);
    	while (hRes)
    	{
    		if (strcmp(pEntry.szExeFile, processName) == 0) {
    			HANDLE hProcess = OpenProcess(PROCESS_TERMINATE, 0,
    				(DWORD)pEntry.th32ProcessID);
    			if (hProcess != NULL)
    			{
    				TerminateProcess(hProcess, 9);
    				CloseHandle(hProcess);
    			}
    		} hRes = Process32Next(hSnapShot, &pEntry);
    	} CloseHandle(hSnapShot);
    }
    
    void KillGGNow() {
    	while (1) {
    		KillGG("GameGuard.des");
    		KillGG("GameMon.des");
    		KillGG("GameMon64.des");
    		Sleep(200);
    	}
    }
    
    VOID BetaBypass()
    {
    	while (1){
    		memcpy((PVOID)(LAUNCHER_ERROR), (PVOID) "\xEB", 1);
    		memcpy((PVOID)(ABNORMAL_ACTIVITY), (PVOID) "\x0F\x85", 2);
    		memcpy((PVOID)(GAMEGUARDEROR1), (PVOID) "\x55\x07", 2);
    		memcpy((PVOID)(GAMEGUARDEROR2), (PVOID) "\x75", 1);
    	}
    }
    Addy.h

    Code:
    #include <Windows.h>
    #include <process.h>
    #include <Tlhelp32.h>
    #include <winbase.h>
    #include <string.h>
    #include <stdio.h>
    #include <iostream>
    
    #define LAUNCHER_ERROR       0x40B5F1
    #define ABNORMAL_ACTIVITY    0x4EE3B8
    #define GAMEGUARDEROR1       0x63DCF7
    #define GAMEGUARDEROR2       0x63DCBC
    Compile it Yourself ! I will not answer any question about compiling it! [DUDE!!!LEARN HOW TO COMPILE!!!!DON'T ALWAYS RELY ON US]

    @Jim Morrison - Request Lock Thread Thanks

    Last edited by astron51; 07-08-2015 at 09:28 AM.

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  2. The Following 2 Users Say Thank You to astron51 For This Useful Post:

    Cookiedarkfinger (07-13-2015),Luffy_Senpai (07-08-2015)

  3. #2
    taranya5971's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    how to use pls tell
    what application to use this codes pls tell
    Last edited by taranya5971; 07-08-2015 at 09:26 AM.

  4. #3
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead
    Quote Originally Posted by taranya5971 View Post
    how to use pls tell
    As I said....

    Compile it Yourself ! I will not answer any question about compiling it! [DUDE!!!LEARN HOW TO COMPILE!!!!DON'T ALWAYS RELY ON US]
    Last edited by astron51; 07-08-2015 at 09:28 AM.

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  5. The Following User Says Thank You to astron51 For This Useful Post:

    Cookiedarkfinger (07-13-2015)

  6. #4
    iphei99's Avatar
    Join Date
    Jan 2006
    Gender
    male
    Posts
    155
    Reputation
    10
    Thanks
    434
    Isn't GAMEGUARDEROR1 = 0x63DCF6 ?

  7. #5
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,393
    My Mood
    Stressed
    Quote Originally Posted by iphei99 View Post
    Isn't GAMEGUARDEROR1 = 0x63DCF6 ?
    He is using my Logger.

  8. #6
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead
    Quote Originally Posted by Jhem View Post


    He is using my Logger.
    Nope :3 i didn't use ur Logger . I just use the base from your Thread And those Address I found it with my private program tho
    Last edited by astron51; 07-08-2015 at 11:47 PM.

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  9. #7
    meerunmalto's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    3
    Is this the beta that you released earlier? Im still new about this whole thing tho. If i use this source code, will it DC in 5mins like the beta that you released? Sorry if im being annoying. Trying to pick up some skills here. LOL. And one more thing, do i use CE or C++? If use C++, to use this source code, isit by editing the Beta DLL u released? Sorry if im asking too much LOL

  10. #8
    astron51's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Stuttgart, Germany
    Posts
    618
    Reputation
    57
    Thanks
    4,939
    My Mood
    Dead
    Quote Originally Posted by meerunmalto View Post
    Is this the beta that you released earlier? Im still new about this whole thing tho. If i use this source code, will it DC in 5mins like the beta that you released? Sorry if im being annoying. Trying to pick up some skills here. LOL. And one more thing, do i use CE or C++? If use C++, to use this source code, isit by editing the Beta DLL u released? Sorry if im asking too much LOL
    C++.... Compile it in VS2013 or other C++ Compiler..

    P/S: This is the source code of nDestroy

    Quote Originally Posted by Aula View Post
    FaQ2: Will my Main account will get ban?
    -Hell yeah . Who ask u to use this 3rd party program on ur main account ? Fcking Idiot .

    Get 100 Thanks - ✔
    Get 200 Thanks - ✔
    Get 300 Thanks - ✔
    Get 400 Thanks - ✔
    Get 500 Thanks - ✔
    Get 600 Thanks - ✔
    Get 700 Thanks - ✔
    Get 800 Thanks - ✔
    Get 900 Thanks - ✔
    Get 1000 Thanks - ✔
    Get 1500 Thanks - ✔
    Get 2000 Thanks - ✔
    Get 2500 Thanks - ✔
    Achievement Completed.

  11. #9
    buxkaizhe's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    218
    Reputation
    14
    Thanks
    1,808
    My Mood
    Bored
    Quote Originally Posted by Jhem View Post


    He is using my Logger.
    By the way, what do you mean by "logger"?

    In my opinion, logger means like something that logs the addresses?

    But I think you meant source here.

Similar Threads

  1. [Source Code] New Address WallHack
    By DuuMaall in forum CrossFire Latin America / Brazil Hack Source Code
    Replies: 4
    Last Post: 08-15-2013, 09:47 AM
  2. [Source Code] New Address WallHack
    By 6ixth in forum CrossFire Latin America / Brazil Hack Source Code
    Replies: 15
    Last Post: 07-23-2013, 10:33 PM
  3. [Request]New Source Code
    By NicoFighter in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 10-25-2010, 11:45 PM
  4. <releasing 2 morrow> new opk hack ~source code~ C++
    By pikamew4 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 12-02-2009, 02:59 PM
  5. is this the right code for (Anti-Kick) New Addresses
    By floris12345! in forum Visual Basic Programming
    Replies: 6
    Last Post: 01-28-2008, 06:33 PM