├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bitbucket-pipelines.yml ├── chained_fixup_pointers.md ├── pyproject.toml ├── repl_example.png ├── requirements-dev.in ├── requirements-dev.txt ├── requirements.in ├── requirements.txt ├── scripts ├── api-get-selectors.py ├── api-list-dependencies-in-app.py ├── api-search-call-tree.py ├── api-search-for-function-use.py ├── bitcode_retriever.py ├── classdump.py ├── dsc_symbolicate.py ├── dump_entitlements.py ├── hexdump.py ├── insert_dylib.py ├── lipo.py ├── nm.py └── strings.py ├── setup.cfg ├── setup.py ├── strongarm-cli.py ├── strongarm ├── __init__.py ├── cli │ ├── __init__.py │ └── utils.py ├── logger.py ├── macho │ ├── __init__.py │ ├── arch_independent_structs.py │ ├── codesign │ │ ├── __init__.py │ │ ├── codesign_definitions.py │ │ └── codesign_parser.py │ ├── dyld_info_parser.py │ ├── dyld_shared_cache.py │ ├── macho_analyzer.py │ ├── macho_binary.py │ ├── macho_binary_writer.py │ ├── macho_definitions.py │ ├── macho_imp_stubs.py │ ├── macho_load_commands.py │ ├── macho_parse.py │ ├── macho_string_table_helper.py │ ├── objc_runtime_data_parser.py │ └── utils.py └── objc │ ├── __init__.py │ ├── dataflow.pyi │ ├── objc_analyzer.py │ └── objc_instruction.py ├── tasks.py └── tests ├── __init__.py ├── bin ├── AFLMalformedSelref ├── ClasslistDataConst ├── DynStaticChecks ├── EncryptedBinary ├── MultipleConstSections ├── Protocol32Bit ├── StrongarmControlFlowTarget ├── StrongarmTarget ├── TestBinary1 ├── TestBinary4 ├── TestBinary5 ├── ThreeOpAddInstruction ├── Xcode14_objc_stubs ├── auto_compiled_binaries │ ├── 09ad1d025731dd14dbdc442ad1033915 │ ├── 0ae42cc260c34aa8f57099d4948f0b14 │ ├── 1a6b7ce9576c6a70e5dde5a50c12ed94 │ ├── 26c96b9894100bdefa0eca2e10ff9d69 │ ├── 391fa86479936c4814b64247114e0427 │ ├── 4260876679e8cd7fa6d298d9b865d400 │ ├── 4f5986b067918c369325527cf31f087d │ ├── 6e57c92ee98e30bc02f61e171c197def │ ├── 83c56bd25d7ea3d1e20434a253e4b775 │ ├── 8772937bc1493e93fe2ebbb2ca40ae4d │ ├── 8c7f86a801c093c702d54c8eb9ec5e32 │ ├── b46add0f86acd6d5fc5c0cd65747baca │ ├── bec0b9fe9ba4330c6c02ad9aeb62e17a │ ├── c07cddfc4bb88aa6395c9fff1366aeaa │ ├── c191372ed6011a2bfc22beb6f5a975ce │ └── e54e1a93b1a041c73a38a48eef010a01 ├── iOS13_objc_opt ├── iOS14_relative_method_list └── iOS15_chained_fixup_pointers ├── test_basic_blocks.py ├── test_codesign.py ├── test_dyld_info_parser.py ├── test_dyld_shared_cache.py ├── test_fat.py ├── test_function_analyzer.py ├── test_function_boundary.py ├── test_macho.py ├── test_macho_analyzer.py ├── test_macho_binary_writer.py ├── test_macho_string_parser.py ├── test_runtime_data_parser.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/README.md -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /chained_fixup_pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/chained_fixup_pointers.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /repl_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/repl_example.png -------------------------------------------------------------------------------- /requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/requirements-dev.in -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/api-get-selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/api-get-selectors.py -------------------------------------------------------------------------------- /scripts/api-list-dependencies-in-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/api-list-dependencies-in-app.py -------------------------------------------------------------------------------- /scripts/api-search-call-tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/api-search-call-tree.py -------------------------------------------------------------------------------- /scripts/api-search-for-function-use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/api-search-for-function-use.py -------------------------------------------------------------------------------- /scripts/bitcode_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/bitcode_retriever.py -------------------------------------------------------------------------------- /scripts/classdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/classdump.py -------------------------------------------------------------------------------- /scripts/dsc_symbolicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/dsc_symbolicate.py -------------------------------------------------------------------------------- /scripts/dump_entitlements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/dump_entitlements.py -------------------------------------------------------------------------------- /scripts/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/hexdump.py -------------------------------------------------------------------------------- /scripts/insert_dylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/insert_dylib.py -------------------------------------------------------------------------------- /scripts/lipo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/lipo.py -------------------------------------------------------------------------------- /scripts/nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/nm.py -------------------------------------------------------------------------------- /scripts/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/scripts/strings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/setup.py -------------------------------------------------------------------------------- /strongarm-cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm-cli.py -------------------------------------------------------------------------------- /strongarm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/__init__.py -------------------------------------------------------------------------------- /strongarm/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /strongarm/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/cli/utils.py -------------------------------------------------------------------------------- /strongarm/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/logger.py -------------------------------------------------------------------------------- /strongarm/macho/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/__init__.py -------------------------------------------------------------------------------- /strongarm/macho/arch_independent_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/arch_independent_structs.py -------------------------------------------------------------------------------- /strongarm/macho/codesign/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/codesign/__init__.py -------------------------------------------------------------------------------- /strongarm/macho/codesign/codesign_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/codesign/codesign_definitions.py -------------------------------------------------------------------------------- /strongarm/macho/codesign/codesign_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/codesign/codesign_parser.py -------------------------------------------------------------------------------- /strongarm/macho/dyld_info_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/dyld_info_parser.py -------------------------------------------------------------------------------- /strongarm/macho/dyld_shared_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/dyld_shared_cache.py -------------------------------------------------------------------------------- /strongarm/macho/macho_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_analyzer.py -------------------------------------------------------------------------------- /strongarm/macho/macho_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_binary.py -------------------------------------------------------------------------------- /strongarm/macho/macho_binary_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_binary_writer.py -------------------------------------------------------------------------------- /strongarm/macho/macho_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_definitions.py -------------------------------------------------------------------------------- /strongarm/macho/macho_imp_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_imp_stubs.py -------------------------------------------------------------------------------- /strongarm/macho/macho_load_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_load_commands.py -------------------------------------------------------------------------------- /strongarm/macho/macho_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_parse.py -------------------------------------------------------------------------------- /strongarm/macho/macho_string_table_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/macho_string_table_helper.py -------------------------------------------------------------------------------- /strongarm/macho/objc_runtime_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/objc_runtime_data_parser.py -------------------------------------------------------------------------------- /strongarm/macho/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/macho/utils.py -------------------------------------------------------------------------------- /strongarm/objc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/objc/__init__.py -------------------------------------------------------------------------------- /strongarm/objc/dataflow.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/objc/dataflow.pyi -------------------------------------------------------------------------------- /strongarm/objc/objc_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/objc/objc_analyzer.py -------------------------------------------------------------------------------- /strongarm/objc/objc_instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/strongarm/objc/objc_instruction.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bin/AFLMalformedSelref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/AFLMalformedSelref -------------------------------------------------------------------------------- /tests/bin/ClasslistDataConst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/ClasslistDataConst -------------------------------------------------------------------------------- /tests/bin/DynStaticChecks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/DynStaticChecks -------------------------------------------------------------------------------- /tests/bin/EncryptedBinary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/EncryptedBinary -------------------------------------------------------------------------------- /tests/bin/MultipleConstSections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/MultipleConstSections -------------------------------------------------------------------------------- /tests/bin/Protocol32Bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/Protocol32Bit -------------------------------------------------------------------------------- /tests/bin/StrongarmControlFlowTarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/StrongarmControlFlowTarget -------------------------------------------------------------------------------- /tests/bin/StrongarmTarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/StrongarmTarget -------------------------------------------------------------------------------- /tests/bin/TestBinary1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/TestBinary1 -------------------------------------------------------------------------------- /tests/bin/TestBinary4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/TestBinary4 -------------------------------------------------------------------------------- /tests/bin/TestBinary5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/TestBinary5 -------------------------------------------------------------------------------- /tests/bin/ThreeOpAddInstruction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/ThreeOpAddInstruction -------------------------------------------------------------------------------- /tests/bin/Xcode14_objc_stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/Xcode14_objc_stubs -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/09ad1d025731dd14dbdc442ad1033915: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/09ad1d025731dd14dbdc442ad1033915 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/0ae42cc260c34aa8f57099d4948f0b14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/0ae42cc260c34aa8f57099d4948f0b14 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/1a6b7ce9576c6a70e5dde5a50c12ed94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/1a6b7ce9576c6a70e5dde5a50c12ed94 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/26c96b9894100bdefa0eca2e10ff9d69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/26c96b9894100bdefa0eca2e10ff9d69 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/391fa86479936c4814b64247114e0427: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/391fa86479936c4814b64247114e0427 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/4260876679e8cd7fa6d298d9b865d400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/4260876679e8cd7fa6d298d9b865d400 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/4f5986b067918c369325527cf31f087d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/4f5986b067918c369325527cf31f087d -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/6e57c92ee98e30bc02f61e171c197def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/6e57c92ee98e30bc02f61e171c197def -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/83c56bd25d7ea3d1e20434a253e4b775: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/83c56bd25d7ea3d1e20434a253e4b775 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/8772937bc1493e93fe2ebbb2ca40ae4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/8772937bc1493e93fe2ebbb2ca40ae4d -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/8c7f86a801c093c702d54c8eb9ec5e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/8c7f86a801c093c702d54c8eb9ec5e32 -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/b46add0f86acd6d5fc5c0cd65747baca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/b46add0f86acd6d5fc5c0cd65747baca -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/bec0b9fe9ba4330c6c02ad9aeb62e17a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/bec0b9fe9ba4330c6c02ad9aeb62e17a -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/c07cddfc4bb88aa6395c9fff1366aeaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/c07cddfc4bb88aa6395c9fff1366aeaa -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/c191372ed6011a2bfc22beb6f5a975ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/c191372ed6011a2bfc22beb6f5a975ce -------------------------------------------------------------------------------- /tests/bin/auto_compiled_binaries/e54e1a93b1a041c73a38a48eef010a01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/auto_compiled_binaries/e54e1a93b1a041c73a38a48eef010a01 -------------------------------------------------------------------------------- /tests/bin/iOS13_objc_opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/iOS13_objc_opt -------------------------------------------------------------------------------- /tests/bin/iOS14_relative_method_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/iOS14_relative_method_list -------------------------------------------------------------------------------- /tests/bin/iOS15_chained_fixup_pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/bin/iOS15_chained_fixup_pointers -------------------------------------------------------------------------------- /tests/test_basic_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_basic_blocks.py -------------------------------------------------------------------------------- /tests/test_codesign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_codesign.py -------------------------------------------------------------------------------- /tests/test_dyld_info_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_dyld_info_parser.py -------------------------------------------------------------------------------- /tests/test_dyld_shared_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_dyld_shared_cache.py -------------------------------------------------------------------------------- /tests/test_fat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_fat.py -------------------------------------------------------------------------------- /tests/test_function_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_function_analyzer.py -------------------------------------------------------------------------------- /tests/test_function_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_function_boundary.py -------------------------------------------------------------------------------- /tests/test_macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_macho.py -------------------------------------------------------------------------------- /tests/test_macho_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_macho_analyzer.py -------------------------------------------------------------------------------- /tests/test_macho_binary_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_macho_binary_writer.py -------------------------------------------------------------------------------- /tests/test_macho_string_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_macho_string_parser.py -------------------------------------------------------------------------------- /tests/test_runtime_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/test_runtime_data_parser.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datatheorem/strongarm/HEAD/tests/utils.py --------------------------------------------------------------------------------