mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
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.
17 lines
No EOL
369 B
JavaScript
17 lines
No EOL
369 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://www.nuget.org/packages/AWSSDK.S3
|
|
meta("library", "Amazon Simple Storage Service");
|
|
|
|
function detect() {
|
|
if (PE.isNetObjectPresent("AWSSDK.S3")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |