summaryrefslogtreecommitdiff
path: root/tools/935csbypass.c
diff options
context:
space:
mode:
authorspv420 <unomilliono@gmail.com>2022-05-31 19:51:14 -0400
committerspv420 <unomilliono@gmail.com>2022-05-31 19:51:14 -0400
commitb040db45dfc9ef9a902e48bc2718a94cd099f505 (patch)
tree7b361fbd03f866b225473a54f837ec388f9fa4fb /tools/935csbypass.c
parentfe765137cd79a671dc3e6932bb867ef333611e73 (diff)
I live in a constant state of fear and misery
Do you miss me anymore? And I don't even notice When it hurts anymore Anymore Anymore Anymore
Diffstat (limited to 'tools/935csbypass.c')
-rw-r--r--tools/935csbypass.c14
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