Results 1 to 1 of 1
  1. #1
    nomanis's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    2

    finding cshell in crossfire module

    ok so when I logged the modules of crossfire. cshell doesn't show up. which is weird b/c my see ghosts works, it is part cshell, but when I want to use weapon hacks cshell isnt there.

    this is what was logged.
    process: System.Diagnostics.Process (crossfire)
    module: crossfire.exe
    module: ntdll.dll
    module: wow64.dll
    module: wow64win.dll
    module: wow64cpu.dll
    I used this code:
    Code:
    long CShell = findModule("CShell.dll", CFPid);
    private static long findModule(String modName, int cfpid)
            {
                Process temp = Process.GetProcessById(cfpid);
                if (temp != null)
                {
                    foreach (ProcessModule procmodule in temp.Modules)
                    {
                        logData("\tmodule: " + procmodule.ModuleName);
                        if (modName == procmodule.ModuleName)
                        {
                            return procmodule.BaseAddress.ToInt64();
                        }
                    }
                }
                return 0;
            }
    so I found this in crossfire.exe module. and wonder if this will get me anything. i was thinking that that address hold the data which is cshell's base address. since it says cshell hinstance.

    Code:
    005737BC   68 88D06600      PUSH Crossfir.0066D088                   ; ASCII "cshell_hinstance"
    
    0066D088   6373 68          ARPL WORD PTR DS:[EBX+68],SI
    
    005D4608   68 D0666600      PUSH Crossfir.006666D0                   ; ASCII "cshell.dll"
    why cant i find cshell?
    Last edited by nomanis; 08-07-2012 at 05:31 PM.

Similar Threads

  1. [Release] unpacked cshell.dll & crossfire.exe [EU]
    By giniyat101 in forum CrossFire Europe Hack Source Code
    Replies: 25
    Last Post: 08-19-2012, 04:10 PM
  2. [Patched] Unpacked cshell.dll & crossfire.exe (4/7/2012)
    By giniyat101 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 28
    Last Post: 08-01-2012, 09:34 PM
  3. [Help] How to find CShell address ?
    By XarutoUsoCrack in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 09-03-2011, 01:46 PM
  4. How to Find addy for Crossfire PH
    By acedia in forum CrossFire PH Discussions
    Replies: 2
    Last Post: 08-09-2011, 02:15 AM
  5. Loadlib.exe FOR Cshell.dll CRossfire
    By Gοku in forum CrossFire Help
    Replies: 10
    Last Post: 04-12-2011, 07:11 AM