├── .gitignore ├── Conf └── target.txt ├── README.md ├── doc └── images │ ├── boot_sequence.png │ ├── pei.png │ ├── tpm_compliant_module.jpg │ ├── uefi_image_types.jpg │ └── uefitool.png └── src └── UefiExamplePkg ├── UefiExamplePkg.dec ├── UefiExamplePkg.dsc ├── application ├── application.c └── application.inf ├── driver ├── component_name.c ├── driver.c ├── driver.h └── driver.inf └── include └── Protocol └── Answer.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | build 3 | Conf 4 | roms -------------------------------------------------------------------------------- /Conf/target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/Conf/target.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/boot_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/doc/images/boot_sequence.png -------------------------------------------------------------------------------- /doc/images/pei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/doc/images/pei.png -------------------------------------------------------------------------------- /doc/images/tpm_compliant_module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/doc/images/tpm_compliant_module.jpg -------------------------------------------------------------------------------- /doc/images/uefi_image_types.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/doc/images/uefi_image_types.jpg -------------------------------------------------------------------------------- /doc/images/uefitool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/doc/images/uefitool.png -------------------------------------------------------------------------------- /src/UefiExamplePkg/UefiExamplePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/UefiExamplePkg.dec -------------------------------------------------------------------------------- /src/UefiExamplePkg/UefiExamplePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/UefiExamplePkg.dsc -------------------------------------------------------------------------------- /src/UefiExamplePkg/application/application.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/application/application.c -------------------------------------------------------------------------------- /src/UefiExamplePkg/application/application.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/application/application.inf -------------------------------------------------------------------------------- /src/UefiExamplePkg/driver/component_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/driver/component_name.c -------------------------------------------------------------------------------- /src/UefiExamplePkg/driver/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/driver/driver.c -------------------------------------------------------------------------------- /src/UefiExamplePkg/driver/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/driver/driver.h -------------------------------------------------------------------------------- /src/UefiExamplePkg/driver/driver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/driver/driver.inf -------------------------------------------------------------------------------- /src/UefiExamplePkg/include/Protocol/Answer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/killvxk/uefi-rootkit/HEAD/src/UefiExamplePkg/include/Protocol/Answer.h --------------------------------------------------------------------------------