├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── banner.h ├── dnscat2-LICENSE.md ├── horsepill_install.c ├── horsepill_setopt ├── infect.c ├── infect.h ├── klibc-horsepill.patch └── klibc-usr-LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | horsepill_install 3 | run-init 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/README.md -------------------------------------------------------------------------------- /banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/banner.h -------------------------------------------------------------------------------- /dnscat2-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/dnscat2-LICENSE.md -------------------------------------------------------------------------------- /horsepill_install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/horsepill_install.c -------------------------------------------------------------------------------- /horsepill_setopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/horsepill_setopt -------------------------------------------------------------------------------- /infect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/infect.c -------------------------------------------------------------------------------- /infect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/infect.h -------------------------------------------------------------------------------- /klibc-horsepill.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/klibc-horsepill.patch -------------------------------------------------------------------------------- /klibc-usr-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r00tkillah/HORSEPILL/HEAD/klibc-usr-LICENSE --------------------------------------------------------------------------------