(YARA) YARA_Detect_RDTSC

Created the . Updated 1 year, 10 months ago.

            rule Detect_RDTSC: AntiDebug AntiSandbox{
    meta: 
        description = "Detect RDTSC as anti-debug and anti-sandbox"
        author = "Unprotect"
        comment = "Experimental rule"
    strings:
        $1 = { 0F 31 }
    condition:   
       uint16(0) == 0x5A4D and filesize < 1000KB and $1
}
        

Associated Techniques

Technique Name Technique ID's Has Snippet(s)
RDTSC U0126