mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
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.
17 lines
No EOL
353 B
JavaScript
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();
|
|
} |