├── README.md ├── station-escape ├── backdoor.h ├── guestrpc.c └── test.c └── zdi-19-421 ├── Makefile ├── README.md ├── build.sh ├── full.sh ├── gen.sh ├── heap.sh ├── leakaddr.py ├── mytoolsd └── payload.bin ├── pwn.c ├── pwn.mod ├── pwn.sh ├── pwn2 ├── Makefile ├── Module.symvers ├── build.sh ├── gen.sh ├── pwn3.c ├── pwn3.mod ├── test.sh └── uhci-hcd.h ├── stage1.py ├── stage2.py ├── test.sh └── uhci-hcd.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/README.md -------------------------------------------------------------------------------- /station-escape/backdoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/station-escape/backdoor.h -------------------------------------------------------------------------------- /station-escape/guestrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/station-escape/guestrpc.c -------------------------------------------------------------------------------- /station-escape/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/station-escape/test.c -------------------------------------------------------------------------------- /zdi-19-421/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/Makefile -------------------------------------------------------------------------------- /zdi-19-421/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/README.md -------------------------------------------------------------------------------- /zdi-19-421/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/build.sh -------------------------------------------------------------------------------- /zdi-19-421/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/full.sh -------------------------------------------------------------------------------- /zdi-19-421/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/gen.sh -------------------------------------------------------------------------------- /zdi-19-421/heap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/heap.sh -------------------------------------------------------------------------------- /zdi-19-421/leakaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/leakaddr.py -------------------------------------------------------------------------------- /zdi-19-421/mytoolsd/payload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/mytoolsd/payload.bin -------------------------------------------------------------------------------- /zdi-19-421/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn.c -------------------------------------------------------------------------------- /zdi-19-421/pwn.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn.mod -------------------------------------------------------------------------------- /zdi-19-421/pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn.sh -------------------------------------------------------------------------------- /zdi-19-421/pwn2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn2/Makefile -------------------------------------------------------------------------------- /zdi-19-421/pwn2/Module.symvers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zdi-19-421/pwn2/build.sh: -------------------------------------------------------------------------------- 1 | make clean && make 2 | -------------------------------------------------------------------------------- /zdi-19-421/pwn2/gen.sh: -------------------------------------------------------------------------------- 1 | make clean && make 2 | -------------------------------------------------------------------------------- /zdi-19-421/pwn2/pwn3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn2/pwn3.c -------------------------------------------------------------------------------- /zdi-19-421/pwn2/pwn3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn2/pwn3.mod -------------------------------------------------------------------------------- /zdi-19-421/pwn2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn2/test.sh -------------------------------------------------------------------------------- /zdi-19-421/pwn2/uhci-hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/pwn2/uhci-hcd.h -------------------------------------------------------------------------------- /zdi-19-421/stage1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/stage1.py -------------------------------------------------------------------------------- /zdi-19-421/stage2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/stage2.py -------------------------------------------------------------------------------- /zdi-19-421/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/test.sh -------------------------------------------------------------------------------- /zdi-19-421/uhci-hcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nafod/advent-vmpwn/HEAD/zdi-19-421/uhci-hcd.h --------------------------------------------------------------------------------