Author Topic: universal Injector made by mrmedic  (Read 1345 times)

0 Members and 1 Guest are viewing this topic.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
universal Injector made by mrmedic
« on: July 01, 2008, 09:00:38 pm »
universal Injector made by mrmedic



http://tkc-community.net/forum/index.php?action=downloads;sa=view;id=63

a very versatile Injector made by mrmedic , has stealth capabilities , injects into any process , multi inject , single inject ..very fast very quick , vista compatible and plays music too , enjoy.

to config edit the config.ini in notepad
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

ZOldDude

  • The Unknown Rank!
  • Administrator
  • MasstKer
  • *
  • Posts: 20874
  • Old School TKC
    • View Profile
    • Admin
Re: universal Injector made by mrmedic
« Reply #1 on: July 01, 2008, 09:02:38 pm »
File approved...ready for D/L.

*While we crash and burn, small, low tech, agrarian societies such as the Hmong in the mountains of Laos will continue on without so much as blinking an eye.*

mesengr

  • Relentless Teamkiller
  • **
  • Posts: 51
    • View Profile
Re: universal Injector made by mrmedic
« Reply #2 on: July 02, 2008, 08:57:14 am »
thanks MrM. great work!
« Last Edit: July 02, 2008, 09:06:31 am by mesengr »

mesengr

  • Relentless Teamkiller
  • **
  • Posts: 51
    • View Profile
Re: universal Injector made by mrmedic
« Reply #3 on: July 03, 2008, 04:53:36 am »
I have a DLL that has a function something like this:

Code: [Select]
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved)
{
    switch( fdwReason )
    {
        case DLL_PROCESS_ATTACH:
{
g_hOle32Dll = LoadLibrary(_T("ole32.dll"));

pCoCreateInstance = (COCREATEINSTANCE)DetourFunc(
(BYTE*)GetProcAddress(g_hOle32Dll, "CoCreateInstance"),
(BYTE*)dtx_CoCreateInstance, 5);

hMyWindowHwnd = CreateDialog(hinstDLL, MAKEINTRESOURCE(IDD_MyWindow), NULL, MyWindowProc);
ShowWindow(hMyWindowHwnd, SW_SHOW);

            break;
}

        case DLL_PROCESS_DETACH:
{
RetourFunc((BYTE*)GetProcAddress(g_hOle32Dll, "CoCreateInstance"),
(BYTE*)pCoCreateInstance, 5);

DestroyWindow(hMyWindowHwnd);
            break;
}
    }

    return TRUE;
}

HRESULT STDAPICALLTYPE my_CoCreateInstance(REFCLSID rclsid, LPUNKNOWN pUnkOuter,
DWORD dwClsContext, REFIID riid, LPVOID* ppv)
{ /* ... function definition ... */ }


DllMain() should create and show a window. The Universal Injector does not make this window show (it does work with the "RTCW:ET" loader.exe). Is there another way to make my own popup window show?
« Last Edit: July 03, 2008, 05:31:28 am by mesengr »

Jimmy

  • Insane Joker
  • ****
  • Posts: 618
    • View Profile
    • http://www.jimmyschot.com
Re: universal Injector made by mrmedic
« Reply #4 on: July 21, 2008, 10:27:43 pm »
great stuff man, works like a charm  :smile

Subsky

  • Insane Joker
  • ****
  • Posts: 504
  • Subskii
    • View Profile
Re: universal Injector made by mrmedic
« Reply #5 on: July 21, 2008, 10:45:10 pm »
DllMain() should create and show a window. The Universal Injector does not make this window show (it does work with the "RTCW:ET" loader.exe). Is there another way to make my own popup window show?

The RTCW:ET loader window is actually the standard Save/Open File Dialog.  It's not a custom Dialog.  Make sure no other code is crashing your DLL on load (you usually don't get any notifications that something went wrong).  Check return values & also post the code for MyWindowProc.