DebateFort - Where Warriors Come To Debate
RAGECRY - Funny, Amusing, Interesting, Trending & Viral Videos and Images
GameOrc - Free Flash Games Online
Page 1 of 3 1 2 3 LastLast
Results 1 to 15 of 43
  1. #1
    MPGH Member
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Ruse
    Posts
    2,086
    Reputation
    78
    Thanks
    2,398
    My Mood
    Chatty

    XTRAP Rulzzzzz now days ?!? EndScne fully scanned ?

    Hello guys,
    I was wondering if the ES is fully scanned nowdays ?!? someone know somethng abuot it ? i talk about the one in crossfire.exe

    if it still can be hooked... some joker please ?
    Me: what is dwrod ?
    cosmic : Its like a shortcut for defines or anything else





    On 27.09.2011 one great man with nickname kmanev073 said: You don't need to be pro to be one from the best but you can't be the best if you are not pro so Never say Never ! Dont give up ! And live untill you are able !

  2. #2
    Banned
    BANNED!
    Mr.TeddyBear's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    1,702
    Reputation
    16
    Thanks
    130
    My Mood
    Amused
    Wow Xtrap is getting alot Better

  3. #3
    Expert Member
    MPGH Member
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    658
    Reputation
    24
    Thanks
    701
    My Mood
    Blah
    Not sure about endscene but beginscene was detected for me 2 days ago when i tried detouring.

  4. #4
    Advanced Member
    MPGH Member
    ramo's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    A.R.E
    Posts
    245
    Reputation
    51
    Thanks
    3,767
    My Mood
    Blah
    endscene is not detect for me, xtrap doesn't scan it .

  5. #5
    Threadstarter
    MPGH Member
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Ruse
    Posts
    2,086
    Reputation
    78
    Thanks
    2,398
    My Mood
    Chatty
    Quote Originally Posted by ramo View Post
    endscene is not detect for me, xtrap doesn't scan it .
    on 32 or 64 bit ? ... endscne may not be scanned but how to hook it on 32 bit when xtrap detects every thing and you get hack tool if you run loop in your create thread
    i tried with no crete thread... xtrap or hack tool every time
    Me: what is dwrod ?
    cosmic : Its like a shortcut for defines or anything else





    On 27.09.2011 one great man with nickname kmanev073 said: You don't need to be pro to be one from the best but you can't be the best if you are not pro so Never say Never ! Dont give up ! And live untill you are able !

  6. #6
    Banned
    BANNED!
    xKickAssBackup's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    139
    Reputation
    66
    Thanks
    130
    My Mood
    Bored
    CShell.dll looks much protected now, about crossfire.exe i think that nothing is changed on it

  7. #7
    Threadstarter
    MPGH Member
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Ruse
    Posts
    2,086
    Reputation
    78
    Thanks
    2,398
    My Mood
    Chatty
    Quote Originally Posted by xKickAssBackup View Post
    CShell.dll looks much protected now, about crossfire.exe i think that nothing is changed on it
    nothing changed about cshell
    Me: what is dwrod ?
    cosmic : Its like a shortcut for defines or anything else





    On 27.09.2011 one great man with nickname kmanev073 said: You don't need to be pro to be one from the best but you can't be the best if you are not pro so Never say Never ! Dont give up ! And live untill you are able !

  8. #8
    Banned
    BANNED!
    xKickAssBackup's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    139
    Reputation
    66
    Thanks
    130
    My Mood
    Bored
    Quote Originally Posted by kmanev073 View Post
    nothing changed about cshell
    Are you sure? I test iflux's base edited and it will work, wait :P

    Edit

    Test it :

    Code:
    #include <Windows.h>
    #include <fstream>
    
    using namespace std;
    
    
    
    void IfLuX ( void )
    {
    	bool wallhack = 1;
    
    	while(1)
    	{
    		
    
    	        if (wallhack==1)
    		{
    		   memcpy((VOID*)0x6D29FC, "\x00\x00\x00\x00\x01\x00", 6);
    		}
    	}
    }
    void Hook ( HINSTANCE hDLL )
    {
    	
    	while(1)
    	{
    		IfLuX();
    	}
    }
    BOOL WINAPI DllMain ( HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls(hDll);
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hook, hDll, NULL, NULL);
    	}
    	return TRUE;
    }
    I didn't test but i'm 99% sure that it works (It's iflux's base but edited by me...)
    Last edited by xKickAssBackup; 08-29-2012 at 08:46 AM.

  9. #9
    Expert Member
    MPGH Member
    Glenox's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\WINDOWS\system32\Glenox.exe
    Posts
    523
    Reputation
    10
    Thanks
    2,358
    My Mood
    Bored
    Quote Originally Posted by xKickAssBackup View Post
    Are you sure? I test iflux's base edited and it will work, wait :P

    Edit

    Test it :

    Code:
    #include <Windows.h>
    #include <fstream>
    
    using namespace std;
    
    
    
    void IfLuX ( void )
    {
    	bool wallhack = 1;
    
    	while(1)
    	{
    		
    
    	        if (wallhack==1)
    		{
    		   memcpy((VOID*)0x6D29FC, "\x00\x00\x00\x00\x01\x00", 6);
    		}
    	}
    }
    void Hook ( HINSTANCE hDLL )
    {
    	
    	while(1)
    	{
    		IfLuX();
    	}
    }
    BOOL WINAPI DllMain ( HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls(hDll);
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hook, hDll, NULL, NULL);
    	}
    	return TRUE;
    }
    I didn't test but i'm 99% sure that it works (It's iflux's base but edited by me...)

    this base is undetected by x-trap!!! 100% sure!!!

    x-trap is scanned and look for hooking cshell.dll!!!
    Hit "Thanks" if you like!

    ~QUIT~

  10. #10
    Banned
    BANNED!
    xKickAssBackup's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    139
    Reputation
    66
    Thanks
    130
    My Mood
    Bored
    Quote Originally Posted by Glenox View Post
    this base is undetected by x-trap!!! 100% sure!!!

    x-trap is scanned and look for hooking cshell.dll!!!
    Yes it's what i meant, but only wallhack can work (memory features)

  11. #11
    Expert Member
    MPGH Member
    Glenox's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    C:\WINDOWS\system32\Glenox.exe
    Posts
    523
    Reputation
    10
    Thanks
    2,358
    My Mood
    Bored
    Quote Originally Posted by xKickAssBackup View Post
    Yes it's what i meant, but only wallhack can work (memory features)
    yes!!! wallhack is working!!! because wallhack is not hooking in CShell.dll
    Hit "Thanks" if you like!

    ~QUIT~

  12. #12
    Threadstarter
    MPGH Member
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Ruse
    Posts
    2,086
    Reputation
    78
    Thanks
    2,398
    My Mood
    Chatty
    Quote Originally Posted by xKickAssBackup View Post
    Are you sure? I test iflux's base edited and it will work, wait :P

    Edit

    Test it :

    Code:
    #include <Windows.h>
    #include <fstream>
    
    using namespace std;
    
    
    
    void IfLuX ( void )
    {
    	bool wallhack = 1;
    
    	while(1)
    	{
    		
    
    	        if (wallhack==1)
    		{
    		   memcpy((VOID*)0x6D29FC, "\x00\x00\x00\x00\x01\x00", 6);
    		}
    	}
    }
    void Hook ( HINSTANCE hDLL )
    {
    	
    	while(1)
    	{
    		IfLuX();
    	}
    }
    BOOL WINAPI DllMain ( HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	if (dwReason == DLL_PROCESS_ATTACH)
    	{
    		DisableThreadLibraryCalls(hDll);
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)Hook, hDll, NULL, NULL);
    	}
    	return TRUE;
    }
    I didn't test but i'm 99% sure that it works (It's iflux's base but edited by me...)
    haha you got xtrap ? it is bcs of the base... you use it ?
    Me: what is dwrod ?
    cosmic : Its like a shortcut for defines or anything else





    On 27.09.2011 one great man with nickname kmanev073 said: You don't need to be pro to be one from the best but you can't be the best if you are not pro so Never say Never ! Dont give up ! And live untill you are able !

  13. #13
    Banned
    BANNED!
    xKickAssBackup's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    139
    Reputation
    66
    Thanks
    130
    My Mood
    Bored
    Quote Originally Posted by kmanev073 View Post
    haha you got xtrap ? it is bcs of the base... you use it ?
    are you noob? I said it's iflux's base edited

  14. #14
    Dual-Keyboard Member
    MPGH Member
    pceumel's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    332
    Reputation
    16
    Thanks
    2,397
    My Mood
    Yeehaw
    xtrap is so stuppid i´m hooking the endscene function in d3d9.dll ^^
    NEW - D3D BASE -WDDM HOOK
    http://www.mpgh.net/forum/242-crossf...ml#post7906339
    My Base and Injector source (HOTKEY):
    http://www.mpgh.net/forum/580-crossf...ml#post5927406

    Happy leeching
    WDDM Hook
    http://www.mpgh.net/forum/242-crossf...d-hooking.html


    Killed a GM with hack : DONE and no bann ^^
    Killed a GM and all other Players : DONE
    Get 3min Banned : Done

  15. The Following User Says Thank You to pceumel For This Useful Post:

    ~FALLEN~ (09-02-2012)

  16. #15
    Threadstarter
    MPGH Member
    kmanev073's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Ruse
    Posts
    2,086
    Reputation
    78
    Thanks
    2,398
    My Mood
    Chatty
    @pceumel i succede to hook it too see i posted a pic of my "menu"
    Me: what is dwrod ?
    cosmic : Its like a shortcut for defines or anything else





    On 27.09.2011 one great man with nickname kmanev073 said: You don't need to be pro to be one from the best but you can't be the best if you are not pro so Never say Never ! Dont give up ! And live untill you are able !

Page 1 of 3 1 2 3 LastLast

Similar Threads

  1. So who thinks the weather is crappy now days!!
    By youngloveb14 in forum General
    Replies: 12
    Last Post: 05-07-2011, 09:30 PM
  2. [Help]Now Date/Now Day
    By Shark23 in forum Visual Basic Programming
    Replies: 12
    Last Post: 03-17-2010, 08:04 AM
  3. i been active for a few days now =|
    By Gourav2122 in forum General
    Replies: 13
    Last Post: 10-09-2009, 06:51 PM
  4. join mvpz_4 life rank 300 ojin now!!!!!!!!!!!!!!!!!!!!!we do clan war every day
    By ***crossfire*** in forum CrossFire Clan Recruitment & Advertising
    Replies: 1
    Last Post: 10-02-2009, 04:46 PM