Add example c root-shells

This commit is contained in:
g0t mi1k
2021-11-24 10:08:49 +00:00
parent 7a0c657912
commit 9eca573017
6 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Using x64? $ sudo apt instlal -y libc6-dev-i386
all: x64 x86
create:
mkdir -p bin/
x64: create
gcc -m64 -static -o bin/root-shellx64 root-shell.c
x86: create
gcc -m32 -static -o bin/root-shellx86 root-shell.c
strip:
strip bin/*
result:
file bin/*
clean:
rm -rf bin/