mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Add comment reference URLs to two PE tool metadata files for context. Inserted a Wikipedia link for Microsoft Visual Studio in db/PE/tool_Microsoft_VisualStudio_NET.6.sg and a GitHub link for de4dot in db/PE/tool_de4dot.6.sg; these are non-functional comments intended as source/reference annotations.
17 lines
No EOL
474 B
JavaScript
17 lines
No EOL
474 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://en.wikipedia.org/wiki/Microsoft_Visual_Studio
|
|
meta("tool", "Microsoft Visual Studio");
|
|
|
|
function detect() {
|
|
if (PE.isNet() && PE.isSignatureInSectionPresent(0, "590100'KMicrosoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator'")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |