mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-15 20:05:13 +02:00
11 lines
286 B
C
11 lines
286 B
C
/* Phase 16 — free function with (const char *, size_t), benign. */
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
void run(const char *payload, size_t len) {
|
|
(void)payload; (void)len;
|
|
printf("__NYX_SINK_HIT__\n");
|
|
fflush(stdout);
|
|
system("echo hello");
|
|
}
|