Detect-It-Easy/db/PE/SecuROM.2.sg
2014-06-02 00:02:17 +02:00

22 lines
420 B
Text

// DIE's signature file
// Author: ELF_7719116
// History:
// Created 30.07.2013
init("protector","SecuROM");
function detect(bShowType,bShowVersion,bShowOptions)
{
if(PE.section[".securom"])
{
sVersion="pre-8.03.03";
bDetected=1;
}
else if(PE.section[".dsstext"])
{
sVersion="8.03.03+";
bDetected=1;
}
return result(bShowType,bShowVersion,bShowOptions);
}