mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
24 lines
No EOL
633 B
JavaScript
Executable file
24 lines
No EOL
633 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: sendersu
|
|
/*
|
|
If errors pls contact sendersu on cracklab.team
|
|
*/
|
|
|
|
init("compiler", "REALbasic (by Xojo.com)");
|
|
|
|
function detect() {
|
|
if (PE.isOverlayPresent()) {
|
|
var nOffset = PE.getOverlayOffset(),
|
|
nSize = PE.getOverlaySize();
|
|
|
|
if (PE.isResourceGroupNamePresent("PICKLE") !== 0 &&
|
|
PE.findString(nOffset, nSize, "REALbasic.Point") !== -1 &&
|
|
PE.findString(nOffset, nSize, "Xojo.Introspection") !== -1) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
_setLang("Basic", bDetected);
|
|
|
|
return result();
|
|
} |