【调试技术】windows双机调试——Net模式如何配置
概述:windows 双机调试可以在主页搜索 bcdedit 命令。双机调试是一个非常有用的技术,方便内核、驱动等调试场景。本文主要记录使用net调试的配置步骤。
参考微软官方文档:
- Set up KDNET network kernel debugging manually - Windows drivers | Microsoft Learn
- WinFsp Debugging Setup · WinFsp
配置目标主机
说明:需要两台机器之间可以ping通
开启调试模式
关闭数字签名校验
1 |
|
注意:不能有多余的空格
1 |
|
存在多个网卡时
如果目标机有多个网卡,还需要执行如下命令:
1 |
|
其中b为总线号,d为设备号,f为功能号,这些可以在设备管理器中查到。
禁用签名校验
1 |
|
上述配置完成后,重启操作系统
配置windbg
执行完上述命令后会得到一个key值,将key值填入到windbg页面中,如下所示:
配置符号文件路径
1 |
|
命令行方式连接
- kd命令
1 |
|
- windbg连接
1 |
|
重启调试
如下所示:重启后直接断点,可以从操作系统启动阶段开始调试了
或者使用cmd命令
1 |
|
双机调试模式下调试用户态进程
过程如下:
-
!process 0 0 目标进程名 获取目标进程EPROCESS基本信息
1
2# 查看加载了某个模块的进程,这个命令只会显示查找到第一个
!process /m ntdll.dll 0 0 svchost.exe -
.process /p +EPROCESS信息 切换到目标进程空间
-
.reload /f /user 强制重新加载用户态符号
-
.process /i /p 目标进程的EPROCESS 侵入式调试
-
bp 目标API 执行下断点命令
Debugging a user mode process from kernel mode WinDbg
程序启动时断点
In order to debug a user mode process from a kernel mode WinDbg session, break into the debugger and issue the following commands:
1 |
|
Restart the debugger and it will break within process creation. You can now set a breakpoint at your process wmain (or main, etc.):
1 |
|
Restart the debugger and it will stop at your program’s entry point.