To run this shell you need to download the zip file and extract it using this command
unzip filename.zip
Enter the folder codeshell and compile all *.c files using GNU Compiler Collection (GCC) and run under Linux environments like Ubuntu
GCC command compiler
gcc -o batchcode batchcode.cgcc -o shellcode shellcode.c**Run the shell in interactive mode:
./shellcodethis is how it looks like
to execute on batch mode
give access permission
chmod u+x filenameOr run the shell in batch mode
with bat as a commands file
./batYou can compile and run the shellcode shell with the Makefile using the command below. This only works for the interactive mode.
~/codeshell% make shellcode
After you finish testing the shellcode shell, you can clean up the unnecessary files in the folder with the following command:
~/codeshell% make clear
rm shellcode .codeshell
