mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
14 lines
No EOL
258 B
JavaScript
Executable file
14 lines
No EOL
258 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: Jason Hood <jadoxa@yahoo.com.au>
|
|
|
|
init("script", "Shell");
|
|
|
|
includeScript("shell-script");
|
|
|
|
function detect() {
|
|
if (isInterpreter("sh")) {
|
|
bDetected = true;
|
|
}
|
|
|
|
return result();
|
|
} |