├── LICENSE ├── README.md ├── imgs ├── injector_and_target_proof.png ├── injector_proof.png ├── k55logo.png └── target_proof1.png ├── k55.cc ├── k55_example_process └── k55_test_process.c └── src ├── config.h ├── exception └── k55exception.h ├── include.h ├── shellcode_inject.cc ├── shellcode_inject.h ├── utility.cc └── utility.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/README.md -------------------------------------------------------------------------------- /imgs/injector_and_target_proof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/imgs/injector_and_target_proof.png -------------------------------------------------------------------------------- /imgs/injector_proof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/imgs/injector_proof.png -------------------------------------------------------------------------------- /imgs/k55logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/imgs/k55logo.png -------------------------------------------------------------------------------- /imgs/target_proof1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/imgs/target_proof1.png -------------------------------------------------------------------------------- /k55.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/k55.cc -------------------------------------------------------------------------------- /k55_example_process/k55_test_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/k55_example_process/k55_test_process.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/config.h -------------------------------------------------------------------------------- /src/exception/k55exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/exception/k55exception.h -------------------------------------------------------------------------------- /src/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/include.h -------------------------------------------------------------------------------- /src/shellcode_inject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/shellcode_inject.cc -------------------------------------------------------------------------------- /src/shellcode_inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/shellcode_inject.h -------------------------------------------------------------------------------- /src/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/utility.cc -------------------------------------------------------------------------------- /src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josh0xA/K55/HEAD/src/utility.h --------------------------------------------------------------------------------