From da7a8ce60a9e2ebe6452fe06a983568d4656dd08 Mon Sep 17 00:00:00 2001 From: hexcoder- Date: Wed, 10 Jun 2020 21:53:58 +0200 Subject: issue #401: remove all TAB characters from dictionary files --- unicorn_mode/unicornafl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unicorn_mode/unicornafl') diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl index 1ea63380..a6e943c6 160000 --- a/unicorn_mode/unicornafl +++ b/unicorn_mode/unicornafl @@ -1 +1 @@ -Subproject commit 1ea633800dd391e26f45bcd1d9dc561c00d1953f +Subproject commit a6e943c683ecb3aba1baaddc7a02eefd2c5a5ad9 -- cgit 1.4.1 From b3fee6cab21a99d6ead890df7422f63af4a4f2ad Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Thu, 11 Jun 2020 16:36:45 +0200 Subject: rust bindings for unicornafl --- unicorn_mode/UNICORNAFL_VERSION | 2 +- unicorn_mode/unicornafl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'unicorn_mode/unicornafl') diff --git a/unicorn_mode/UNICORNAFL_VERSION b/unicorn_mode/UNICORNAFL_VERSION index 7e07fcc7..a4b86c4f 100644 --- a/unicorn_mode/UNICORNAFL_VERSION +++ b/unicorn_mode/UNICORNAFL_VERSION @@ -1 +1 @@ -1ea6338 +44c4118 diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl index a6e943c6..44c41181 160000 --- a/unicorn_mode/unicornafl +++ b/unicorn_mode/unicornafl @@ -1 +1 @@ -Subproject commit a6e943c683ecb3aba1baaddc7a02eefd2c5a5ad9 +Subproject commit 44c4118187687c92411b51d670339340a684d905 -- cgit 1.4.1 From 05da66b5e930b333641c01430247c4ee614efdd2 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Sun, 14 Jun 2020 23:30:36 +0200 Subject: unicornafl update --- unicorn_mode/UNICORNAFL_VERSION | 2 +- unicorn_mode/unicornafl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'unicorn_mode/unicornafl') diff --git a/unicorn_mode/UNICORNAFL_VERSION b/unicorn_mode/UNICORNAFL_VERSION index a4b86c4f..53e87a8a 100644 --- a/unicorn_mode/UNICORNAFL_VERSION +++ b/unicorn_mode/UNICORNAFL_VERSION @@ -1 +1 @@ -44c4118 +45ed5d8b diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl index 44c41181..45ed5d8b 160000 --- a/unicorn_mode/unicornafl +++ b/unicorn_mode/unicornafl @@ -1 +1 @@ -Subproject commit 44c4118187687c92411b51d670339340a684d905 +Subproject commit 45ed5d8b667a1abec34a691c4c327723a05c282d -- cgit 1.4.1 From 43bbbbf4e0a0be1c1c612afa2d6aafa0cae2033a Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 15 Jun 2020 00:20:13 +0200 Subject: rust unicornafl++ --- unicorn_mode/UNICORNAFL_VERSION | 2 +- unicorn_mode/unicornafl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'unicorn_mode/unicornafl') diff --git a/unicorn_mode/UNICORNAFL_VERSION b/unicorn_mode/UNICORNAFL_VERSION index 53e87a8a..589e3db2 100644 --- a/unicorn_mode/UNICORNAFL_VERSION +++ b/unicorn_mode/UNICORNAFL_VERSION @@ -1 +1 @@ -45ed5d8b +09e8e8ad diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl index 45ed5d8b..09e8e8ad 160000 --- a/unicorn_mode/unicornafl +++ b/unicorn_mode/unicornafl @@ -1 +1 @@ -Subproject commit 45ed5d8b667a1abec34a691c4c327723a05c282d +Subproject commit 09e8e8adec97482d9937dd15f73f78611de19bc3 -- cgit 1.4.1 From 246444dd5765ee467b6fc090dc078cac3ce2074a Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Mon, 15 Jun 2020 21:40:30 +0200 Subject: tidied hash32, unicorn --- src/afl-performance.c | 6 +++--- unicorn_mode/UNICORNAFL_VERSION | 2 +- unicorn_mode/unicornafl | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'unicorn_mode/unicornafl') diff --git a/src/afl-performance.c b/src/afl-performance.c index 28564eb8..9c842312 100644 --- a/src/afl-performance.c +++ b/src/afl-performance.c @@ -130,13 +130,13 @@ void long_jump(afl_state_t *afl) { /* we switch from afl's murmur implementation to xxh3 as it is 30% faster - and get 64 bit hashes instead of just 32 bit. Less collisions! :-) */ -u32 hash32(const void *key, u32 len, u32 seed) { +u32 inline hash32(const void *key, u32 len, u32 seed) { - return XXH64(key, len, seed) % 0x100000000; + return XXH32(key, len, seed); } -u64 hash64(const void *key, u32 len, u64 seed) { +u64 inline hash64(const void *key, u32 len, u64 seed) { return XXH64(key, len, seed); diff --git a/unicorn_mode/UNICORNAFL_VERSION b/unicorn_mode/UNICORNAFL_VERSION index 589e3db2..c03c4529 100644 --- a/unicorn_mode/UNICORNAFL_VERSION +++ b/unicorn_mode/UNICORNAFL_VERSION @@ -1 +1 @@ -09e8e8ad +04765d30 diff --git a/unicorn_mode/unicornafl b/unicorn_mode/unicornafl index 09e8e8ad..04765d30 160000 --- a/unicorn_mode/unicornafl +++ b/unicorn_mode/unicornafl @@ -1 +1 @@ -Subproject commit 09e8e8adec97482d9937dd15f73f78611de19bc3 +Subproject commit 04765d30ac3c3d31d83520f35237a52d18002c83 -- cgit 1.4.1