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.
25 lines
No EOL
651 B
JavaScript
25 lines
No EOL
651 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/mongodb/mongo-csharp-driver
|
|
meta("library", "MongoDB.NET Driver");
|
|
|
|
function detect() {
|
|
if (PE.isNetObjectPresent("MongoDB") ||
|
|
PE.isNetObjectPresent("MongoDB.Driver") ||
|
|
PE.isNetObjectPresent("MongoDB.Driver.Core") ||
|
|
PE.isNetObjectPresent("MongoDB.Analyzer")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
if (PE.isNetObjectPresent("MongoDB.AspNetCore.OData")) {
|
|
sVersion = "ASP.NET Core";
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |