xtremegamer1 / xigmapper

xigmapper is a driver manual mapper that loads your driver before Vanguard, but after critical system infrastructure has been set up, allowing you to write your bypass without worrying about the intricacies of EFI or the boot process.
213 stars 58 forks source link

blue screen #3

Closed kiRyyy closed 1 year ago

kiRyyy commented 1 year ago

Hello :) I'm getting blue screen with message "page fault in nonpaged area" after I run EFI\BOOT\BOOTX64.efi. I'm using virtual box with w10 64 to test this.

xtremegamer1 commented 1 year ago

What driver are you trying to map? Also you cannot get a blue screen until you run bootmgfw bc blue screens are from windows not efi

kiRyyy commented 1 year ago

An simple driver with print hello world. My steps are: fs0: load "efi driver.efi" fs1: EFI\BOOT\BOOTX64.efi

Then I receive the message "Hi from bootkit" and bs

kiRyyy commented 1 year ago

ye I think I know where is the problem :) I have to run bootmgfw on windows partition not BOOTX64 on the pen. anyways how do I find the windows part?

kiRyyy commented 1 year ago

well, ignore the previous comment, I already loaded windows from EFI\Microsoft\boot\bootmgfw.efi and works without loading the driver, if I load it gives me the page fault in nonpaged area error. Must be the driver right? I placed in C: directory, changed the path on hook.c. Idk what is wrong.

xtremegamer1 commented 1 year ago

What is the path you are using

xtremegamer1 commented 1 year ago

Also make sure your driver doesn’t crash when loaded with kdmapper

kiRyyy commented 1 year ago

Yep, it was crashing with kdmapper, I compiled hello world from kdmapper example and works now. Thanks