├── LICENSE ├── README.md ├── report-src ├── report-images │ ├── bootprocess.png │ ├── bootprocess.svg │ ├── changes.PNG │ ├── endscreen.png │ ├── hax.png │ ├── modifications.PNG │ ├── registry.PNG │ └── success.PNG └── report.lyx ├── report.pdf └── src ├── bootmgr-hacks ├── bootmgr.edited ├── bootmgr.edited.exe ├── bootmgr.edited.i64 ├── bootmgr.i64 ├── build-bootmgr.bat ├── originals │ ├── win7 x64 │ │ ├── bootmgr │ │ └── bootmgr.exe │ └── win8 x64 │ │ ├── bootmgr │ │ └── bootmgr.exe ├── resources │ └── header.bin └── tools │ ├── PEChecksum.zip │ ├── PEChecksum64.exe │ └── bmzip64.exe ├── payload ├── install.bat └── install.reg └── winload-hacks ├── ZZ-build-asm-intermediates.bat ├── ZZ-offsets.txt ├── ZZ-start-debugger.bat ├── ZZ-update-checksum.bat ├── assembly ├── codecave.asm ├── jumprepl.asm └── nosign.asm ├── originals ├── winload.exe ├── winload.i64 ├── winload.x32.exe └── winload.x32.idb ├── tools ├── Dbgview.exe └── yasm-1.1.0-win64.exe ├── winload.exe └── winload.exe.bak /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/README.md -------------------------------------------------------------------------------- /report-src/report-images/bootprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/bootprocess.png -------------------------------------------------------------------------------- /report-src/report-images/bootprocess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/bootprocess.svg -------------------------------------------------------------------------------- /report-src/report-images/changes.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/changes.PNG -------------------------------------------------------------------------------- /report-src/report-images/endscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/endscreen.png -------------------------------------------------------------------------------- /report-src/report-images/hax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/hax.png -------------------------------------------------------------------------------- /report-src/report-images/modifications.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/modifications.PNG -------------------------------------------------------------------------------- /report-src/report-images/registry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/registry.PNG -------------------------------------------------------------------------------- /report-src/report-images/success.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report-images/success.PNG -------------------------------------------------------------------------------- /report-src/report.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report-src/report.lyx -------------------------------------------------------------------------------- /report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/report.pdf -------------------------------------------------------------------------------- /src/bootmgr-hacks/bootmgr.edited: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/bootmgr.edited -------------------------------------------------------------------------------- /src/bootmgr-hacks/bootmgr.edited.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/bootmgr.edited.exe -------------------------------------------------------------------------------- /src/bootmgr-hacks/bootmgr.edited.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/bootmgr.edited.i64 -------------------------------------------------------------------------------- /src/bootmgr-hacks/bootmgr.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/bootmgr.i64 -------------------------------------------------------------------------------- /src/bootmgr-hacks/build-bootmgr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/build-bootmgr.bat -------------------------------------------------------------------------------- /src/bootmgr-hacks/originals/win7 x64/bootmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/originals/win7 x64/bootmgr -------------------------------------------------------------------------------- /src/bootmgr-hacks/originals/win7 x64/bootmgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/originals/win7 x64/bootmgr.exe -------------------------------------------------------------------------------- /src/bootmgr-hacks/originals/win8 x64/bootmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/originals/win8 x64/bootmgr -------------------------------------------------------------------------------- /src/bootmgr-hacks/originals/win8 x64/bootmgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/originals/win8 x64/bootmgr.exe -------------------------------------------------------------------------------- /src/bootmgr-hacks/resources/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/resources/header.bin -------------------------------------------------------------------------------- /src/bootmgr-hacks/tools/PEChecksum.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/tools/PEChecksum.zip -------------------------------------------------------------------------------- /src/bootmgr-hacks/tools/PEChecksum64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/tools/PEChecksum64.exe -------------------------------------------------------------------------------- /src/bootmgr-hacks/tools/bmzip64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/bootmgr-hacks/tools/bmzip64.exe -------------------------------------------------------------------------------- /src/payload/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/payload/install.bat -------------------------------------------------------------------------------- /src/payload/install.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/payload/install.reg -------------------------------------------------------------------------------- /src/winload-hacks/ZZ-build-asm-intermediates.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/ZZ-build-asm-intermediates.bat -------------------------------------------------------------------------------- /src/winload-hacks/ZZ-offsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/ZZ-offsets.txt -------------------------------------------------------------------------------- /src/winload-hacks/ZZ-start-debugger.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/ZZ-start-debugger.bat -------------------------------------------------------------------------------- /src/winload-hacks/ZZ-update-checksum.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/ZZ-update-checksum.bat -------------------------------------------------------------------------------- /src/winload-hacks/assembly/codecave.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/assembly/codecave.asm -------------------------------------------------------------------------------- /src/winload-hacks/assembly/jumprepl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/assembly/jumprepl.asm -------------------------------------------------------------------------------- /src/winload-hacks/assembly/nosign.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/assembly/nosign.asm -------------------------------------------------------------------------------- /src/winload-hacks/originals/winload.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/originals/winload.exe -------------------------------------------------------------------------------- /src/winload-hacks/originals/winload.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/originals/winload.i64 -------------------------------------------------------------------------------- /src/winload-hacks/originals/winload.x32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/originals/winload.x32.exe -------------------------------------------------------------------------------- /src/winload-hacks/originals/winload.x32.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/originals/winload.x32.idb -------------------------------------------------------------------------------- /src/winload-hacks/tools/Dbgview.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/tools/Dbgview.exe -------------------------------------------------------------------------------- /src/winload-hacks/tools/yasm-1.1.0-win64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/tools/yasm-1.1.0-win64.exe -------------------------------------------------------------------------------- /src/winload-hacks/winload.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/winload.exe -------------------------------------------------------------------------------- /src/winload-hacks/winload.exe.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahixon/booty/HEAD/src/winload-hacks/winload.exe.bak --------------------------------------------------------------------------------