-
-
Notifications
You must be signed in to change notification settings - Fork 395
Closed
Labels
Description
Following Microsoft documents are not tested as .msi (Windows Installer) or [MS-CFB]: Compound File Binary File Format:
Lines 178 to 182 in 4a4d39c
| msi: [ | |
| 'fixture-ppt', | |
| 'fixture-doc', | |
| 'fixture-xls' | |
| ] |
const FileType = require('file-type');
const path = require('path');
(async () => {
const fileType = await FileType.fromFile(path.join('fixture', 'fixture-xls.msi'));
console.log(fileType);
})();Outputs:
undefined
Related:
- 702f795: Reduce msi false-positives
- False-positives for the
msidetection #162 False-positives for themsidetection
Reactions are currently unavailable