mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
17 lines
No EOL
379 B
JavaScript
Executable file
17 lines
No EOL
379 B
JavaScript
Executable file
// Detect It Easy: detection rule file format
|
|
init("source", "Python");
|
|
|
|
function detect() {
|
|
var sText = Binary.getHeaderString();
|
|
|
|
if ((/import\s/.test(sText)) && (/class\s/.test(sText)) && (/self/.test(sText))) {
|
|
if (/\sdef\s/.test(sText)) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
|
|
_setLang("Python", bDetected);
|
|
|
|
return result();
|
|
} |