diff options
Diffstat (limited to 'tools/935csbypass.c')
| -rw-r--r-- | tools/935csbypass.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/935csbypass.c b/tools/935csbypass.c new file mode 100644 index 0000000..c2685f5 --- /dev/null +++ b/tools/935csbypass.c @@ -0,0 +1,14 @@ +#include <stdint.h> +#include <stdio.h> + +uint8_t payload[] = { + 0x42, 0x01, 0x04, 0xE3, + 0x44, 0x03, 0x44, 0xE3, + 0x1E, 0xFF, 0x2F, 0xE1, +}; + +int main(int argc, char* argv[]) { + uint32_t (*lol)() = (uint32_t (*)())&payload; + printf("Hello, world! %x\n", lol()); + return 0; +}
\ No newline at end of file |
