diff options
| author | kat <kat@vector35.com> | 2025-02-12 11:53:17 -0500 |
|---|---|---|
| committer | kat <kat@vector35.com> | 2025-03-19 15:04:23 -0400 |
| commit | 9169a13c818fc7f3b09246360c31e200b01bda23 (patch) | |
| tree | c690e556a8ebbb162f644ef01cf24b129380b740 /view/macho/machoview.cpp | |
| parent | 7ea8a2893cf303ad55457aa9ff3d5cd3907a89b0 (diff) | |
Disable MH_FILESET parsing in Mach-O view
Diffstat (limited to 'view/macho/machoview.cpp')
| -rw-r--r-- | view/macho/machoview.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp index ec0ea4d5..2a927671 100644 --- a/view/macho/machoview.cpp +++ b/view/macho/machoview.cpp @@ -3776,8 +3776,7 @@ uint64_t MachoViewType::ParseHeaders(BinaryView* data, uint64_t imageOffset, mac ident.filetype == MH_KEXT_BUNDLE || ident.filetype == MH_CORE || ident.filetype == MH_PRELOAD || - ident.filetype == MH_DSYM || - ident.filetype == MH_FILESET)) + ident.filetype == MH_DSYM)) { m_logger->LogError("Unhandled Macho file class: 0x%x", ident.filetype); errorMsg = "invalid file class"; |
