feature: xor'd payload

This commit is contained in:
Dobin
2024-02-11 12:51:12 +00:00
parent 0753290fe6
commit 547cd94dd5
8 changed files with 52 additions and 34 deletions
+4 -3
View File
@@ -1,3 +1,4 @@
for (i=0; i<11223344; i++){
dest[i] = supermega_payload[i] ^ 0x42;
}
for (int n=0; n<11223344; n++){
dest[n] = supermega_payload[n];
dest[n] = dest[n] ^ 0x42;
}