├── README.md ├── stackoverflow_expl ├── CMakeLists.txt ├── main.cpp ├── payload.h └── shellc.asm └── task1 └── src ├── CMakeLists.txt ├── hevd_comm.h ├── main.cpp ├── util.cpp └── util.h /README.md: -------------------------------------------------------------------------------- 1 | # wke_exercises 2 | -------------------------------------------------------------------------------- /stackoverflow_expl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/stackoverflow_expl/CMakeLists.txt -------------------------------------------------------------------------------- /stackoverflow_expl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/stackoverflow_expl/main.cpp -------------------------------------------------------------------------------- /stackoverflow_expl/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/stackoverflow_expl/payload.h -------------------------------------------------------------------------------- /stackoverflow_expl/shellc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/stackoverflow_expl/shellc.asm -------------------------------------------------------------------------------- /task1/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/task1/src/CMakeLists.txt -------------------------------------------------------------------------------- /task1/src/hevd_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/task1/src/hevd_comm.h -------------------------------------------------------------------------------- /task1/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/task1/src/main.cpp -------------------------------------------------------------------------------- /task1/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/task1/src/util.cpp -------------------------------------------------------------------------------- /task1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/wke_exercises/HEAD/task1/src/util.h --------------------------------------------------------------------------------