├── .gitignore ├── Makefile ├── README.md ├── core ├── harpoon.c └── harpoon.h ├── ext └── libcapstone.a ├── libhook.h └── tests ├── Makefile ├── libhook.h └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/README.md -------------------------------------------------------------------------------- /core/harpoon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/core/harpoon.c -------------------------------------------------------------------------------- /core/harpoon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/core/harpoon.h -------------------------------------------------------------------------------- /ext/libcapstone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/ext/libcapstone.a -------------------------------------------------------------------------------- /libhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/libhook.h -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/libhook.h: -------------------------------------------------------------------------------- 1 | ../libhook.h -------------------------------------------------------------------------------- /tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpwn/harpoon/HEAD/tests/test.c --------------------------------------------------------------------------------