ver 0.4.0 new random generator

This commit is contained in:
ClF3 2024-11-04 20:38:32 +08:00
parent 4488725666
commit 5bc44b5a59
1 changed files with 8 additions and 4 deletions

View File

@ -10,10 +10,13 @@
#define CACHE_HIT_THRESHOLD 200
#define WAIT_TIME 1000
#define AVAR = 1664525
#define CVAR = 1013904223
int main() {
int index = -1;
int flag = -1;
CYCLES time = -1;
int offset = 0;
// buf is shared between the attacker and the victim
char *buf = allocate_shared_buffer();
@ -22,11 +25,12 @@ int main() {
clflush((ADDR_PTR)buf + i * 128);
}
for(int i = 0; i < WAIT_TIME; i++);
for(int i = 712; i < 10000; i++) {
time = measure_one_block_access_time((ADDR_PTR)buf + (i*i) / 1024 % 1024 * 128);
for(int i = 0; i < 10000; i++) {
offset = (AVAR * offset + CVAR) % 1024;
time = measure_one_block_access_time((ADDR_PTR)buf + offset * 128);
if(time < CACHE_HIT_THRESHOLD) {
flag = (i*i) / 1024 % 1024;
index=i;
flag = offset;
index = i;
break;
}
}