mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
296 B
JavaScript
Executable file
15 lines
296 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
|
|
init("compiler", "JScript");
|
|
|
|
function detect() {
|
|
if (PE.isNET()) {
|
|
if (PE.isNetObjectPresent("Microsoft.JScript.Vsa")) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
_setLang("JavaScript", bDetected);
|
|
|
|
return result();
|
|
}
|