Detect-It-Easy/db/PE/DnsClient.NET.4.sg
DosX fbc3d45b59 Add detection rules for .NET libraries
Introduced new rule files for DnsClient.NET, Fasterflect, MongoDB.NET, Snappier, and Combres libraries. These rules enable identification of the respective .NET libraries in PE files by checking for specific .NET objects.
2025-08-29 15:36:56 +03:00

17 lines
No EOL
353 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
// https://github.com/MichaCo/DnsClient.NET
meta("library", "DnsClient.NET");
function detect() {
if (PE.isNetObjectPresent("DnsClient")) {
bDetected = true;
}
return result();
}