Results 1 to 15 of 15
  1. #1
    ivan_dc's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    122
    My Mood
    Relaxed

    External Console [1.4.382 TeknoMW3]

    Hello, this is my second post and i want release a simple External Console
    Credits
    BaberZz and ZeroLimit (me)
    Screenshoot

    Source Code
     
    Code:
    #include <Windows.h>
    #include <iostream>
    
    void PrintToConsole(const char* text)
    {
    	int pushText = 0x4F7300;
    	__asm
    	{
    		push[text];
    		call pushText;
    		add esp, 0x4;
    	}
    }
    
    void hooked()
    {
    	int showConsole = 0x515CD0;
    	__asm call showConsole;
    	PrintToConsole("------------------------------ MW3 EXTERNAL CONSOLE ------------------------------\n");
    	PrintToConsole("Credits: BaberZz and ZeroLimit\n");
    	PrintToConsole("P.D: Don't close MsgBox or console will disappear\n");
    	MessageBoxA(NULL, "Don't Close", "#AnonSok", 0); //I don't know how to fix console's closes without this.
    
    }
    
    BOOL APIENTRY DllMain(HMODULE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved)
    {
    	if (ul_reason_for_call == DLL_PROCESS_ATTACH)
    	{
    		CreateThread(0, 0, (LPTHREAD_START_ROUTINE)hooked, 0, 0, 0);
    	}
    	return TRUE; 
    }

    VirusScan
    VIRUSTOTAL
    https://virusscan.jotti.org/en/scanre...7515898b3b08e5

    Download & Thx.

    P.D: Fix Virus Scans links and img
    <b>Downloadable Files</b> Downloadable Files
    Last edited by akim14; 06-20-2015 at 04:46 AM.

  2. The Following 71 Users Say Thank You to ivan_dc For This Useful Post:

    a841603239 (12-05-2022),AlejandroADLC (07-03-2015),alireza0028 (04-11-2020),amir42 (12-29-2016),AMIRMW4 (01-26-2018),ariar (06-21-2018),BadHim (02-15-2018),BigHank (06-12-2017),Blackscop23 (11-23-2017),BrainnLagg (01-05-2018),Brian62637 (03-16-2016),caliking97 (09-30-2015),CaptainLuis41 (06-27-2015),codewixpm (01-31-2018),Combine24 (07-02-2017),denver97 (08-10-2019),Dizzy12345 (06-20-2015),Elias2702 (11-18-2018),ElR3mix (06-09-2018),FR4K (03-21-2016),Fymh (02-24-2016),gghq25 (03-06-2018),gogogo2015 (04-21-2018),gojem (02-04-2019),Guacotaco (07-21-2016),gustavo70560 (03-03-2017),headhunter9797 (09-02-2017),hoogste1 (02-16-2018),ImApollo (10-19-2015),InRaGed (06-22-2015),InUrFace1337 (05-15-2019),IReapersBR (12-16-2017),iztok (10-07-2015),k1nejo (08-14-2021),KED2255 (06-27-2015),King_Padro109 (02-22-2017),lllllssssssssaaaaaaaaaaaa (01-07-2018),lolwasd2 (08-05-2018),Lukk64 (03-03-2019),Marco Savasta (06-08-2019),moglu (06-20-2015),MrAmurrica (04-18-2021),MrIBlockyHD (02-20-2017),Nate26 (09-29-2017),nextgenhackerv2 (12-11-2017),Night.:.Wolf (06-22-2015),Nitro Gen (06-20-2015),Nxhh (07-14-2016),oWnLy9 (01-17-2019),pincebanerjee34 (11-20-2016),r3st4rt (06-29-2015),rafirauofi (03-05-2018),roncs (04-21-2018),Royaller (02-05-2016),RustOsprey (12-20-2022),sazakuniqs (03-26-2018),SJMairaB (08-26-2017),StardustDragonV2 (06-20-2015),Starfan503 (07-29-2016),TheDaRk09 (08-02-2015),thegamer1109 (02-09-2018),TokenPlays (06-01-2022),TomZocktTV (08-04-2015),tree15 (03-08-2016),varito (07-25-2016),VerZus1337 (08-16-2016),woodsdra (09-23-2018),wske1 (08-04-2015),xzhnkrr (03-30-2018),yohandy (12-30-2019),zayyyn (12-28-2019)

  3. #2
    Nitro Gen's Avatar
    Join Date
    Jun 2015
    Gender
    female
    Location
    chair.
    Posts
    34
    Reputation
    10
    Thanks
    177
    Your screenshot is broken.

  4. #3
    ivan_dc's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    122
    My Mood
    Relaxed
    I can't post links.

  5. #4
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    MessageBoxA(NULL, "Don't Close", "#AnonSok", 0); //I don't know how to fix console's closes without this.

    Use Translate/DispatchMessage to avoid that.
    The callee of Sys_CreateConsole() must maintain it's handle to messages.

  6. #5
    COD3RIN's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    Posts
    5,309
    Reputation
    468
    Thanks
    28,778
    My Mood
    Angelic
    Nice source code...
    ᚛C☢dℝin3᚜
    Love you.
    ~Kenshit13
    Quote Originally Posted by cheaterman26 View Post
    COD3RIN PUT A BACKDOOR ON HIS OWN CHEAT HE HACK MY COMPUTER AND MY STEAM, DON'T TRUST THIS GUYS !



  7. #6
    akim14's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    896
    Reputation
    293
    Thanks
    5,054
    My Mood
    Doh
    Approved, post back results
    [IMG]
    MPGH Member since 10. 21. 2009
    CoD section Minion 22. 01. 2015 - 23. 02. 2017
    GTA section Minion 15. 07.2015 - 23. 02. 2017
    Minion+ 27. 01. 2016 - 23. 02. 2017
    Skype Impersonator: mpgh.akim14. (always use skype buton on my profile and contact me here)

  8. #7
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Anyone wanting better C&P material, feel free to leech without providing credits.
    And by leech, I mean kiss the sky.

    Code:
    #include <Windows.h>
    #include <iostream>
    
    inline void ConsolePrintf( const char* format, ... ){
    	static char _cbuf[4096];
    	va_list va;
    	
    	va_start( va, format );
    	_vsnprintf_s( _cbuf, sizeof( _cbuf ), format, va );
    	strcat_s(_cbuf, "\n");
    	((void(__cdecl*)(const char*))0x4F7300)( _cbuf );
    }
    
    DWORD ThisIsntAHookBTWItsAThread( LPVOID lpArg ){
    	((int(__cdecl*)())0x515CD0)();
    	
    	ConsolePrintf("------------------------------ MW3 EXTERNAL CONSOLE ------------------------------");
    	ConsolePrintf("\tCredits: BaberZz and ZeroLimit & Kenshit1338");
    	ConsolePrintf("----------------------------------------------------------------------------------\n\n");
    	
    	MSG m;
    	while( GetMessage( &m, 0, 0, 0 ) ){
    		TranslateMessage( &m );
    		DispatchMessage( &m );
    	}
    	
    	return static_cast< DWORD >( m.lParam );
    }
    
    BOOL APIENTRY DllMain(HMODULE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved){
    	if (ul_reason_for_call == DLL_PROCESS_ATTACH)
    		CreateThread(0, 0, ThisIsntAHookBTWItsAThread, 0, 0, 0);
    	return TRUE; 
    }

  9. The Following 2 Users Say Thank You to Hitokiri~ For This Useful Post:

    81|DrizZle (08-02-2015),akim14 (06-21-2015)

  10. #8
    ivan_dc's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    122
    My Mood
    Relaxed
    Ty for code it better

  11. #9
    SOHmonkey's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    What DOES IT DO!

  12. #10
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by SOHmonkey View Post
    What DOES IT DO!
    It opens an external console I think, might be wrong.

  13. #11
    xkillerxdestroy's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    whats the external console for ? to change ID to get unban or what ?

  14. #12
    Silent's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    5,069
    Reputation
    2172
    Thanks
    8,473
    My Mood
    Bitchy
    Quote Originally Posted by xkillerxdestroy View Post
    whats the external console for ? to change ID to get unban or what ?
    To set dvars....
    Click Here to visit the official MPGH wiki! Keep up with the latest news and information on games and MPGH! To check out pages dedicated to games, see the links below!











    dd/mm/yyyy
    Member - 31/01/2015
    Premium - 12/09/2016
    Call of Duty minion - 05/11/2016 - 05/11/2019
    BattleOn minion - 28/02/2017 - 05/11/2019
    Battlefield minion - 30/05/2017 - 05/11/2019
    Other Semi-Popular First Person Shooter Hacks minion - 21/09/2017 - 17/09/2019
    Publicist - 07/11/2017 - 02/08/2018
    Cock Sucker - 01/12/2017 - Unknown
    Minion+ - 06/03/2018 - 05/11/2019
    Fortnite minion - 08/05/2018 - 05/11/2019
    Head Publicist - 08/10/2018 - 10/01/2020
    Developer Team - 26/10/2019 - 10/01/2020
    Former Staff - 10/01/2020



  15. #13
    niko1921's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    mov Location, eax
    Posts
    130
    Reputation
    36
    Thanks
    261
    late but nice!,


    Fix bug:

    Code:
    while(GetMessage(0, 0, NULL, NULL));

  16. #14
    SJMairaB's Avatar
    Join Date
    Oct 2014
    Gender
    female
    Location
    Argentina
    Posts
    345
    Reputation
    19
    Thanks
    180
    My Mood
    Cool

    Exclamation

    Thanks, works with TeknoMW3 (v2.8.0.4).
    * It hurts that to use exec autoexec.cfg doesn't work...and to use an AHK to copy every command delays 6 minutes. =(

  17. #15
    ayyfam22's Avatar
    Join Date
    Aug 2017
    Gender
    female
    Posts
    14
    Reputation
    10
    Thanks
    0
    thanks mate

Similar Threads

  1. [Help] external console?! TeknoMw3
    By ImSoNerD in forum Call of Duty Modern Warfare 3 Private Server Hacks
    Replies: 0
    Last Post: 11-01-2014, 11:32 AM
  2. Simple External Console for TeknoMW3?
    By AnotherJackHD in forum Call of Duty Modern Warfare 3 Help
    Replies: 1
    Last Post: 06-28-2014, 07:50 PM
  3. [Detected] External Console Radar
    By King-Orgy in forum Call of Duty 7 - Black Ops Hacks & Cheats
    Replies: 105
    Last Post: 12-19-2010, 09:41 AM
  4. [Release] [Release]External Console Radar Inc. Source
    By King-Orgy in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 8
    Last Post: 12-04-2010, 02:39 AM
  5. [Detected] Custom External Console
    By @osma8 in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 10
    Last Post: 10-21-2010, 05:14 AM