How to break on the entry point of a program when debug in kernel mode with windbg?
问题 I want to debug a program in kernel mode, and I want to break on the entry point of the program like ollydbg . But I can't break it with bp because the program is not start and the symbol can't be loaded. I have found some way to do it but I think it's not so good. 1.Break on the CreateProcess function in kernel. But I don't know which function exactly should I break and I think there is a long way between CreateProcess and the entry point of the program. 2.Change the entry point of the