Files
nuke_me_NOW/nuke_me_NOW.c
T
2025-10-23 01:35:53 -06:00

15 lines
300 B
C

#include <stdlib.h>
#include <stdio.h>
int main(void) {
int rc = system("whoami");
if (rc == -1) {
perror("system");
return 1;
}
// If you need the command exit code:
if (WIFEXITED(rc)) {
printf("exit status: %d\n", WEXITSTATUS(rc));
}
return 0;
}