Detect-It-Easy/db/Binary/format_MS-PST.sg
DosX 2e058cd161 Rename and standardize database file naming for BJNFNE's fules
Renamed numerous files in the db/Binary, db/ELF, db/ISO9660, db/NE, and db/PE directories to use a consistent naming convention with underscores and clearer prefixes (e.g., archive_, audio_, format_, library_, tool_, etc.). This improves clarity, organization, and maintainability of the database file structure.
2026-01-12 15:32:27 +03:00

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