From 9169a13c818fc7f3b09246360c31e200b01bda23 Mon Sep 17 00:00:00 2001 From: kat Date: Wed, 12 Feb 2025 11:53:17 -0500 Subject: Disable MH_FILESET parsing in Mach-O view --- view/macho/machoview.cpp | 3 +-- 1 file changed, 1 insertion(+), 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"; -- cgit v1.3.1