├── LICENSE ├── Makefile ├── README.md ├── givemeroot.c ├── install.sh └── sbin ├── Makefile ├── bin └── .gitkeep ├── sslconnect.c ├── tcp_client.c └── utils ├── shell.c ├── shell.h ├── socket.c └── socket.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/README.md -------------------------------------------------------------------------------- /givemeroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/givemeroot.c -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/install.sh -------------------------------------------------------------------------------- /sbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/Makefile -------------------------------------------------------------------------------- /sbin/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbin/sslconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/sslconnect.c -------------------------------------------------------------------------------- /sbin/tcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/tcp_client.c -------------------------------------------------------------------------------- /sbin/utils/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/utils/shell.c -------------------------------------------------------------------------------- /sbin/utils/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/utils/shell.h -------------------------------------------------------------------------------- /sbin/utils/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mthbernardes/givemeroot/HEAD/sbin/utils/socket.c -------------------------------------------------------------------------------- /sbin/utils/socket.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | int create_socket(char * host,int port); 3 | --------------------------------------------------------------------------------