首页
社区
课程
招聘
[求助]小白自建调试体系 课程问题 求解答
发表于: 2018-7-24 15:07 4400

[求助]小白自建调试体系 课程问题 求解答

2018-7-24 15:07
4400
NTSTATUS
NtCreateDebugObject_lisaisai(
OUT PHANDLE DebugObjectHandle,
IN ACCESS_MASK DesiredAccess,
IN POBJECT_ATTRIBUTES ObjectAttributes,
IN ULONG Flags
)

{
	NTSTATUS Status;
	HANDLE Handle;
	KPROCESSOR_MODE PreviousMode, PreviousMode_linshi;
	PDEBUG_OBJECT DebugObject;

	PAGED_CODE();


	//if (ams_zhongduanjici == 1)
	//{
	//	_asm{int 3}
	//	ams_zhongduanjici = ams_zhongduanjici - 1;
	//}
	PreviousMode = KeGetPreviousMode_lisaisai();
	//PreviousMode_linshi = KeGetPreviousMode();
	//KdPrint(("KeGetPreviousMode %x\n", (ULONG)KeGetPreviousMode));
	//KdPrint(("ObCreateObject_lisaisai%x ObInsertObject_lisaisai %x n", ObCreateObject_lisaisai, ObInsertObject_lisaisai));
	//KdPrint(("KeGetPreviousMode_lisaisai%x n", KeGetPreviousMode_lisaisai));
	//return STATUS_SUCCESS;
	try {
		if (PreviousMode != KernelMode) {
			ProbeForWriteHandle(DebugObjectHandle);
		}
		*DebugObjectHandle = NULL;

	} except(ExSystemExceptionFilter()) { // If previous mode is kernel then don't handle the exception
		return GetExceptionCode();
	}

	if (Flags & ~DEBUG_KILL_ON_CLOSE) {
		return STATUS_INVALID_PARAMETER;
	}

	Status = (ULONG)ObCreateObject(PreviousMode,  //双机调试每次到ObCreateObject 这个函数就蓝屏 了 自己用函数指针也不行 怎么办
		DbgkDebugObjectType,
		ObjectAttributes,
		PreviousMode,
		NULL,
		sizeof (DEBUG_OBJECT),
		0,
		0,
		&DebugObject);
	
	if (!NT_SUCCESS(Status)) {
		return Status;
	}
	
	ExInitializeFastMutex(&DebugObject->Mutex);
	InitializeListHead(&DebugObject->EventList);
	KeInitializeEvent(&DebugObject->EventsPresent, NotificationEvent, FALSE);


	PEPROCESS  CurrentProcess;
	CurrentProcess = PsGetCurrentProcess();
	DbgPrint("NewNtCreateDebugObject当前进程%08x", CurrentProcess);


	if (Flags & DEBUG_KILL_ON_CLOSE) {
		DebugObject->Flags = DEBUG_OBJECT_KILL_ON_CLOSE;
	}
	else {
		DebugObject->Flags = 0;
	}

	//
	// Insert the object into the handle table
	//
	Status = ((PObInsertObject)ObInsertObject_lisaisai)(DebugObject,
		NULL,
		DesiredAccess,
		0,
		NULL,
		&Handle);


	if (!NT_SUCCESS(Status)) {
		return Status;
	}

	try {
		*DebugObjectHandle = Handle;
	} except(ExSystemExceptionFilter()) {
		//
		// The caller changed the page protection or deleted the memory for the handle.
		// No point closing the handle as process rundown will do that and we don't know its still the same handle
		//
		Status = GetExceptionCode();
	}

	return Status;
}
ObCreateObject 我双机调试了下 一到这个 函数就 蓝屏 怎么回事  xp3系统 小白的教程 替换 NtDebugActiveProcess这个成功
NtCreateDebugObject  替换这个函数出问题了 需要怎么解决 大神门
QQ群582865430 过游戏驱动保护 研究 修改内核 写外挂 交流

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

最后于 2018-8-17 11:46 被神大蛇编辑 ,原因:
收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 273
活跃值: (447)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
搞个群 要付费 你是教学吗 还是你很大牛 既然求学 何不敞开门户。虽说费用不高但是态度问题.
2018-9-19 01:04
0
游客
登录 | 注册 方可回帖
返回
//