Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - openprocess
Search - openprocess - List
一个利用dll注入拦截OpenProcess,禁止强行关闭程序的例子
Update : 2008-10-13 Size : 349.77kb Publisher : 天一

windowsNT下的通过截获OpenProcess函数来禁止终止本进程的程序-Through intercepting windowsNT under the OpenProcess function to prohibit the procedure to terminate the process
Update : 2025-02-17 Size : 47kb Publisher : 站长

此代码示范了如何利用 CreateToolhelp32Snapshot API函数枚举系统当前进程。以及如何用HANDLE OpenProcess(...),TerminateProcess(...)来打开和关闭活动进程。 -this code demonstrated how to use CreateToolhelp32Snapshot API function except to the current process system. And how HANDLE OpenProcess (...), TerminateProcess (...) to open up the process and the closure of activities.
Update : 2025-02-17 Size : 28kb Publisher :

显示如何找出系统中正在运行的所有进程,如何利用OpenProcess() API函数来获得每一个访问进程的进一步信息。 -show how to identify systems are running all processes, how to use OpenProcess () API function to get a visit every process of further information.
Update : 2025-02-17 Size : 1kb Publisher : guxiaohui

截获OpenProcess函数来禁止终止本进-intercepted OpenProcess function to prohibit termination of the Progressive
Update : 2025-02-17 Size : 41kb Publisher : lzc

用OpenProcess()函数将进程打开后,再利用EnumProcessModules()函数枚举该进程的模块,最后利用GetModuleFileNameEx()函数就能取得该进程的路径。-with OpenProcess () function to open the process, Reuse EnumProcessModules () function except to the process modules, Finally GetModuleFileNameEx () function can be achieved in the process paths.
Update : 2025-02-17 Size : 35kb Publisher : 张天

Terminate Process Project 1. CreateToolShotHelp 2. OpenProcess / TerminateProce-Terminate Process Project 1. CreateToolShotHelp 2. OpenProcess/TerminateProce
Update : 2025-02-17 Size : 34kb Publisher : minseok

一个利用dll注入拦截OpenProcess,禁止强行关闭程序的例子-Dll into the interception of a use OpenProcess, prohibition of forced closure procedure example
Update : 2025-02-17 Size : 350kb Publisher : 天一

DL : 0
HookAPIProcessGuard是一个使用API函数实现进程保护的简单例子,我们Hook了OpenProcess函数,就能够实现保护了!-HookAPIProcessGuard is a realization of the process of using the API function to protect the simple example, we Hook the OpenProcess function can be achieved to protect!
Update : 2025-02-17 Size : 471kb Publisher : yeqing

此代码示范了如何利用 CreateToolhelp32Snapshot API函数枚举系统当前进程。以及如何用 HANDLE OpenProcess(...),TerminateProcess(...)来打开和关闭活动进程。 -This code demonstrates how to use CreateToolhelp32Snapshot API function system is currently the process of enumeration. And how to use HANDLE OpenProcess (...), TerminateProcess (...) to open and close the activities of the process.
Update : 2025-02-17 Size : 27kb Publisher : kehaiying

对付ring0 inline hook的基本思路是这样的,自己写一个替换的内核函数,以NtOpenProcess为例,就是 MyNtOpenProcess。然后修改SSDT表,让系统服务进入自己的函数MyNtOpenProcess。而MyNtOpenProcess要做的事就是,实现NtOpenProcess前10字节指令,然后再JMP到原来的NtOpenProcess的十字节后。这样NtOpenProcess 函数头写的JMP都失效了,在ring3直接调用OpenProcess再也毫无影响。-Ring0 inline hook to deal with the basic idea is that the replacement of their own to write a kernel function to NtOpenProcess for example, is MyNtOpenProcess. And then amend the SSDT table, so that system services into its own function MyNtOpenProcess. And MyNtOpenProcess to do is realize NtOpenProcess the first 10-byte instruction, and then JMP to the original NtOpenProcess the Cross Festival. This NtOpenProcess function of the JMP are the first to write a lapse in ring3 no longer directly call OpenProcess no impact.
Update : 2025-02-17 Size : 3kb Publisher : sdlylz

