Detect-It-Easy/db/PE/LDK_.NET.2.sg
2024-11-12 20:11:38 +03:00

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();
}