├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── change_client.sh ├── linux.c └── windows.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/README.md -------------------------------------------------------------------------------- /change_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/change_client.sh -------------------------------------------------------------------------------- /linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/linux.c -------------------------------------------------------------------------------- /windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izenynn/c-reverse-shell/HEAD/windows.c --------------------------------------------------------------------------------