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