Detect-It-Easy/db/PE/protector_LDK_.NET.2.sg
2026-05-25 21:03:46 +03:00

14 lines
No EOL
343 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("protector", "SafeNet Sentinel LDK .NET");
function detect() {
if (PE.isNet()) {
if (PE.isNetObjectPresent(".protect") && PE.isNetObjectPresent("haspdnert.dll")) {
bDetected = true;
}
}
return result();
}