mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
22 lines
420 B
Text
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);
|
|
}
|