Results 1 to 15 of 15
  1. #1
    LucN's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    EAST JJJJJJJJJEEEEEEEEEEEEERUSALEM
    Posts
    51
    Reputation
    10
    Thanks
    216

    Cross Fire EU Simple Base [04/7/2013]

    .
    Here's a simple base for Cross Fire EU , i added PushToConsole as example.
    it's for EDUCATION PURPOSE only..

    https://www.virustotal.com/en/file/1...is/1365332535/
    CFEU_Base.rar - Jotti's malware scan



    It's source code only.

    Credits goes to :
    Stalin : XOR.
    [H]aaBX : _beginthread idea

    @Xebec , @Hannibal , @Hero , @Approved. , @BACKD00R approve please.
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 32 Users Say Thank You to LucN For This Useful Post:

    159753cado25 (10-07-2016),159753cado50 (10-18-2017),6ixth (04-13-2013),akikonk12 (04-17-2013),binjaizip (04-23-2013),ByBo99 (04-07-2013),champzkillernigga (04-12-2013),clarence132 (03-23-2014),cmc5414 (04-10-2014),cwl1955 (06-11-2013),GoldWhite (04-07-2013),gtaer (07-28-2013),Madhor (04-08-2013),MurteiraZD (05-01-2013),Neo555 (06-11-2014),nesimoski123 (07-18-2013),olwayy (04-12-2013),osha5000 (04-09-2013),petarda13 (04-10-2013),Pingo (04-07-2013),raffy99 (04-10-2013),silviu123456 (04-07-2013),skefa1 (04-10-2013),talha61 (07-03-2013),timiostimio (04-25-2013),titanikung (07-02-2017),viiper13110 (04-25-2013),Wijciech (04-08-2013),XxJuggernauTxX (04-08-2013),YoAlienDj (04-07-2013),znoen (07-13-2015),_MOTHRA_ (04-23-2013)

  3. #2
    grannycrazy's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Beetlejuice
    Posts
    286
    Reputation
    10
    Thanks
    55
    My Mood
    Angelic
    Waiting for Approve.



  4. #3
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    I thought PushToConsole was patched?

  5. #4
    LucN's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    EAST JJJJJJJJJEEEEEEEEEEEEERUSALEM
    Posts
    51
    Reputation
    10
    Thanks
    216
    Quote Originally Posted by Pingo View Post
    I thought PushToConsole was patched?
    , only few command's been removed from CShell.dll and stopped working.

  6. #5
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    Quote Originally Posted by LucN View Post
    , only few command's been removed from CShell.dll and stopped working.
    Were you using PushToConsole in your image for that wireframe?

  7. #6
    LucN's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    EAST JJJJJJJJJEEEEEEEEEEEEERUSALEM
    Posts
    51
    Reputation
    10
    Thanks
    216
    Quote Originally Posted by Pingo View Post
    Were you using PushToConsole in your image for that wireframe?
    Yes.

  8. #7
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    @LucN
    ah ok..
    I remember months ago i tried this in CFNA, got client error.
    Maybe its just patched for NA or i did something wrong.

    I'm interested in seeing the PushToConsole code.
    Not so bothered about the base, made some already.

  9. #8
    LucN's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    EAST JJJJJJJJJEEEEEEEEEEEEERUSALEM
    Posts
    51
    Reputation
    10
    Thanks
    216
    Quote Originally Posted by Pingo View Post
    @LucN
    ah ok..
    I remember months ago i tried this in CFNA, got client error.
    Maybe its just patched for NA or i did something wrong.

    I'm interested in seeing the PushToConsole code.
    Not so bothered about the base, made some already.

    Code:
    void __cdecl PushToConsole(char* Command ) 
    {
    
    	DWORD CShell = (DWORD)GetModuleHandleA(EncCShell);
    	if( CShell != NULL )
    	{
    		DWORD *LTClient = ( DWORD* )( (CShell + 0x4C914C) );
    		void* CallOffset = ( void* )*( DWORD* )( *LTClient + 0x200 );
    		
    		_asm
    		{
    			push Command;
    			call CallOffset;
    			add esp, 0x4;
    		}
    	}
    }
    Code:
    //Cross Fire EU.
    //100DBD41   8B15 4C914C10    MOV EDX,DWORD PTR DS:[104C914C] LTClient
    //100DBD47   8B82 00020000    MOV EAX,DWORD PTR DS:[EDX+200]  LTClient Offset
    Last edited by LucN; 04-07-2013 at 07:14 AM.

  10. The Following User Says Thank You to LucN For This Useful Post:

    Pingo (04-07-2013)

  11. #9
    Pingo's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    687
    Reputation
    24
    Thanks
    865
    My Mood
    Blah
    @LucN
    Thanks, i'll have a bash at that later.

    Once the base gets approved, i'll test it on CFNA too.
    I'v had strange results with my bases. I mean i can't just inject it without issue.
    I first need to patch the dll then its fine. I wonder if your base will work straight out.

  12. #10
    LucN's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    EAST JJJJJJJJJEEEEEEEEEEEEERUSALEM
    Posts
    51
    Reputation
    10
    Thanks
    216
    Quote Originally Posted by Pingo View Post
    @LucN
    Thanks, i'll have a bash at that later.

    Once the base gets approved, i'll test it on CFNA too.
    I'v had strange results with my bases. I mean i can't just inject it without issue.
    I first need to patch the dll then its fine. I wonder if your base will work straight out.
    It's simple base, i guess you need to use WindowsSDK cmd or PatchIt to make it work for CFNA also not sure about it.

  13. #11
    BACKD00R's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    Brazil
    Posts
    10,711
    Reputation
    1814
    Thanks
    31,902
    My Mood
    Aggressive
    Approved!!!!



     

    Skype : BACKD00R-MPGH

     

    • Contributor: October, 31th 2011
    • CA BR Minion: January, 03th 2012
    • CF AL Minion: April, 07th 2012
    • CA Minion: April, 15th 2012
    • CF Minion: July, 03th 2012
    • PB Minion: January, 25th 2013
    • AVA Minion : February, 02th 2013
    • Arctic Combat minion: April, 03th 2013
    • Warface Minion: April, 03th 2013

    • Minion + : July 08th 2012
    • Moderator : January 21th 2013
    • Global Moderator : August 1st 2013







  14. #12
    ByBo99's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    lol what I must do with this..? plss help me..pm me pllss

  15. #13
    Madhor's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Through the wall is not visible ...

  16. #14
    XxJuggernauTxX's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    53
    Reputation
    10
    Thanks
    17
    My Mood
    Angelic
    @LucN I've recently tried your simple but pretty cool base. I've done changing/editing all the pointers and removing some unnecessary hack features, and I only added memory wallhack it's undetected but in-game when I press the activated hotkey of wallhack it's detected by xtrap. I think there's wrong with my base. Can you please update/edit my base sir through PM? Thank you so much..

  17. #15
    O conhecimento é o caminho para liberdade.
    MPGH Member
    dreek1's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    localhost
    Posts
    1,175
    Reputation
    74
    Thanks
    1,263
    My Mood
    In Love
    Binary Scan? of LTClient '-'
    Hello Crossfire EU.
    Last edited by dreek1; 04-15-2013 at 08:12 PM.
    Public Hack:
    Jun 2012 / Dec 2017

Similar Threads

  1. [Release] Cross Fire EU Addresses [BASIC] 7/04/2013
    By LucN in forum CrossFire Europe Hack Source Code
    Replies: 9
    Last Post: 04-14-2013, 11:48 AM
  2. [Source Code] Cross Fire EU Addresses [BASIC] 21/03/2013
    By V I in forum CrossFire Europe Hack Source Code
    Replies: 7
    Last Post: 03-29-2013, 03:58 PM
  3. [Release] Cross Fire EU Addresses [BASIC] 15/03/2013
    By V I in forum CrossFire Europe Hack Source Code
    Replies: 5
    Last Post: 03-29-2013, 04:02 AM
  4. [Request] Cross fire Simple hack
    By ahmedtarek in forum CrossFire Latin America / Brazil Discussion
    Replies: 9
    Last Post: 05-18-2012, 08:41 PM
  5. [Request] A simple wallhack for cross fire
    By spana2k1 in forum Hack Requests
    Replies: 0
    Last Post: 12-20-2011, 01:07 PM