├── .gitignore ├── .gitmodules ├── README.md ├── data ├── ideapad-vmk.bin ├── ideapad-vmk.hex ├── ideapad.dislocker-metadata ├── ideapad.nvram ├── ideapad.rom ├── ideapad.sal ├── ideapad.tpm ├── ideapad_payload.rom └── ideapad_seed.hex ├── extract_secret_payload ├── Makefile ├── _start.S ├── hexlify_xxd.py ├── linker.ld └── main.c ├── extract_seed_payload ├── Makefile ├── _start.S ├── linker.ld └── main.c └── tools └── amd_ftpm2_unseal.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/README.md -------------------------------------------------------------------------------- /data/ideapad-vmk.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad-vmk.bin -------------------------------------------------------------------------------- /data/ideapad-vmk.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad-vmk.hex -------------------------------------------------------------------------------- /data/ideapad.dislocker-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad.dislocker-metadata -------------------------------------------------------------------------------- /data/ideapad.nvram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad.nvram -------------------------------------------------------------------------------- /data/ideapad.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad.rom -------------------------------------------------------------------------------- /data/ideapad.sal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad.sal -------------------------------------------------------------------------------- /data/ideapad.tpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad.tpm -------------------------------------------------------------------------------- /data/ideapad_payload.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad_payload.rom -------------------------------------------------------------------------------- /data/ideapad_seed.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/data/ideapad_seed.hex -------------------------------------------------------------------------------- /extract_secret_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_secret_payload/Makefile -------------------------------------------------------------------------------- /extract_secret_payload/_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_secret_payload/_start.S -------------------------------------------------------------------------------- /extract_secret_payload/hexlify_xxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_secret_payload/hexlify_xxd.py -------------------------------------------------------------------------------- /extract_secret_payload/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_secret_payload/linker.ld -------------------------------------------------------------------------------- /extract_secret_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_secret_payload/main.c -------------------------------------------------------------------------------- /extract_seed_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_seed_payload/Makefile -------------------------------------------------------------------------------- /extract_seed_payload/_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_seed_payload/_start.S -------------------------------------------------------------------------------- /extract_seed_payload/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_seed_payload/linker.ld -------------------------------------------------------------------------------- /extract_seed_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/extract_seed_payload/main.c -------------------------------------------------------------------------------- /tools/amd_ftpm2_unseal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPReverse/ftpm_attack/HEAD/tools/amd_ftpm2_unseal.py --------------------------------------------------------------------------------