Results 1 to 13 of 13
  1. #1
    cc00_'s Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    0

    The base gets detected OMG!

    Hi, people!

    I use Jeff's Undetected CrossFire Base and today it's got detected by X-Trap (abnormal memory access blah blah...)

    This is the full code for NoReload, please look:

    hacks.h:
    Code:
    #define WIN32_LEAN_AND_MEAN
    
    #include <Windows.h>
    
    class cWeaponMgr
    {
    public:
    	static const DWORD NRLD = 0x269C;
    };
    
    class cH4cks
    {
    public:
    	bool R34dyF0rH4cks();
    
    	DWORD GetAddressFromOffset(DWORD Base, DWORD Offset);
    
    	cWeaponMgr* WeaponMgr;
    	
    	cH4cks();
    	~cH4cks();
    private:
    	#define WeaponMgrOffset			0xA69120
    
    	DWORD dwWeaponMgr;
    };extern class cH4cks* H4cks;
    hacks.cpp:
    Code:
    #include "Hacks.h"
    
    cH4cks* H4cks;
    
    cH4cks::cH4cks()
    {
    	DWORD CShell = (DWORD) GetModuleHandleA("CShell.dll");
    
    	if(!CShell) return;
    
    	dwWeaponMgr = *(DWORD*)GetAddressFromOffset(CShell, WeaponMgrOffset);
    	
    	if ( dwWeaponMgr ) 
    	{
    		for ( int i = 0; i < 560; i++ )
    		{
    			DWORD Weapon = *(DWORD*)GetAddressFromOffset(dwWeaponMgr, (4*i));
    
    			if ( Weapon ) 
    			{				
    				 *(float*)GetAddressFromOffset(Weapon, WeaponMgr->NRLD) = 999;
    		    }
    		}
    	}
    	else 
    		return;
    }
    
    bool cH4cks::R34dyF0rH4cks()
    {
    	if(GetModuleHandleA("CShell.dll") != NULL && GetModuleHandleA("ClientFX.fxd") != NULL && GetModuleHandleA("crossfire.exe") != NULL)
    		return true;
    	return false;
    }
    
    DWORD cH4cks::GetAddressFromOffset(DWORD Base, DWORD Offset)
    {
    	if(Base)
    		return (Base + Offset);
    	else
    		return NULL;
    }
    main.cpp:
    Code:
    #include "Hacks.h"
    
    BOOL WINAPI W4itF0rG4m3L1bs(LPVOID) 
    {
    	try	
    	{
    		if(!H4cks->R34dyF0rH4cks()) throw 1;
    	}
    	catch (int error) 
    	{
    		switch (error) 
    		{
    		case 1:
    			CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)W4itF0rG4m3L1bs, NULL, NULL, NULL);
    			return false;
    		default:
    			return false;
    		}
    	}
    	H4cks = new cH4cks();
    	return true;
    }
    
    BOOL WINAPI DllMain(HINSTANCE Instance, DWORD Reason, LPVOID Reserved)
    {
    	if (Reason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls(Instance);
    		MessageBox(0,0,0,0);
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)W4itF0rG4m3L1bs, 0, 0, 0);
    	}
    	return true;
    }
    As you can see, I try to change some string, but it's not help. Help me guys pls, it's very important. What i need to change to make it work again?

    Also, you can look at attachments. To compile dll i use MSVS 2010.
    <b>Downloadable Files</b> Downloadable Files

  2. #2
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    try renewing the offsets and addys...and try using SndDrv.dll
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  3. The Following User Says Thank You to Assassin's Creed For This Useful Post:

    cc00_ (01-24-2012)

  4. #3
    {Banned}**HACKER**'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    843
    Reputation
    8
    Thanks
    719
    My Mood
    Cheerful
    Quote Originally Posted by Assassin's Creed View Post
    try renewing the offsets and addys...and try using SndDrv.dll
    Yea Do What Assassin Said Probably Something To Do What He Said !

    @Assassin's Creed Bro You On Drugs, Posting In All Sections 24/7 WDF :O

  5. #4
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    Quote Originally Posted by {Banned}**HACKER** View Post

    Yea Do What Assassin Said Probably Something To Do What He Said !

    @Assassin's Creed Bro You On Drugs, Posting In All Sections 24/7 WDF :O
    Wha??..get on msn i dont understand u lol...
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  6. #5
    cc00_'s Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    0
    Assassin's Creed, thanks for trying to help, but i dont understand a little... my english is not good.

    You say "try renewing the offsets and addys", but maybe you can show the code or something... please.
    Also i try to rename hack to snddrv.dll. I can join in lobby and x-xtrap error comes again.

    Thanks.

  7. #6
    Assassin's Creed's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    1,210
    Reputation
    54
    Thanks
    1,408
    My Mood
    Worried
    Quote Originally Posted by cc00_ View Post
    Assassin's Creed, thanks for trying to help, but i dont understand a little... my english is not good.

    You say "try renewing the offsets and addys", but maybe you can show the code or something... please.
    Also i try to rename hack to snddrv.dll. I can join in lobby and x-xtrap error comes again.

    Thanks.
    https://www.mpgh.net/forum/242-crossf...shell-dll.html
    Last edited by Hero; 01-24-2012 at 03:00 PM.
     

    Contributer Since 20/2/2012
    MPGH Member Since December 2011

     





     

    offical thread> Assassin V15<

    To all People who thinks am a leecher,hate me,are jelly from me....
    Refer to this thread...
    https://www.mpgh.net/forum/232-crossf...stop-hate.html

  8. The Following User Says Thank You to Assassin's Creed For This Useful Post:

    cc00_ (01-25-2012)

  9. #7
    cc00_'s Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Assassin's Creed View Post
    I know how to unpack cshell.dll and finding offsets.

    The WeaponMgr correct value is 0xA69120, NoReload - 0x269C. What to renew?

    Still need help.

  10. #8
    JusCaus's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    725
    Reputation
    23
    Thanks
    112
    My Mood
    Aggressive
    Quote Originally Posted by cc00_ View Post
    I know how to unpack cshell.dll and finding offsets.

    The WeaponMgr correct value is 0xA69120, NoReload - 0x269C. What to renew?

    Still need help.
    Try taking out the msgbox in dllmain
    [IMG]https://i1132.photobucke*****m/albums/m571/JusCausGraphix.jpg[/IMG]

  11. The Following User Says Thank You to JusCaus For This Useful Post:

    cc00_ (01-25-2012)

  12. #9
    cc00_'s Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by JusCaus View Post
    Try taking out the msgbox in dllmain
    Still get this error, but thanks anyway.

  13. #10
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    XTrap detects normal Threads.
    You have to figure out how to bypass it, it is easier than most people think.

  14. The Following User Says Thank You to derh.acker For This Useful Post:

    cc00_ (01-26-2012)

  15. #11
    cc00_'s Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    50
    Reputation
    10
    Thanks
    0
    Thanks to all, problem solved! Close thread, please.

  16. #12
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Bulgaria
    Posts
    2,400
    Reputation
    97
    Thanks
    2,537
    My Mood
    Cool
    Quote Originally Posted by derh.acker View Post
    XTrap detects normal Threads.
    You have to figure out how to bypass it, it is easier than most people think.
    how to fix like hotkeys ?

  17. #13
    Dead(H)ell's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Earth
    Posts
    471
    Reputation
    37
    Thanks
    715
    My Mood
    Flirty
    Quote Originally Posted by {Banned}**HACKER** View Post

    Yea Do What Assassin Said Probably Something To Do What He Said !

    @Assassin's Creed Bro You On Drugs, Posting In All Sections 24/7 WDF :O

    lol yh hes so active lol






    Need to join our team?PM Me
    Need to make an undetected source code?PM Me
    Need strings?PM Me
    Need Addys?PM Me

Similar Threads

  1. [Detected] Getting detected
    By onlydap in forum Vindictus Discussions
    Replies: 9
    Last Post: 07-04-2011, 10:12 PM
  2. Hacks getting detected at the speed of light
    By MetalLuigiX in forum Combat Arms Discussions
    Replies: 23
    Last Post: 07-01-2011, 12:53 PM
  3. why does speed gear get detected after the 2-4 games?
    By Reckless in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 02-11-2009, 04:05 AM
  4. The reason why hacks get detected!
    By Jeckels in forum WarRock - International Hacks
    Replies: 211
    Last Post: 09-07-2007, 06:10 AM