pokeproc.c

来自「SuperJtag 光盘 ARMJtagDebugFinal 」· C语言 代码 · 共 20 行

C
20
字号
/*
 *  From inpection of the TSS we know that NT's default IOPM offset is
 * 0x20AD.  From an inspection of a dump of a process structure, we
 * can find the bytes 'AD 20' at offset 0x30.  This is where NT stores
 * the IOPM offset for each process, so that I/O access can be granted
 * on a process-by-process basis.  This portion of the process
 * structure is not documented in the DDK.
 *
 *  This kernel mode driver fragment illustrates the brute force
 * method of poking the IOPM base into the process structure.
 */
void GiveIO()
{
	char *CurProc;

	CurProc = IoGetCurrentProcess();
	*((USHORT *)(CurProc + 0x30)) = 0x88;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?