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