mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
305 B
Text
15 lines
305 B
Text
// DIE's signature file
|
|
|
|
init("library","Python");
|
|
|
|
function detect(bShowType,bShowVersion,bShowOptions)
|
|
{
|
|
var aPython=PE.isLibraryPresentExp(/^python(\d\d)/i);
|
|
if(aPython)
|
|
{
|
|
sVersion=aPython[1]/10;
|
|
bDetected=1;
|
|
}
|
|
|
|
return result(bShowType,bShowVersion,bShowOptions);
|
|
}
|