![]() |
|
Portal |
Downloads |
Arcade |
Register |
FAQ |
|
|
|||||||
| Coding Tech Support For all your coding needs based on America's Army |
![]() |
|
|
Thread Tools |
|
|
#1 |
|
c:\tmp\~8b045cf75687.tmp
Golden Dragon
Join Date: 10th Jul 2004
Posts: 1,063
|
My personal type III "Bot Loader" Version 1.0 © Temp2 Fecit Anno 2005.
I regard DrUnKeN ChEeTaH's original as a type IV Bot Loader. This one will show you diagnostics concerning the injection process. I developed it to get over a problem I had in another game. |
|
|
|
|
|
#2 |
|
$åñ†åñ4 ƒụ¢қҳŻǾº®Ż
Assassin
Join Date: 10th Oct 2004
Location: The Netherlands
Posts: 178
|
Nice temp2!
I might need it when i'm gonna learn C++ and/or Uscript ![]()
__________________
Þ®ºµd mèmbè® ºƒ £iºñhè宆 ƒåñ¢lµb *Working on dutch versions of hacks* ....:::www.dutch-hacks.tk:::.... Status: Hacks/Tools Translated: Timbernickle Project-X \\ AAOM \\ Simple DLL Injector \\ UCPF Training Hack |
|
|
|
|
|
#3 |
|
Moderator
Apprentice God
|
lol, thx temp
nice stuff, it just terminated some processes wich my windblows couldnt terminate ![]() Grtz HyPeR-X
__________________
Legal CDKeys: GameKeyShop |
|
|
|
|
|
#4 | |
|
Devil of Hell
Join Date: 11th Mar 2004
Location: in your ass
Posts: 325
|
Quote:
![]() you can use something like that: Code:
BOOL SetDebugPrivileges()
{
BOOL bRetour=TRUE;
DWORD dwPID;
HANDLE hProcess;
HANDLE hToken;
LUID Luid;
TOKEN_PRIVILEGES tpDebug;
dwPID = GetCurrentProcessId();
if ((hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwPID)) == NULL)
bRetour=FALSE;
if (OpenProcessToken(hProcess, TOKEN_ALL_ACCESS, &hToken) == 0)
bRetour=FALSE;
if ((LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &Luid)) == 0)
bRetour=FALSE;
tpDebug.PrivilegeCount = 1;
tpDebug.Privileges[0].Luid = Luid;
tpDebug.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
if ((AdjustTokenPrivileges(hToken, FALSE, &tpDebug, sizeof(tpDebug), NULL, NULL)) == 0)
bRetour=FALSE;
if (GetLastError() != ERROR_SUCCESS)
bRetour=FALSE;
CloseHandle(hToken);
CloseHandle(hProcess);
return bRetour;
}
//to kill process by pid
BOOL KillPid(int Pid)
{
HANDLE hProcess;
if ((hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, Pid)) != NULL)
{
if (TerminateProcess(hProcess, 0) == 0)
MessageBox("****in process");
CloseHandle(hProcess);
return TRUE;
}
MessageBox("process sucks");
return FALSE;
}
Any plan to make your injector open source temp? |
|
|
|
|
|
|
#5 |
|
Moderator
Apprentice God
|
thx for the code S@t@nic@ might prove use full later on
![]() Grtz HyPeR-X
__________________
Legal CDKeys: GameKeyShop |
|
|
|
|
|
#6 | |
|
Devil of Hell
Join Date: 11th Mar 2004
Location: in your ass
Posts: 325
|
when i'm injecting my dll in AA, all running fine but:
Quote:
edited: ok... that was just my computer... not enought free resource when i had inject the dll, so that had take more than 3s... eheheh Last edited by S@t@nic@; 12th May 2005 at 18:04.. |
|
|
|
|
|
|
#7 |
|
» Ex Super ********* «
Evil One
Join Date: 29th Jun 2004
Location: cheatville
Posts: 4,789
|
file also availble on mpcdownloads now!
http://www.mpcdownloads.com/_mpc_d0w.../botloader.rar Thx Temp2, keep it up ![]()
__________________
Former MPC Super Moderater |
|
|
|
|
|
#8 |
|
Angel of Darkness
Join Date: 28th Jan 2004
Posts: 272
|
noob .. dude you avatar is so ****ing tight
nice work |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|
![]() |
![]() |