Add a new rdtsc pattern based on NASCAR Heat 2002 logs

New pattern detects the following:

rdtsc
mov address, eax
This commit is contained in:
Silent 2020-10-06 21:30:58 +02:00
parent 13bd79f930
commit ad3c042df2
No known key found for this signature in database
GPG Key ID: AE53149BB0C45AF1
1 changed files with 2 additions and 1 deletions

View File

@ -487,7 +487,8 @@ const uint8_t rdtsc_pattern[] = {
0xEB,
0xF6,
0xA1,
0x01 // one false positive in Group S Challenge [1.05] .text E8 0F 31 01 00
0x01, // one false positive in Group S Challenge [1.05] .text E8 0F 31 01 00
0xA3
};
const int sizeof_rdtsc_pattern = sizeof(rdtsc_pattern);