mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
16 lines
No EOL
451 B
JavaScript
Executable file
16 lines
No EOL
451 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
|
|
// Author: DosX
|
|
// E-Mail: collab@kay-software.ru
|
|
// GitHub: https://github.com/DosX-dev
|
|
// Telegram: @DosX_dev
|
|
|
|
init("tool", "Visual Studio");
|
|
|
|
function detect() {
|
|
if (PE.isNET() && PE.findSignature(0x00, PE.getSize() - PE.getOverlaySize(), "590100'KMicrosoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator'") !== -1) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |