├── .github ├── FUNDING.yml └── workflows │ └── ci-mac.yaml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── DCE-GUI ├── Classes │ ├── AboutWindowController.h │ ├── AboutWindowController.m │ ├── ApplicationDelegate.h │ ├── ApplicationDelegate.m │ ├── FileItem.h │ ├── FileItem.m │ ├── FileWindowController.h │ ├── FileWindowController.m │ ├── HexNumberFormatter.h │ ├── HexNumberFormatter.m │ ├── ImageItem.h │ ├── ImageItem.m │ ├── MainWindowController.h │ ├── MainWindowController.m │ ├── ObjectPair.h │ ├── ObjectPair.m │ ├── Preferences.h │ ├── Preferences.m │ ├── UnsignedNumberFormatter.h │ ├── UnsignedNumberFormatter.m │ ├── WhiteView.h │ └── WhiteView.m ├── Defaults.plist ├── Info.plist ├── Interface │ ├── Images │ │ ├── Bundle.png │ │ ├── Framework.png │ │ ├── Icon.icns │ │ └── Library.png │ └── en.lproj │ │ ├── AboutWindowController.xib │ │ ├── FileWindowController.xib │ │ ├── MainMenu.xib │ │ └── MainWindowController.xib └── main.m ├── DCE ├── include │ └── DCE │ │ ├── BinaryStream.hpp │ │ ├── CacheFile.hpp │ │ ├── ImageInfo.hpp │ │ ├── MachO │ │ ├── Commands │ │ │ ├── DyLibCommand.hpp │ │ │ ├── DyLinkerCommand.hpp │ │ │ ├── DySymTabCommand.hpp │ │ │ ├── DyldInfoCommand.hpp │ │ │ ├── EncryptionInfoCommand.hpp │ │ │ ├── EncryptionInfoCommand64.hpp │ │ │ ├── EntryPointCommand.hpp │ │ │ ├── FVMFileCommand.hpp │ │ │ ├── FVMLibCommand.hpp │ │ │ ├── IdentCommand.hpp │ │ │ ├── LinkEditDataCommand.hpp │ │ │ ├── LinkerOptionCommand.hpp │ │ │ ├── PrebindCKSumCommand.hpp │ │ │ ├── PreboundDyLibCommand.hpp │ │ │ ├── RPathCommand.hpp │ │ │ ├── RoutinesCommand.hpp │ │ │ ├── RoutinesCommand64.hpp │ │ │ ├── SegmentCommand.hpp │ │ │ ├── SegmentCommand64.hpp │ │ │ ├── SourceVersionCommand.hpp │ │ │ ├── SubClientCommand.hpp │ │ │ ├── SubFrameworkCommand.hpp │ │ │ ├── SubLibraryCommand.hpp │ │ │ ├── SubUmbrellaCommand.hpp │ │ │ ├── SymSegCommand.hpp │ │ │ ├── SymTabCommand.hpp │ │ │ ├── ThreadCommand.hpp │ │ │ ├── TwoLevelHintsCommand.hpp │ │ │ ├── UUIDCommand.hpp │ │ │ └── VersionMinCommand.hpp │ │ ├── File.hpp │ │ ├── Header.hpp │ │ └── LoadCommand.hpp │ │ ├── MappingInfo.hpp │ │ └── Objective-C │ │ ├── DCECacheFile.h │ │ ├── DCEImageInfo.h │ │ ├── DCEMachOFile.h │ │ └── DCEMappingInfo.h └── source │ ├── BinaryStream.cpp │ ├── CacheFile.cpp │ ├── ImageInfo.cpp │ ├── MachO │ ├── Commands │ │ ├── DyLibCommand.cpp │ │ ├── DyLinkerCommand.cpp │ │ ├── DySymTabCommand.cpp │ │ ├── DyldInfoCommand.cpp │ │ ├── EncryptionInfoCommand.cpp │ │ ├── EncryptionInfoCommand64.cpp │ │ ├── EntryPointCommand.cpp │ │ ├── FVMFileCommand.cpp │ │ ├── FVMLibCommand.cpp │ │ ├── IdentCommand.cpp │ │ ├── LinkEditDataCommand.cpp │ │ ├── LinkerOptionCommand.cpp │ │ ├── PrebindCKSumCommand.cpp │ │ ├── PreboundDyLibCommand.cpp │ │ ├── RPathCommand.cpp │ │ ├── RoutinesCommand.cpp │ │ ├── RoutinesCommand64.cpp │ │ ├── SegmentCommand.cpp │ │ ├── SegmentCommand64.cpp │ │ ├── SourceVersionCommand.cpp │ │ ├── SubClientCommand.cpp │ │ ├── SubFrameworkCommand.cpp │ │ ├── SubLibraryCommand.cpp │ │ ├── SubUmbrellaCommand.cpp │ │ ├── SymSegCommand.cpp │ │ ├── SymTabCommand.cpp │ │ ├── ThreadCommand.cpp │ │ ├── TwoLevelHintsCommand.cpp │ │ ├── UUIDCommand.cpp │ │ └── VersionMinCommand.cpp │ ├── File.cpp │ ├── Header.cpp │ └── LoadCommand.cpp │ ├── MappingInfo.cpp │ └── Objective-C │ ├── DCECacheFile.mm │ ├── DCEImageInfo.mm │ ├── DCEMachOFile.mm │ └── DCEMappingInfo.mm ├── LICENSE ├── README.md ├── Resources ├── FileWindow.png ├── Icon.psd └── MainWindow.png ├── dyld_cache_extract.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── DCE-GUI.xcscheme │ ├── DCE.xcscheme │ └── dyld_cache_extract.xcscheme └── dyld_cache_extract ├── Arguments.cpp ├── Arguments.hpp └── main.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: macmade 2 | -------------------------------------------------------------------------------- /.github/workflows/ci-mac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/.github/workflows/ci-mac.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DCE-GUI/Classes/AboutWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/AboutWindowController.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/AboutWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/AboutWindowController.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/ApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ApplicationDelegate.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/ApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ApplicationDelegate.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/FileItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/FileItem.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/FileItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/FileItem.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/FileWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/FileWindowController.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/FileWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/FileWindowController.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/HexNumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/HexNumberFormatter.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/HexNumberFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/HexNumberFormatter.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/ImageItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ImageItem.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/ImageItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ImageItem.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/MainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/MainWindowController.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/MainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/MainWindowController.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/ObjectPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ObjectPair.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/ObjectPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/ObjectPair.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/Preferences.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/Preferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/Preferences.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/UnsignedNumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/UnsignedNumberFormatter.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/UnsignedNumberFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/UnsignedNumberFormatter.m -------------------------------------------------------------------------------- /DCE-GUI/Classes/WhiteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/WhiteView.h -------------------------------------------------------------------------------- /DCE-GUI/Classes/WhiteView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Classes/WhiteView.m -------------------------------------------------------------------------------- /DCE-GUI/Defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Defaults.plist -------------------------------------------------------------------------------- /DCE-GUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Info.plist -------------------------------------------------------------------------------- /DCE-GUI/Interface/Images/Bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/Images/Bundle.png -------------------------------------------------------------------------------- /DCE-GUI/Interface/Images/Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/Images/Framework.png -------------------------------------------------------------------------------- /DCE-GUI/Interface/Images/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/Images/Icon.icns -------------------------------------------------------------------------------- /DCE-GUI/Interface/Images/Library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/Images/Library.png -------------------------------------------------------------------------------- /DCE-GUI/Interface/en.lproj/AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/en.lproj/AboutWindowController.xib -------------------------------------------------------------------------------- /DCE-GUI/Interface/en.lproj/FileWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/en.lproj/FileWindowController.xib -------------------------------------------------------------------------------- /DCE-GUI/Interface/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /DCE-GUI/Interface/en.lproj/MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/Interface/en.lproj/MainWindowController.xib -------------------------------------------------------------------------------- /DCE-GUI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE-GUI/main.m -------------------------------------------------------------------------------- /DCE/include/DCE/BinaryStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/BinaryStream.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/CacheFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/CacheFile.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/ImageInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/ImageInfo.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/DyLibCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/DyLibCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/DyLinkerCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/DyLinkerCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/DySymTabCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/DySymTabCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/DyldInfoCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/DyldInfoCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/EncryptionInfoCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/EncryptionInfoCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/EncryptionInfoCommand64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/EncryptionInfoCommand64.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/EntryPointCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/EntryPointCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/FVMFileCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/FVMFileCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/FVMLibCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/FVMLibCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/IdentCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/IdentCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/LinkEditDataCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/LinkEditDataCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/LinkerOptionCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/LinkerOptionCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/PrebindCKSumCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/PrebindCKSumCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/PreboundDyLibCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/PreboundDyLibCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/RPathCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/RPathCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/RoutinesCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/RoutinesCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/RoutinesCommand64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/RoutinesCommand64.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SegmentCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SegmentCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SegmentCommand64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SegmentCommand64.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SourceVersionCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SourceVersionCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SubClientCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SubClientCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SubFrameworkCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SubFrameworkCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SubLibraryCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SubLibraryCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SubUmbrellaCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SubUmbrellaCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SymSegCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SymSegCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/SymTabCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/SymTabCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/ThreadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/ThreadCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/TwoLevelHintsCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/TwoLevelHintsCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/UUIDCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/UUIDCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Commands/VersionMinCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Commands/VersionMinCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/File.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/Header.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MachO/LoadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MachO/LoadCommand.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/MappingInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/MappingInfo.hpp -------------------------------------------------------------------------------- /DCE/include/DCE/Objective-C/DCECacheFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/Objective-C/DCECacheFile.h -------------------------------------------------------------------------------- /DCE/include/DCE/Objective-C/DCEImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/Objective-C/DCEImageInfo.h -------------------------------------------------------------------------------- /DCE/include/DCE/Objective-C/DCEMachOFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/Objective-C/DCEMachOFile.h -------------------------------------------------------------------------------- /DCE/include/DCE/Objective-C/DCEMappingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/include/DCE/Objective-C/DCEMappingInfo.h -------------------------------------------------------------------------------- /DCE/source/BinaryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/BinaryStream.cpp -------------------------------------------------------------------------------- /DCE/source/CacheFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/CacheFile.cpp -------------------------------------------------------------------------------- /DCE/source/ImageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/ImageInfo.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/DyLibCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/DyLibCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/DyLinkerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/DyLinkerCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/DySymTabCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/DySymTabCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/DyldInfoCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/DyldInfoCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/EncryptionInfoCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/EncryptionInfoCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/EncryptionInfoCommand64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/EncryptionInfoCommand64.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/EntryPointCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/EntryPointCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/FVMFileCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/FVMFileCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/FVMLibCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/FVMLibCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/IdentCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/IdentCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/LinkEditDataCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/LinkEditDataCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/LinkerOptionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/LinkerOptionCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/PrebindCKSumCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/PrebindCKSumCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/PreboundDyLibCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/PreboundDyLibCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/RPathCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/RPathCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/RoutinesCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/RoutinesCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/RoutinesCommand64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/RoutinesCommand64.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SegmentCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SegmentCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SegmentCommand64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SegmentCommand64.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SourceVersionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SourceVersionCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SubClientCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SubClientCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SubFrameworkCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SubFrameworkCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SubLibraryCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SubLibraryCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SubUmbrellaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SubUmbrellaCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SymSegCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SymSegCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/SymTabCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/SymTabCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/ThreadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/ThreadCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/TwoLevelHintsCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/TwoLevelHintsCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/UUIDCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/UUIDCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Commands/VersionMinCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Commands/VersionMinCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/File.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/Header.cpp -------------------------------------------------------------------------------- /DCE/source/MachO/LoadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MachO/LoadCommand.cpp -------------------------------------------------------------------------------- /DCE/source/MappingInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/MappingInfo.cpp -------------------------------------------------------------------------------- /DCE/source/Objective-C/DCECacheFile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/Objective-C/DCECacheFile.mm -------------------------------------------------------------------------------- /DCE/source/Objective-C/DCEImageInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/Objective-C/DCEImageInfo.mm -------------------------------------------------------------------------------- /DCE/source/Objective-C/DCEMachOFile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/Objective-C/DCEMachOFile.mm -------------------------------------------------------------------------------- /DCE/source/Objective-C/DCEMappingInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/DCE/source/Objective-C/DCEMappingInfo.mm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/README.md -------------------------------------------------------------------------------- /Resources/FileWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/Resources/FileWindow.png -------------------------------------------------------------------------------- /Resources/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/Resources/Icon.psd -------------------------------------------------------------------------------- /Resources/MainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/Resources/MainWindow.png -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/DCE-GUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/DCE-GUI.xcscheme -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/DCE.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/DCE.xcscheme -------------------------------------------------------------------------------- /dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/dyld_cache_extract.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract.xcodeproj/xcshareddata/xcschemes/dyld_cache_extract.xcscheme -------------------------------------------------------------------------------- /dyld_cache_extract/Arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract/Arguments.cpp -------------------------------------------------------------------------------- /dyld_cache_extract/Arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract/Arguments.hpp -------------------------------------------------------------------------------- /dyld_cache_extract/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/dyld_cache_extract/HEAD/dyld_cache_extract/main.cpp --------------------------------------------------------------------------------