利用hook openprocess实现防止任务管理器结束的方法,但是只能实现防止任务管理器,其他的防不住-Hook openprocess use Task Manager to prevent the realization of the end of the method, but can only achieve the Task Manager to prevent other防不住
Update : 2025-02-17 Size : 333kb Publisher : 木头

hook openprocess的例子,delphi的源码-hook openprocess example, delphi source
Update : 2025-02-17 Size : 333kb Publisher : baicker

DL : 0
可以SeDebugPrivilege用户权限用打开系统的进程-SeDebugPrivilege user permissions can be used to open the process of system
Update : 2025-02-17 Size : 1kb Publisher : jking

打开进程 进程进程访问操作 读写 关闭等等 -Open process
Update : 2025-02-17 Size : 1.58mb Publisher : Chen

此代码示范了如何利用 CreateToolhelp32Snapshot API函数枚举系统当前进程。以及如何用 HANDLE OpenProcess(...),TerminateProcess(...)来打开和关闭活动进程。 -This code demonstrates how to use function CreateToolhelp32Snapshot API system is currently the process of enumeration. And how to use HANDLE OpenProcess (...), TerminateProcess (...) to the process of opening and closing activity.
Update : 2025-02-17 Size : 27kb Publisher : bmbm

opeprocess,read,write内核源码
Update : 2025-02-17 Size : 11kb Publisher : aaaaaaa

DL : 1
钩openProcess,防被杀,躲过任务管理器-Hook openProcess, anti-killed
Update : 2025-02-17 Size : 81kb Publisher : wujianling

BOOL InjectDLL(DWORD ProcessID) { HANDLE Proc char buf[50]={0} LPVOID RemoteString, LoadLibAddy if(!ProcessID) return false Proc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, ProcessID) if(!Proc) { sprintf(buf, "OpenProcess() failed: d", GetLastError()) MessageBox(NULL, buf, "Loader", NULL) return false } LoadLibAddy = (LPVOID)GetProcAddress(GetModuleHandle("kernel32.dll"), "LoadLibraryA") RemoteString = (LPVOID)VirtualAllocEx(Proc, NULL, strlen(DLL_NAME), MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE) WriteProcessMemory(Proc, (LPVOID)RemoteString, DLL_NAME,strlen(DLL_NAME), NULL) CreateRemoteThread(Proc, NULL, NULL, (LPTHREAD_START_ROUTINE)LoadLibAddy, (LPVOID)RemoteString, NULL, NULL) CloseHandle(Proc) return true } -BOOL InjectDLL(DWORD ProcessID) { HANDLE Proc char buf[50]={0} LPVOID RemoteString, LoadLibAddy if(!ProcessID) return false Proc = OpenProcess(CREATE_THREAD_ACCESS, FALSE, ProcessID) if(!Proc) { sprintf(buf, "OpenProcess() failed: d", GetLastError()) MessageBox(NULL, buf, "Loader", NULL) return false } LoadLibAddy = (LPVOID)GetProcAddress(GetModuleHandle("kernel32.dll"), "LoadLibraryA") RemoteString = (LPVOID)VirtualAllocEx(Proc, NULL, strlen(DLL_NAME), MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE) WriteProcessMemory(Proc, (LPVOID)RemoteString, DLL_NAME,strlen(DLL_NAME), NULL) CreateRemoteThread(Proc, NULL, NULL, (LPTHREAD_START_ROUTINE)LoadLibAddy, (LPVOID)RemoteString, NULL, NULL) CloseHandle(Proc) return true }
Update : 2025-02-17 Size : 26kb Publisher : artofsexy

hook openprocess, vale para aprender alguma coisa, hookapi(OpenProcess)
Update : 2025-02-17 Size : 346kb Publisher : munizf
« 12 3 4 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.