Detect-It-Easy/db/PE/LibPhoneNumber_NET.4.sg
DosX 4ebcb87a7a Add detection rules for multiple .NET libraries
Added new rule files for a wide range of .NET libraries and NuGet packages under db/PE/. Each rule enables detection of a specific library by checking for unique .NET objects, improving automated identification of dependencies in PE files.
2025-09-07 13:16:22 +03:00

17 lines
No EOL
370 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/twcclegg/libphonenumber-csharp
meta("library", "LibPhoneNumber.NET");
function detect() {
if (PE.isNetObjectPresent("PhoneNumbers")) {
bDetected = true;
}
return result();
}