blurelf applies gaussian blur to selected section (default is .text) of the given ELF file
example:
$ cat > helloworld.c <<EOF
#include <stdio.h>
int main() {
printf("hello world\n");
}
EOF
$ cc -o helloworld helloworld.c
$ blurelf -o helloworld.blur helloworld
$ ./helloworld.blur
Illegal instruction (core dumped)