about summary refs log tree commit diff
path: root/custom_mutators
diff options
context:
space:
mode:
authorMaik Betka <9078425+voidptr127@users.noreply.github.com>2023-04-17 17:09:48 +0200
committerMaik Betka <9078425+voidptr127@users.noreply.github.com>2023-04-17 17:09:48 +0200
commite55b5c54080698ee2efe317321c1f387c225115b (patch)
tree703fca1be98dcfb95b4da719ad12a75adffd4a53 /custom_mutators
parent450dbae8cd2ae278e0b381d172cb7694f40278cb (diff)
downloadafl++-e55b5c54080698ee2efe317321c1f387c225115b.tar.gz
fixed the server handshake commands, works now
Diffstat (limited to 'custom_mutators')
-rw-r--r--custom_mutators/atnwalk/atnwalk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/custom_mutators/atnwalk/atnwalk.c b/custom_mutators/atnwalk/atnwalk.c
index 584add61..387d8b5d 100644
--- a/custom_mutators/atnwalk/atnwalk.c
+++ b/custom_mutators/atnwalk/atnwalk.c
@@ -11,8 +11,8 @@
 
 
 // handshake constants
-const uint8_t SERVER_ARE_YOU_ALIVE = 42;
-const uint8_t SERVER_YES_I_AM_ALIVE = 213;
+const uint8_t SERVER_ARE_YOU_ALIVE = 213;
+const uint8_t SERVER_YES_I_AM_ALIVE = 42;
 
 // control bits
 const uint8_t SERVER_CROSSOVER_BIT = 0b00000001;