uhhhh...... what???![]()
I have tried to elevate my process to system privladges and granting SeDebugPrivlidges and openprocess api is still returning a handle of 0.
Any suggestions on how to get the handle for this process?
Ho Ho Ho bitches -> https://forum.nexon.net/CombatArms/fo...t/1518809.aspx
uhhhh...... what???![]()
[IMG]https://i622.photobucke*****m/albums/tt305/megatrron/funny%201/bert-costume.jpg[/IMG]
lol, crazyfool, please retype what you said in plain english. -.-
-off topic- hey alfsonso, got your pc working again?
Post this in C++/C section. I think.
Respect List
Legify
Dave
Liz
Obama
mindtek - He gives people half-boners.
Longevity
I need help getting the process handle for engine.exe.
I have tried the standard methods.
I have tried escalating the privladges of the application.
I have tried sedebug privladges.
If you dont know what a process handle is then please dont respond.
This is not c++ specific... it is windows API + engine.exe specific.
The point of this is so I can use Readprocessmemory API call to make my own memory hacking software for combat arms.
Ho Ho Ho bitches -> https://forum.nexon.net/CombatArms/fo...t/1518809.aspx
Getmodulehandle?
Getmoduleprocesshandle?
You would get more responses in the C++ section, few people in this section can script/write/read.
........
#include <Tlhelp32.h>
.......
PROCESSENTRY32 ppe = {0};
ppe.dwSize = sizeof (PROCESSENTRY32);
HANDLE hSnapShot = CreateToolhelp32Snapshot (TH32CS_SNAPPROCESS, 0);
if (Process32First (hSnapShot, &ppe))
{
do
{
if (!stricmp (MY_PROCESS_EXE_FILE_NAME, ppe.szExeFile) && (ppe.th32ProcessID != GetCurrentProcessId ()))
{
HANDLE hMySecondProcess = OpenProcess (PROCESS_TERMINATE, FALSE, ppe.th32ProcessID);
if (hMySecondProcess)
{
TerminateProcess (hMySecondProcess, 0);
CloseHandle (hMySecondProcess);
}
}
}while (Process32Next (hSnapShot, &ppe));
}
CloseHandle (hSnapShot);
crazyfool (06-28-2009)
Can an admin move this thread please?
Have you confirmed this on combat arms engine.exe without bypass?
When I use OpenProcess (PROCESS_ALL_ACESS(or whatevrer the full access flag is), FALSE, ppe.th32ProcessID);
It always returns 0. I have gotten it to work for other protected processes but not this one.
So you think that using Process_Terminate flag with openprocess it might work?
Ho Ho Ho bitches -> https://forum.nexon.net/CombatArms/fo...t/1518809.aspx