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

16 lines
No EOL
366 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", "Microsoft Edge WebView");
function detect() {
if (PE.isLibraryPresent("WebView2Loader.dll") || PE.isLibraryPresent("msedge_elf.dll")) {
bDetected = true;
}
return result();
}