From 77b5c2dba13abeb86ca23532ef56d62860db06f1 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Thu, 23 Oct 2025 01:35:53 -0600 Subject: [PATCH] 1761204953 --- nuke_me_NOW.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nuke_me_NOW.c diff --git a/nuke_me_NOW.c b/nuke_me_NOW.c new file mode 100644 index 0000000..b09e40e --- /dev/null +++ b/nuke_me_NOW.c @@ -0,0 +1,15 @@ +#include +#include + +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; +} \ No newline at end of file