Detect-It-Easy/db/PE/Amazon_RelationalDatabaseService.4.sg
DosX 3793d4cf31 Add detection rules for various .NET libraries
Introduced new Detect It Easy rule files for identifying several .NET libraries, including Alibaba Cloud SDK, Amazon CloudWatch, Amazon EC2, Amazon RDS, LibVLCSharp, Microsoft Azure SDK, Plivo, RamlToOpenApiConverter, Twilio, AvalonEdit, and ControlzEx. Each rule checks for the presence of a specific .NET object to detect the corresponding library.
2025-09-07 22:40:47 +03:00

17 lines
No EOL
376 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.RDS
meta("library", "Amazon Relational Database Service");
function detect() {
if (PE.isNetObjectPresent("AWSSDK.RDS")) {
bDetected = true;
}
return result();
}