mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
338 B
Text
16 lines
338 B
Text
// DIE's signature file
|
|
|
|
init("protector","ReNET-pack");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
if(PE.isNET())
|
|
{
|
|
if(PE.isSignatureInSectionPresent(0,"'Protected/Packed with ReNET-Pack by stx'"))
|
|
{
|
|
bDetected=1;
|
|
}
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|