mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
15 lines
No EOL
404 B
JavaScript
15 lines
No EOL
404 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: Arjan Onwezen
|
|
// Info: https://msopenspecs.azureedge.net/files/MS-PST/%5bMS-PST%5d.pdf
|
|
|
|
init("format", "Microsoft Outlook Personal Storage Table (PST)");
|
|
|
|
function detect() {
|
|
if (Binary.getSize() > 1024) {
|
|
if (Binary.compare("21 42 44 4E") && Binary.compare("53 4D", 8)) {
|
|
bDetected = true;
|
|
}
|
|
}
|
|
|
|
return result();
|
|
} |