diff options
| author | stderr64 <stderr64@null.net> | 2026-08-02 21:30:47 +0300 |
|---|---|---|
| committer | stderr64 <stderr64@null.net> | 2026-08-02 21:30:47 +0300 |
| commit | 2e2d8c94e2355e6beae219cb3b7a0684ef1f1aa1 (patch) | |
| tree | 48017bda6679ff6f2ee7a661699f96ebbd3899ce /extract_decoded_executable/test_binary.c | |
| parent | 319f308b49786c9fcd3a77aa4f234df08eb2fc83 (diff) | |
| download | experiments-2e2d8c94e2355e6beae219cb3b7a0684ef1f1aa1.tar.gz experiments-2e2d8c94e2355e6beae219cb3b7a0684ef1f1aa1.tar.zst | |
Added code that extracts ELF binary stored in define value of the compiled binary
Diffstat (limited to 'extract_decoded_executable/test_binary.c')
| -rw-r--r-- | extract_decoded_executable/test_binary.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extract_decoded_executable/test_binary.c b/extract_decoded_executable/test_binary.c new file mode 100644 index 0000000..0ac5c4c --- /dev/null +++ b/extract_decoded_executable/test_binary.c @@ -0,0 +1,10 @@ +#include <stdlib.h> +#include <stdio.h> +#include <errno.h> +#include <unistd.h> +#include <string.h> + +int main( int argc, char *const *args ){ + fputs( "This is simple output from extracted test program\n", stdout ); + return 0; +} |
