gitextract_qpoecbmd/ ├── .gitignore ├── LICENSE ├── files/ │ ├── Certs/ │ │ └── readme.txt │ ├── agent-find-rwx.py │ ├── fbsdx64_filepull.ksh │ ├── lx64_exec_root.ksh │ ├── lx64_filedelete.ksh │ ├── lx64_filepull.ksh │ ├── lx64_filepush.ksh │ ├── macos_filepull.ksh │ ├── macos_filepush.ksh │ ├── macos_unlock.ksh │ ├── pcileech.icns │ ├── pcileech.txt │ ├── pcileech_gensig.cfg │ ├── signature_info.txt │ ├── stickykeys_cmd_win.sig │ ├── uefi_textout.ksh │ ├── uefi_winload_ntos_patch.ksh │ ├── unlock_macos.sig │ ├── unlock_win10x64.sig │ ├── unlock_win10x86.sig │ ├── unlock_win11x64.sig │ ├── unlock_win8x64.sig │ ├── unlock_winvistax64.sig │ ├── win7x64.kmd │ ├── winvistax64.kmd │ ├── wx64_driverinfo.ksh │ ├── wx64_driverload_svc.ksh │ ├── wx64_driverunload.ksh │ ├── wx64_filepull.ksh │ ├── wx64_filepush.ksh │ ├── wx64_pageinfo.ksh │ ├── wx64_pagesignature.ksh │ ├── wx64_psblue.ksh │ ├── wx64_pscmd.ksh │ ├── wx64_pscmd_user.ksh │ ├── wx64_pscreate.ksh │ ├── wx64_pskill.ksh │ ├── wx64_pslist.ksh │ └── wx64_unlock.ksh ├── includes/ │ ├── dokan.h │ ├── fileinfo.h │ ├── leechcore.h │ ├── leechgrpc.h │ ├── lib32/ │ │ ├── leechcore.lib │ │ └── vmm.lib │ ├── lib64/ │ │ ├── leechcore.lib │ │ └── vmm.lib │ ├── libpdbcrust.h │ ├── public.h │ ├── vmmdll.h │ └── vmmyara.h ├── pcileech/ │ ├── Makefile │ ├── Makefile.macos │ ├── charutil.c │ ├── charutil.h │ ├── device.c │ ├── device.h │ ├── executor.c │ ├── executor.h │ ├── extra.c │ ├── extra.h │ ├── help.c │ ├── help.h │ ├── kmd.c │ ├── kmd.h │ ├── memdump.c │ ├── memdump.h │ ├── mempatch.c │ ├── mempatch.h │ ├── ob/ │ │ ├── ob.h │ │ ├── ob_cachemap.c │ │ ├── ob_core.c │ │ ├── ob_map.c │ │ └── ob_set.c │ ├── oscompatibility.c │ ├── oscompatibility.h │ ├── pcileech.c │ ├── pcileech.h │ ├── pcileech.rc │ ├── pcileech.vcxproj │ ├── pcileech.vcxproj.filters │ ├── pcileech.vcxproj.user │ ├── shellcode.h │ ├── statistics.c │ ├── statistics.h │ ├── umd.c │ ├── umd.h │ ├── util.c │ ├── util.h │ ├── version.h │ ├── vfs.c │ ├── vfs.h │ ├── vfslist.c │ ├── vfslist.h │ ├── vmmx.c │ └── vmmx.h ├── pcileech.sln ├── pcileech_shellcode/ │ ├── fbsdx64_common.c │ ├── fbsdx64_common.h │ ├── fbsdx64_common_a.asm │ ├── fbsdx64_filepull.c │ ├── fbsdx64_stage2.asm │ ├── fbsdx64_stage3.asm │ ├── fbsdx64_stage3_c.c │ ├── info_kmd_core.txt │ ├── lx64_common.c │ ├── lx64_common.h │ ├── lx64_common_a.asm │ ├── lx64_exec_root.c │ ├── lx64_filedelete.c │ ├── lx64_filepull.c │ ├── lx64_filepush.c │ ├── lx64_stage2.asm │ ├── lx64_stage2_efi.asm │ ├── lx64_stage3.asm │ ├── lx64_stage3_c.c │ ├── lx64_stage3_pre.asm │ ├── lx64_vfs.c │ ├── macos_common.c │ ├── macos_common.h │ ├── macos_common_a.asm │ ├── macos_filedelete.c │ ├── macos_filepull.c │ ├── macos_filepush.c │ ├── macos_stage2.asm │ ├── macos_stage3.asm │ ├── macos_stage3_c.c │ ├── macos_unlock.c │ ├── macos_vfs.c │ ├── pcileech_shellcode.vcxproj │ ├── pcileech_shellcode.vcxproj.filters │ ├── pcileech_shellcode.vcxproj.user │ ├── statuscodes.h │ ├── uefi_common.c │ ├── uefi_common.h │ ├── uefi_common_a.asm │ ├── uefi_kmd.asm │ ├── uefi_kmd_c.c │ ├── uefi_textout.c │ ├── uefi_winload_ntos_kmd.asm │ ├── uefi_winload_ntos_kmd_c.c │ ├── uefi_winload_ntos_patch.c │ ├── wx64_common.c │ ├── wx64_common.h │ ├── wx64_common_a.asm │ ├── wx64_driverinfo.c │ ├── wx64_driverload_svc.c │ ├── wx64_driverunload.c │ ├── wx64_exec_user.asm │ ├── wx64_exec_user_c.c │ ├── wx64_filepull.c │ ├── wx64_filepush.c │ ├── wx64_pageinfo.asm │ ├── wx64_pagesignature.c │ ├── wx64_psblue.asm │ ├── wx64_pscreate.c │ ├── wx64_pskill.c │ ├── wx64_pslist.c │ ├── wx64_stage1.asm │ ├── wx64_stage2.asm │ ├── wx64_stage23_vmm.asm │ ├── wx64_stage23_vmm3.asm │ ├── wx64_stage2_hal.asm │ ├── wx64_stage3.asm │ ├── wx64_stage3_c.c │ ├── wx64_stage3_pre.asm │ ├── wx64_umd_exec.asm │ ├── wx64_umd_exec_c.c │ ├── wx64_unlock.c │ └── wx64_vfs.c ├── readme.md ├── usb3380.md └── usb3380_flash/ ├── linux/ │ ├── Makefile │ ├── pcileech_flash.c │ ├── readme.md │ └── readme_flash.txt └── windows/ ├── USB3380Flash/ │ ├── USB3380Flash.c │ ├── USB3380Flash.h │ ├── USB3380Flash.inf │ ├── USB3380Flash.user │ ├── USB3380Flash.vcxproj │ ├── USB3380Flash.vcxproj.filters │ └── USB3380Flash.vcxproj.user └── USB3380Flash_Installer/ ├── USB3380Flash_Installer.vcxproj ├── USB3380Flash_Installer.vcxproj.filters ├── USB3380Flash_Installer.vcxproj.user └── installer.c