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