Detect-It-Easy/db/PE/Microsoft_NET_Runtime.4.sg
2025-03-23 12:41:20 +03:00

17 lines
No EOL
341 B
JavaScript

// Detect It Easy: detection rule file
// Author: DosX
// E-Mail: collab@kay-software.ru
// GitHub: https://github.com/DosX-dev
// Telegram: @DosX_dev
init("library", ".NET Core runtime");
function detect() {
if (PE.isLibraryPresent("coreclr.dll")) {
bDetected = true;
sVersion = "5.XX+";
}
return result();
}