mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
13 lines
No EOL
291 B
JavaScript
13 lines
No EOL
291 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
init("protector", "SafeNet Sentinel LDK .NET");
|
|
|
|
function detect() {
|
|
if (PE.isNET()) {
|
|
if (PE.isNetObjectPresent(".protect") && PE.isNetObjectPresent("haspdnert.dll")) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |