From 21cf9360ec88f1090360a0635abe2c511da4d9d7 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Tue, 8 Apr 2025 15:17:39 -0400 Subject: Revert "Disable MH_FILESET parsing in Mach-O view" This reverts commit 9169a13c818fc7f3b09246360c31e200b01bda23. --- view/macho/machoview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/view/macho/machoview.cpp b/view/macho/machoview.cpp index f1b3eabb..34c11f69 100644 --- a/view/macho/machoview.cpp +++ b/view/macho/machoview.cpp @@ -3792,7 +3792,8 @@ 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_DSYM || + ident.filetype == MH_FILESET)) { m_logger->LogError("Unhandled Macho file class: 0x%x", ident.filetype); errorMsg = "invalid file class"; -- cgit v1.3.1