diff options
author | Maik Betka <9078425+voidptr127@users.noreply.github.com> | 2023-04-17 17:09:48 +0200 |
---|---|---|
committer | Maik Betka <9078425+voidptr127@users.noreply.github.com> | 2023-04-17 17:09:48 +0200 |
commit | e55b5c54080698ee2efe317321c1f387c225115b (patch) | |
tree | 703fca1be98dcfb95b4da719ad12a75adffd4a53 /custom_mutators | |
parent | 450dbae8cd2ae278e0b381d172cb7694f40278cb (diff) | |
download | afl++-e55b5c54080698ee2efe317321c1f387c225115b.tar.gz |
fixed the server handshake commands, works now
Diffstat (limited to 'custom_mutators')
-rw-r--r-- | custom_mutators/atnwalk/atnwalk.c | 4 |
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; |