Detect-It-Easy/db/PE/compiler_RealBasic.4.sg
2026-06-21 09:46:17 +02:00

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();
}