Results 1 to 13 of 13
  1. #1
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding

    Hack gets abnormal memory access

    This code (for see ghosts) causes xtrap to detect an abnormal memory access:
    Code:
    void h4ck()
    {
        Sleep(200);
    
        DWORD CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
        DWORD PlayerInfo = NULL;
    
        while(CShell == NULL)
        {
            CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
            Sleep(100);
        }
    
        while(1)
        {
            CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
            PlayerInfo = *(DWORD*)(CShell + 0xC52850);
    
            Sleep(100);
    
            if(PlayerInfo != NULL)
            {
                *(float*)(PlayerInfo + 0x88) = 300.0f;
                *(float*)(PlayerInfo + 0x8C) = 300.0f;
                *(float*)(PlayerInfo + 0x90) = 300.0f;
            }
    
        }
    }
    NOTE: That is not all the code. DllMain is not shown.


    What is wrong?

  2. #2
    goold1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    152
    Reputation
    10
    Thanks
    76
    My Mood
    Busy
    detected base,update addys,see ghost with this method doesnt work's anymore.
    InComing V6 GoldHack

  3. The Following User Says Thank You to goold1 For This Useful Post:

    _corn_ (01-01-2013)

  4. #3
    _corn_'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    0x0C482BF2
    Posts
    673
    Reputation
    13
    Thanks
    294
    My Mood
    Brooding
    @goold1 could i grab the FindPattern function off you...

  5. #4
    Scynix's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    173
    Reputation
    37
    Thanks
    611
    My Mood
    Happy
    Quote Originally Posted by goold1 View Post
    detected base,update addys,see ghost with this method doesnt work's anymore.
    it works, you can make a anti client error for it (28_4)

  6. #5
    goold1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    152
    Reputation
    10
    Thanks
    76
    My Mood
    Busy
    Quote Originally Posted by Scynix View Post
    it works, you can make a anti client error for it (28_4)
    i mean see ghost with this method without any changes wont work,but any way do you know how to do Anti client error ? 28_3 28_4 ... 31_1
    InComing V6 GoldHack

  7. #6
    Shartob1's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    INDO-CROSSFIRE
    Posts
    140
    Reputation
    10
    Thanks
    14
    My Mood
    Amused
    Quote Originally Posted by goold1 View Post
    i mean see ghost with this method without any changes wont work,but any way do you know how to do Anti client error ? 28_3 28_4 ... 31_1
    Client error is very HARD!
    <=======================================>
    PRESS THANK'S IF I HELP YOU
    <=======================================>
    INDO-CROSSFIRE

     

    - Make Hack Crossfire
    - Make Loader
    - Make 30 Function's
    - Make Weapon Logger
    - Make Value Logger
    - Make Addy Logger
    - Make Public Hack
    - Make Bypass Xtrap
    - Make Bypass Client Error
    - Make D3D
    - Make Aimbot [0%]


     
    => dicky87smd (my teacher)
    => Kareem111 (best friend)
    => MagicWar7

  8. #7
    bandi12's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    562
    Reputation
    30
    Thanks
    318
    My Mood
    Yeehaw
    @goold1 , @Scynix , @_corn_

    the base or that code part is detected XTrap will never detect source code of a function it's another story that it will give Client Error but he can't detect it

    this See Ghost will give Client error 31_1, and NoRecoil/Reload/ChangeDelay will give 28_3 both of them can be killed(bypass)

    You can found an another way of seeGhost , there you have 3 offset's i think only 1 or 2 are checked so you can use only the third . (i don't know anything else bk i am using error killer)
     




    MY Latest Aimbot on : Orbital Space (Video Comming Soon)'





     

    - @UltraPGNoob
    - @dicky88smd
    - @giniyat101

  9. #8
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Quote Originally Posted by goold1 View Post
    i mean see ghost with this method without any changes wont work,but any way do you know how to do Anti client error ? 28_3 28_4 ... 31_1
    The client error was named 28_3 / 28_4 for See Ghosts too when it was new.

  10. #9
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by _corn_ View Post
    This code (for see ghosts) causes xtrap to detect an abnormal memory access:
    Code:
    void h4ck()
    {
        Sleep(200);
    
        DWORD CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
        DWORD PlayerInfo = NULL;
    
        while(CShell == NULL)
        {
            CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
            Sleep(100);
        }
    
        while(1)
        {
            CShell = (DWORD)GetModuleHandleW(L"CShell.dll");
            PlayerInfo = *(DWORD*)(CShell + 0xC52850);
    
            Sleep(100);
    
            if(PlayerInfo != NULL)
            {
                *(float*)(PlayerInfo + 0x88) = 300.0f;
                *(float*)(PlayerInfo + 0x8C) = 300.0f;
                *(float*)(PlayerInfo + 0x90) = 300.0f;
            }
    
        }
    }
    NOTE: That is not all the code. DllMain is not shown.


    What is wrong?
    Try to modify:
    Code:
    bool IsChell = true;
    while (IsChell) { IsChell = (CSHell != null) }
    while (true)
    {
    ....
    }
    Also it will cause Client Error 28_3:
    Code:
    *(float*)(PlayerInfo + 0x88) = 300.0f;







  11. #10
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Quote Originally Posted by rabir007 View Post
    Code:
    while (IsChell) { IsChell = (CSHell != null) }
    What's that supposed to be for?

  12. #11
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by -BiESi View Post


    What's that supposed to be for?
    Changed DLL Structure...







  13. #12
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    why you define
    Code:
    CShell

    that much?

  14. #13
    lolman963's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    628
    Reputation
    10
    Thanks
    2,434
    My Mood
    Amazed
    maybe he love CShell

Similar Threads

  1. [Solved] Every hack with memory access gives an X-Trap error
    By ninjastormns in forum CrossFire Help
    Replies: 14
    Last Post: 09-16-2012, 12:41 PM
  2. [Info] for all ho is is afraid of getting hacked by the remote access trojan
    By foxd23 in forum Team Fortress 2 Hacks
    Replies: 7
    Last Post: 09-03-2012, 10:32 AM
  3. [Solved] Abnormal Memory access from a dll by Xtrap
    By Jwanme_ in forum CrossFire Help
    Replies: 1
    Last Post: 08-17-2012, 11:53 PM
  4. [Help] Abnormal memory access
    By acedia in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 07-31-2012, 09:04 PM
  5. Replies: 3
    Last Post: 03-20-2012, 09:40 AM