Detect-It-Easy/db/Binary/text.Shell.1.sg
2024-11-07 00:17:07 +03:00

14 lines
No EOL
265 B
JavaScript
Executable file

// Detect It Easy: detection rule file format
// Author: Jason Hood <jadoxa@yahoo.com.au>
init("script", "Shell");
includeScript("shell-script");
function detect() {
if (isInterpreter("sh")) {
bDetected = true;
}
return result();
}