mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Renamed multiple PE signature files to use the .6.sg extension for consistency. Also updated file permissions for JScript and Watcom signatures, and added 'sLang = "C++";' to obfusheader_h.5.sg to specify the language.
15 lines
No EOL
270 B
JavaScript
15 lines
No EOL
270 B
JavaScript
// Detect It Easy: detection rule file
|
|
|
|
meta("compiler", "JScript");
|
|
|
|
function detect() {
|
|
if (PE.isNet()) {
|
|
if (PE.isNetObjectPresent("Microsoft.JScript.Vsa")) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
sLang = "JavaScript";
|
|
|
|
return result();
|
|
} |