├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── demo.gif ├── inject.c └── payload.s /.gitignore: -------------------------------------------------------------------------------- 1 | payload 2 | inject 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/demo.gif -------------------------------------------------------------------------------- /inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/inject.c -------------------------------------------------------------------------------- /payload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/pwn-mbr/HEAD/payload.s --------------------------------------------------------------------------------