mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Add new file(s): 2023-10-16
This commit is contained in:
parent
17564fc818
commit
b39c20d81e
1 changed files with 29 additions and 0 deletions
29
db/PE/KoiVM.2.sg
Normal file
29
db/PE/KoiVM.2.sg
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// DIE's signature file
|
||||
// Author: r0da https://github.com/whereisr0da
|
||||
|
||||
init("protector","KoiVM");
|
||||
|
||||
function detect(bShowType,bShowVersion,bShowOptions)
|
||||
{
|
||||
sVersion="2.0";
|
||||
|
||||
if(PE.isNET())
|
||||
{
|
||||
// VM Module
|
||||
// .text = the first section
|
||||
if(PE.isSignatureInSectionPresent(0,"'KoiVM.Runtime'"))
|
||||
{
|
||||
bDetected=1;
|
||||
}
|
||||
else if(PE.isSignatureInSectionPresent(0,"'VMEntryRun'"))
|
||||
{
|
||||
bDetected=1;
|
||||
}
|
||||
else if(PE.isSignatureInSectionPresent(0,"'KoiVM'"))
|
||||
{
|
||||
bDetected=1;
|
||||
}
|
||||
}
|
||||
|
||||
return result(bShowType,bShowVersion,bShowOptions);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue