Thread: Base Undetected

Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,172
    Reputation
    74
    Thanks
    1,266
    My Mood
    In Love

    Wink Base Undetected

    Happy Leech!!!!

    Info:

    Update the Adress ....

    Adress for CFAL


    Base:
    Code:
    #include <windows.h>
    #include <process.h>
    #include <d3d9.h>
    #include <d3dx9.h>
    #include "Xor.h"
    
    #pragma comment(lib, "d3d9.lib")
    #pragma comment(lib, "d3dx9.lib")
    //======================Definitions============================
    #define WeaponMgr 0xEA06A4
    #define PlayerMgr 0xE393D8
    // =====================CONFIG  ===============================
    #define ModuleCShell /*CShell.dll*/XorStr<0x11,11,0x089A2A02>("\x52\x41\x7B\x71\x79\x7A\x39\x7C\x75\x76"+0x089A2A02).s
    #define ModuleClientFx /*ClientFx.fxd*/XorStr<0xE5,13,0xFC345732>("\xA6\x8A\x8E\x8D\x87\x9E\xAD\x94\xC3\x88\x97\x94"+0xFC345732).s
    //=====================Variables===============================
    DWORD SeeGhost;
    bool seeGhost = (true);
    //=============================================================
    bool Compare(const BYTE* pData, const BYTE* bMaskara, const char* szMaskara)
    {
    	for(;*szMaskara;++szMaskara,++pData,++bMaskara)
    		if(*szMaskara=='x' && *pData!=*bMaskara ) 
    			return false;
    	return (*szMaskara) == NULL;
    }
    DWORD FindPattern(DWORD dwAddress,DWORD dwLen,BYTE *bMask,char * szMask)
    {
    	 for (DWORD x = 0; x < dwLen; x++)
    		if( Compare( ( BYTE * )( dwAddress + x ), bMask, szMask ) )  
    		return ( DWORD )( dwAddress + x );
    	return 0;
    }
    void Seeghost()
    {
    	SeeGhost = FindPattern((DWORD)GetModuleHandleA("crossfire.exe"), 0x2D7000, (BYTE *)"\x75\xFF\x83\x0D\xFF\xFF\xFF\xFF\x01\xB8\xFF\xFF\xFF\xFF\xE8","x?xx????xx????x");
    	SeeGhost =  *(DWORD *)(SeeGhost + 0xA) + 0xB8;
    	if(seeGhost)
    	{
    		*(DWORD *)(SeeGhost) = 14;
    	}
    }
    UINT WINAPI Hook(VOID *) 
    {
    	while(true) {
    		DWORD CShell = (DWORD)GetModuleHandleA(ModuleCShell);
    		DWORD ClientFx = (DWORD)GetModuleHandleA(ModuleClientFx);
    		if(CShell && ClientFx) 
    		{
    			//========Player(Seeghost)===========================
    			DWORD BasicPlayerInfo = *(DWORD*)(CShell + PlayerMgr);
    			if(BasicPlayerInfo)
    			{
    				Seeghost();
    			}
    		}
    	}
    }
    BOOL WINAPI DllMain(HINSTANCE hDll, DWORD dwReason, VOID *) {
    	switch(dwReason) {
    		case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(hDll), _beginthreadex(0, 0, &Hook, 0, 0, 0); break;
    
    		case DLL_PROCESS_DETACH: break;
    		case DLL_THREAD_ATTACH:  break;
    		case DLL_THREAD_DETACH:  break;
    	}
    	return (true);
    }
    Xor:
    Code:
    #ifndef _XOR_H_
    #define _XOR_H_
    
    #pragma once
    
    
    template<INT XORSTART, INT BUFLEN, INT XREFKILLER> 
    
    class XorStr 
    { 
    private: 
    	XorStr(); 
    public: 
    	CHAR s[BUFLEN]; 
    
    	XorStr(CONST CHAR *xs); 
    	~XorStr()
    	{ 
    		for(INT i = 0; i < BUFLEN; i++)
    			s[i] = 0; 
    	} 
    }; 
    
    template<INT XORSTART, INT BUFLEN, INT XREFKILLER>  
    
    XorStr<XORSTART, BUFLEN, XREFKILLER>::XorStr(CONST CHAR *xs) 
    { 
    	INT xvalue = XORSTART; 
    	INT i = 0; 
    
    	for(; i < (BUFLEN - 1); i++) 
    	{	 
    		s[i] = xs[i - XREFKILLER] ^ xvalue; 
    		xvalue += 1; 
    		xvalue %= 256; 
    	} 
    
    	s[BUFLEN - 1] = 0; 
    } 
    
    
    #endif

    Creditos:
    @dreek1
    @lucifereviluser
    @ForeverRed
    @luizimloko
    and others....


    R.I.P CrossFire
    Last edited by dreek1; 07-28-2013 at 04:55 PM.
    Public Hack:
    Jun 2012 / Dec 2017

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

    649076641a (02-15-2014),6ixth (07-28-2013),el.lhiricoh123 (10-02-2016),Fєηix (07-31-2013),mamo007 (07-31-2013),pisicowinner (07-30-2013),Vincent Dominguez (10-15-2013),zSith (11-19-2013)

  3. #2
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,032
    Reputation
    661
    Thanks
    19,973
    My base modified
    Thx for posted it.

    ---------- Post added at 04:57 PM ---------- Previous post was at 04:51 PM ----------
    Address CFNA:
    #define WeaponMgr 0xF91BC4
    #define PlayerMgr 0xF2A8F8
    Last edited by 6ixth; 07-29-2013 at 04:32 PM.

  4. The Following User Says Thank You to 6ixth For This Useful Post:

    dreek1 (07-28-2013)

  5. #3
    Corbis's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    MPGH.NET
    Posts
    42
    Reputation
    26
    Thanks
    5
    Thank you sir .

  6. #4
    3D's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In The World :P
    Posts
    1,007
    Reputation
    134
    Thanks
    14,172
    My Mood
    Amazed
    lol.

    /msg2short

  7. #5
    ElevationChampions's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    _______________________________________________ Brazil __________________________________________________ ___

    Posso programar a base no Dev C++ ou tem que ser obrigatóriamente no visual c++ ? O quanto antes obrigado pela resposta.

    ______________________________________________ English __________________________________________________ _________

    Can I program the base in Dev c + + or have to be compulsorily in visual c + + ? The sooner thanks for the reply.



    Translation in english of Google Translate. xD
    Last edited by ElevationChampions; 07-28-2013 at 07:02 PM.

  8. #6
    Threadstarter
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,172
    Reputation
    74
    Thanks
    1,266
    My Mood
    In Love
    English....
    That I can not answer ... because I never got to download the Dev C + +

    Português....
    isso eu não sei responder... porque nunca cheguei a baixar o Dev C++
    Quote Originally Posted by ElevationChampions View Post
    _______________________________________________ Brazil __________________________________________________ ___

    Posso programar a base no Dev C++ ou tem que ser obrigatóriamente no visual c++ ? O quanto antes obrigado pela resposta.

    ______________________________________________ English __________________________________________________ _________

    Can I program the base in Dev c + + or have to be compulsorily in visual c + + ? The sooner thanks for the reply.



    Translation in english of Google Translate. xD
    Public Hack:
    Jun 2012 / Dec 2017

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

    ElevationChampions (07-29-2013),pisicowinner (07-30-2013)

  10. #7
    mamo007's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    Behind You !
    Posts
    1,654
    Reputation
    216
    Thanks
    15,610
    My Mood
    Amazed
    Thanks For Sharing and when you add d3d feature cf crash
    [Source Code] Present Hooks Win 7/8 .. 8.1/10


    - removed youtube video as it had an outside link


  11. #8
    Zuriux's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    Thank you i will make a hack with it

  12. #9
    felipem13's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    I hack for combat arms and would make hack cross fire, someone teach me? google tradutor
    faço hack para combat arms e gostaria de fazer hack de cross fire , alguem me ensina ?

    me add skype? : aaFelipeMaia

  13. #10
    OwNAppLe's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    United states of niggers
    Posts
    162
    Reputation
    10
    Thanks
    20
    Simple question, what do SeeGhost() do in BasicPlayerInfo which comes from ClientShell when SeeGhost function that you're using are coming from CrossFire.exe?

  14. #11
    TheFlyingDutchman''s Avatar
    Join Date
    Apr 2012
    Gender
    male
    Location
    On my haunted flying pirate ship
    Posts
    3,310
    Reputation
    325
    Thanks
    596
    My Mood
    Psychedelic
    @bullpop
    This is what you needed right?
    "People don't change.
    Circumstances do."


    "Trying to find succes without working hard is like trying to harvest where you did not sow"















    Bullpop












    Will be my supp in LoL


    You spin me right round right round

  15. #12
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,032
    Reputation
    661
    Thanks
    19,973
    Quote Originally Posted by Bin Laden[SUP]1337[/SUP] View Post
    leecher noob ****** learn code c++
    He don't is leech.

  16. The Following User Says Thank You to 6ixth For This Useful Post:

    dreek1 (08-03-2013)

  17. #13
    OwNAppLe's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    United states of niggers
    Posts
    162
    Reputation
    10
    Thanks
    20
    Quote Originally Posted by ForeverRed View Post
    He don't is leech.
    Quote Originally Posted by OwNAppLe View Post
    Simple question, what do SeeGhost() do in BasicPlayerInfo which comes from ClientShell when SeeGhost function that you're using are coming from CrossFire.exe?
    Can you answer the question ? GENIUS BR.

    You and dreek1 are example of leechers #1.

  18. The Following User Says Thank You to OwNAppLe For This Useful Post:

    Coder.Anonymous (08-18-2013)

  19. #14
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,032
    Reputation
    661
    Thanks
    19,973
    Quote Originally Posted by OwNAppLe View Post
    Can you answer the question ? GENIUS BR.

    You and dreek1 are example of leechers #1.
    Dude.... kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
    I'm programmer in java and c + +, so when you want to talk to me just add me on skype.

  20. #15
    OwNAppLe's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    United states of niggers
    Posts
    162
    Reputation
    10
    Thanks
    20
    Quote Originally Posted by ForeverRed View Post
    Dude.... kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
    I'm programmer in java and c + +, so when you want to talk to me just add me on skype.
    You said in your first post that this is your base, and as i can see from that coding and useless things you're a leecher.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Discussion] Can I make an old detected Base Undetected
    By DevilGhost in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 16
    Last Post: 01-07-2012, 04:10 PM
  2. How do i make this base undetected?!
    By maxpower439 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 3
    Last Post: 11-18-2011, 11:51 PM
  3. [Request] Base undetected for CF
    By GunBoy120 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 10-10-2011, 07:58 PM
  4. [Detected] [Luke Base Undetected]
    By XarutoUsoCrack in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 10-08-2011, 07:45 AM
  5. New java based Undetected Cheat Engine.
    By cheyester10 in forum Game Hacking Tools
    Replies: 14
    Last Post: 01-25-2011, 07:55 AM