├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── inject.c ├── poc.png └── sample-process └── sample.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/README.md -------------------------------------------------------------------------------- /inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/inject.c -------------------------------------------------------------------------------- /poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/poc.png -------------------------------------------------------------------------------- /sample-process/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W3ndige/linux-process-injection/HEAD/sample-process/sample.c --------------------------------------------------------------------------------