From fb94e5f52e04c2ee5ebd2d88536b31924c4de378 Mon Sep 17 00:00:00 2001 From: ClF3 Date: Mon, 4 Nov 2024 20:51:53 +0800 Subject: [PATCH] smaller C to avoid negative --- Part2-FlushReload/attacker.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Part2-FlushReload/attacker.c b/Part2-FlushReload/attacker.c index 5c1ea7c..80c4f35 100644 --- a/Part2-FlushReload/attacker.c +++ b/Part2-FlushReload/attacker.c @@ -11,7 +11,7 @@ #define CACHE_HIT_THRESHOLD 200 #define WAIT_TIME 1000 #define AVAR 1664525 -#define CVAR 1013904223 +#define CVAR 10020107 int main() { int index = -1; int flag = -1; @@ -40,4 +40,4 @@ int main() { deallocate_shared_buffer(buf); return 0; -} \ No newline at end of file +}