angr 9.2.123__tar.gz → 9.2.124__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- {angr-9.2.123/angr.egg-info → angr-9.2.124}/PKG-INFO +6 -6
- {angr-9.2.123 → angr-9.2.124}/angr/__init__.py +1 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +11 -8
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +2 -2
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ail_simplifier.py +16 -19
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/callsite_maker.py +8 -7
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +24 -2
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/clinic.py +27 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/condition_processor.py +10 -3
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/decompilation_cache.py +2 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/decompiler.py +50 -8
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/graph_vvar_mapping.py +10 -2
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/rewriting_engine.py +64 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/expression_narrower.py +5 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/div_simplifier.py +4 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +7 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/ite_region_converter.py +23 -4
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/optimization_pass.py +3 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +8 -5
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +10 -5
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +18 -7
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +6 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +2 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +2 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +8 -2
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_identifier.py +36 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/loop.py +2 -8
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +9 -3
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/rewriting.py +5 -2
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/rewriting_engine.py +151 -25
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/rewriting_state.py +1 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/ssailification.py +17 -9
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/traversal.py +3 -1
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/traversal_engine.py +35 -8
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/traversal_state.py +1 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structured_codegen/c.py +42 -4
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/phoenix.py +3 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/engine_ail.py +10 -3
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/engine_ail.py +10 -15
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_propagator.py +16 -9
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_reaching_definitions/s_rda_view.py +127 -63
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/engine_ail.py +14 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/engine_base.py +11 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/light/engine.py +12 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/__init__.py +2 -0
- angr-9.2.124/angr/knowledge_plugins/decompilation.py +45 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/atoms.py +8 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/parse_win32json.py +2 -1
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/actions_mixin.py +7 -7
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/address_concretization_mixin.py +5 -5
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/bvv_conversion_mixin.py +1 -1
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/clouseau_mixin.py +3 -3
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/conditional_store_mixin.py +3 -3
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/default_filler_mixin.py +3 -3
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/memory_mixin.py +45 -34
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +15 -14
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +27 -16
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/cooperation.py +18 -9
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +5 -5
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/multi_values.py +89 -55
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +16 -25
- angr-9.2.124/angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +36 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +23 -7
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/privileged_mixin.py +1 -1
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +9 -7
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +9 -9
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +1 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/simple_interface_mixin.py +2 -2
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/simplification_mixin.py +2 -2
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/size_resolution_mixin.py +1 -1
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/slotted_memory.py +3 -3
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/smart_find_mixin.py +1 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/underconstrained_mixin.py +5 -5
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/unwrapper_mixin.py +4 -4
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_object.py +4 -3
- {angr-9.2.123 → angr-9.2.124}/angr/utils/constants.py +1 -1
- {angr-9.2.123 → angr-9.2.124}/angr/utils/graph.py +15 -0
- {angr-9.2.123 → angr-9.2.124}/angr/vaults.py +2 -2
- {angr-9.2.123 → angr-9.2.124/angr.egg-info}/PKG-INFO +6 -6
- {angr-9.2.123 → angr-9.2.124}/angr.egg-info/SOURCES.txt +1 -0
- {angr-9.2.123 → angr-9.2.124}/angr.egg-info/requires.txt +5 -5
- {angr-9.2.123 → angr-9.2.124}/pyproject.toml +1 -1
- {angr-9.2.123 → angr-9.2.124}/setup.cfg +5 -5
- angr-9.2.123/angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +0 -34
- {angr-9.2.123 → angr-9.2.124}/LICENSE +0 -0
- {angr-9.2.123 → angr-9.2.124}/MANIFEST.in +0 -0
- {angr-9.2.123 → angr-9.2.124}/README.md +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/__main__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/analysis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/backward_slice.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/binary_optimizer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/bindiff.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/boyscout.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/callee_cleanup_finder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/calling_convention.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cdg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfb.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_arch_options.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_emulated.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_fast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_fast_soot.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/cfg_job_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/resolver.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg_slice_to_sink/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg_slice_to_sink/graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/cfg_slice_to_sink/transitions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/class_identifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/code_tagging.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/complete_calling_conventions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/congruency_check.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/data_dep/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/data_dep/data_dependency_analysis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/data_dep/dep_nodes.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/data_dep/sim_act_location.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/datagraph_meta.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/ddg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ailgraph_walker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/block_io_finder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/block_similarity.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/block_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ccall_rewriters/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/counters/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/counters/boolean_counter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/counters/call_counter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/counters/expression_counters.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/counters/seq_cf_structure_counter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/decompilation_options.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/dephication_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/graph_dephication.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/graph_rewriting.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/dephication/seqnode_dephication.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/empty_node_remover.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/goto_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/graph_region.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/jump_target_collector.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/code_motion.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/const_derefs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/deadblock_remover.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/engine_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/mod_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/multi_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/bswap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/eager_eval.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/rol_ror.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/presets/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/presets/basic.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/presets/fast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/presets/full.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/presets/preset.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/redundant_label_remover.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/expr_folding.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/goto.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/if_.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/ifelse.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/node_address_finder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/region_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/region_walker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/return_maker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/seq_to_blocks.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/sequence_walker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/ssailification/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structured_codegen/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structured_codegen/base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structured_codegen/dummy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structured_codegen/dwarf_import.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/dream.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/recursive_structurer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/sailr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/structurer_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/structuring/structurer_nodes.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/decompiler/utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/disassembly.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/disassembly_utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/dominance_frontier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/find_objects_static.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/flirt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/forward_analysis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/job_info.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/call_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/function_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/loop.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/forward_analysis/visitors/single_node_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/custom_callable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/errors.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/func.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/atoi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/based_atoi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/fdprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/free.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/int2str.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/malloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/memcmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/memcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/memset.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/printf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/recv_until.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/skip_calloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/skip_realloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/skip_recv_n.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/snprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/sprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strcasecmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strcmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strlen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strncmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strncpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/functions/strtol.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/identify.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/identifier/runner.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/init_finder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/loop_analysis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/loopfinder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/engine_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/engine_vex.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/outdated_definition_walker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/propagator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/tmpvar_finder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/top_checker_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/values.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/propagator/vex_vars.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/proximity_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/call_trace.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/dep_graph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/engine_vex.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/external_codeloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler_library/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler_library/stdio.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler_library/stdlib.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler_library/string.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/function_handler_library/unistd.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/heap_allocator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/rd_initializer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/rd_state.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/reaching_definitions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reaching_definitions/subject.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/reassembler.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_liveness.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_reaching_definitions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_reaching_definitions/s_rda_model.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/s_reaching_definitions/s_reaching_definitions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/soot_class_hierarchy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/stack_pointer_tracker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/static_hooker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/dfa.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/lifter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/simple_solver.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/translator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/typeconsts.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/typehoon.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/typevars.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/typehoon/variance.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/annotations.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/engine_vex.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/irsb_scanner.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/variable_recovery.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/variable_recovery_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/variable_recovery/variable_recovery_fast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/veritesting.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/vfg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/vsa_ddg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/vtable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/analyses/xrefs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/db.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/models.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/cfg_model.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/comments.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/funcs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/kb.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/labels.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/loader.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/structured_code.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/variables.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/angrdb/serializers/xrefs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/annocfg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/blade.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/block.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/callable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/calling_conventions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/code_location.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/codenode.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/any.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/any_named.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/controlled_data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/eval.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/logging.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/max.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/nonzero.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/nonzero_range.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/norepeats.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/norepeats_range.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/range.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/signed_add.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/single.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/solutions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/concretization_strategies/unlimited_range.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/distributed/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/distributed/server.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/distributed/worker.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/concrete.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/engine.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/failure.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/hook.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/light/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/light/data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/behavior.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/cc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/emulate.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/engine.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/pcode/lifter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/procedure.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/engine.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/exceptions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/arrayref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/binop.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/cast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/condition.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/constants.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/instanceOf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/instancefieldref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/invoke.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/length.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/local.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/new.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/newArray.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/newMultiArray.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/paramref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/phi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/staticfieldref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/thisref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/expressions/unsupported.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/field_dispatcher.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/method_dispatcher.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/assign.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/goto.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/identity.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/if_.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/invoke.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/return_.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/switch.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/statements/throw.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/arrayref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/constants.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/instancefieldref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/local.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/paramref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/staticfieldref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/strref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/soot/values/thisref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/successors.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/syscall.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/unicorn.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/claripy/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/claripy/ccall.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/claripy/datalayer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/claripy/irop.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/actions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/concretizers.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/dirty.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/heavy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/inspect.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/resilience.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/heavy/super_fastpath.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/lifter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/light/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/light/light.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/light/resilience.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/engines/vex/light/slicing.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/errors.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/bucketizer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/common.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/dfs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/director.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/driller_core.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/explorer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/lengthlimiter.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/local_loop_seer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/loop_seer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/manual_mergepoint.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/memory_watcher.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/oppologist.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/slicecutor.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/spiller.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/spiller_db.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/stochastic.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/stub_stasher.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/suggestions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/symbion.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/tech_builder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/threading.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/timeout.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/tracer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/unique.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/exploration_techniques/veritesting.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/factory.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/flirt/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/flirt/build_sig.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/graph_utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/keyed_region.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/callsite_prototypes.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/cfg_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/cfg_model.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/cfg_node.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/indirect_jump.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/cfg/memory_data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/comments.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/custom_strings.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/debug_variables.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/functions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/functions/function.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/functions/function_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/functions/function_parser.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/functions/soot_function.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/indirect_jumps.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/constants.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/definition.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/environment.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/heap_address.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/key_definition_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/live_definitions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/liveness.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/rd_model.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/tag.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/undefined.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/unknown_size.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/key_definitions/uses.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/labels.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/patches.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/plugin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/propagations/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/propagations/prop_value.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/propagations/propagation_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/propagations/propagation_model.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/propagations/states.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/structured_code.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/types.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/variables/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/variables/variable_access.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/variables/variable_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/xrefs/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/xrefs/xref.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/xrefs/xref_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/knowledge_plugins/xrefs/xref_types.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/ansi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/autoimport.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/bug_report.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/hookset.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/loggers.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/picklable_lock.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/plugins.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/telemetry.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/testing.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/misc/ux.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/advapi32/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/_terminate.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/allocate.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/deallocate.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/fdwait.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/random.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/receive.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/cgc/transmit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/cgc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/glibc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/gnulib.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/libstdcpp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/linux_kernel.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/linux_loader.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/msvcr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/parse_syscalls_from_local_system.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/types_win32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_clfs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_fltmgr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_fwpkclnt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_fwpuclnt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_gdi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_hal.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_ksecdd.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_ndis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_ntoskrnl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_offreg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_pshed.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_secur32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/wdk_vhfum.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_aclui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_activeds.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_advapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_advpack.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_amsi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_apphelp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_authz.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_avicap32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_avifil32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_avrt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bcp47mrm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bcrypt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bcryptprimitives.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bluetoothapis.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bthprops.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_bthprops_cpl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cabinet.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_certadm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_certpoleng.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cfgmgr32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_chakra.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cldapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_clfsw32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_clusapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_comctl32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_comdlg32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_compstui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_computecore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_computenetwork.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_computestorage.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_comsvcs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_coremessaging.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_credui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_crypt32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cryptnet.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cryptui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cryptxml.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_cscapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d2d1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3d10.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3d10_1.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3d11.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3d12.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3d9.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3dcompiler_47.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_d3dcsx.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_davclnt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dbgeng.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dbghelp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dbgmodel.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dciman32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dcomp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ddraw.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_deviceaccess.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dflayout.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dhcpcsvc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dhcpcsvc6.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dhcpsapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_diagnosticdataquery.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dinput8.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_directml.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dmprocessxmlfiltered.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dnsapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_drt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_drtprov.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_drttransport.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dsound.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dsparse.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dsprop.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dssec.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dsuiext.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dwmapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dwrite.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dxcompiler.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dxcore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dxgi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_dxva2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_eappcfg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_eappprxy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_efswrt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_elscore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_esent.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_evr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_faultrep.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_fhsvcctl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_firewallapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_fltlib.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_fontsub.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_forceinline.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_fwpuclnt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_fxsutility.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_gdi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_gdiplus.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_glu32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_gpedit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_hhctrl_ocx.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_hid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_hlink.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_hrtfapo.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_httpapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_icm32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_icmui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_icu.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ieframe.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_imagehlp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_imgutil.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_imm32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_infocardapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_inkobjcore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_iphlpapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_iscsidsc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_kernel32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_kernelbase.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_keycredmgr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ksproxy_ax.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ksuser.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ktmw32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_licenseprotection.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_loadperf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_magnification.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mdmlocalmanagement.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mdmregistration.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfcore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfplat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfplay.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfreadwrite.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfsensorgroup.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mfsrcsnk.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mgmtapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mmdevapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mpr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mprapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mqrt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mrmsupport.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msacm32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msajapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mscms.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mscoree.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msctfmonitor.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msdelta.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msdmo.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msdrm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msimg32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mspatcha.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mspatchc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msports.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msrating.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mssign32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mstask.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_msvfw32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mswsock.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_mtxdm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ncrypt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ndfapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_netapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_netsh.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_netshell.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_newdev.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ninput.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_normaliz.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ntdll.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ntdllk.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ntdsapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ntlanman.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_odbc32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_odbcbcp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ole32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_oleacc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_oleaut32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_oledlg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ondemandconnroutehelper.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_opengl32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_opmxbox.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_p2p.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_p2pgraph.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_pdh.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_peerdist.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_powrprof.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_prntvpt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_projectedfslib.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_propsys.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_psapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_quartz.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_query.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_qwave.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rasapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rasdlg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_resutils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rometadata.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rpcns4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rpcproxy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rpcrt4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rstrtmgr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rtm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rtutils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_rtworkq.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sas.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_scarddlg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_schannel.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sechost.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_secur32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sensapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sensorsutilsv2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_setupapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sfc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_shdocvw.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_shell32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_shlwapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_slc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_slcext.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_slwga.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_snmpapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_spoolss.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_srclient.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_srpapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sspicli.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_sti.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_t2embed.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_tapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_tbs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_tdh.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_tokenbinding.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_traffic.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_txfw32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ualapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_uiautomationcore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_urlmon.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_user32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_userenv.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_usp10.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_uxtheme.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_verifier.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_version.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_vertdll.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_virtdisk.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_vmdevicehost.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_vssapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wcmapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wdsbp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wdsclientapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wdsmc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wdspxe.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wdstptc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_webauthn.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_webservices.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_websocket.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wecapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wevtapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winbio.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windows_ai_machinelearning.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windows_data_pdf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windows_media_mediacontrol.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windows_networking.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windows_ui_xaml.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_windowscodecs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winfax.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winhttp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winhvemulation.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winhvplatform.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wininet.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winml.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winmm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winscard.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winspool.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winspool_drv.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wintrust.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_winusb.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wlanapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wlanui.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wldap32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wldp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wmvcore.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wnvapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wofutil.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_ws2_32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wscapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wsclient.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wsdapi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wsmsvc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wsnmp32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_wtsapi32.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xaudio2_8.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xinput1_4.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xinputuap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xmllite.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xolehlp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/definitions/win32_xpsprint.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__ctype_b_loc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__ctype_tolower_loc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__ctype_toupper_loc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__errno_location.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__libc_init.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/__libc_start_main.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/dynamic_loading.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/scanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/glibc/sscanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/gnulib/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/gnulib/xalloc_die.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/gnulib/xstrtol_fatal.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java/unconstrained.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_io/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_io/read.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_io/write.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/array_operations.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/class_and_interface_operations.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/field_access.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/global_and_local_refs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/method_calls.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/not_implemented.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/object_operations.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/string_operations.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_jni/version_information.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/character.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/double.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/exit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/getsimplename.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/integer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/load_library.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/math.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/string.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/stringbuilder.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_lang/system.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/collection.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/iterator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/list.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/map.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/random.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/java_util/scanner_nextline.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/abort.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/access.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/atoi.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/atol.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/calloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/closelog.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/err.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/error.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/exit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fclose.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/feof.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fflush.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fgetc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fgets.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fopen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fputc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fputs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fread.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/free.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fscanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fseek.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/ftell.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/fwrite.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/getchar.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/getdelim.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/getegid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/geteuid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/getgid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/gets.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/getuid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/malloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/memcmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/memcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/memset.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/openlog.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/perror.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/printf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/putchar.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/puts.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/rand.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/realloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/rewind.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/scanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/setbuf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/setvbuf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/snprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/sprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/srand.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/sscanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/stpcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strcat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strchr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strcmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strcpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strlen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strncat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strncmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strncpy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strnlen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strstr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strtol.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/strtoul.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/system.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/time.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/tmpnam.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/tolower.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/toupper.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/ungetc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/vsnprintf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libc/wchar.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/_unwind_resume.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/std____throw_bad_alloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/std____throw_bad_cast.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/std____throw_length_error.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/std____throw_logic_error.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/libstdcpp/std__terminate.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/access.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/arch_prctl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/arm_user_helpers.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/brk.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/cwd.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/fstat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/fstat64.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/futex.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/getegid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/geteuid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/getgid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/getpid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/getrlimit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/gettid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/getuid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/iovec.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/lseek.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/mmap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/mprotect.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/munmap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/openat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/set_tid_address.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/sigaction.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/sigprocmask.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/stat.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/sysinfo.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/tgkill.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/time.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/uid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/uname.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/unlink.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_kernel/vsyscall.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_loader/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_loader/_dl_rtld_lock.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_loader/sim_loader.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/linux_loader/tls.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/msvcr/__getmainargs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/msvcr/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/msvcr/_initterm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/msvcr/fmode.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/ntdll/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/ntdll/exceptions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/accept.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/bind.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/bzero.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/chroot.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/close.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/closedir.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/dup.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/fcntl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/fdopen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/fileno.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/fork.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/getenv.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/gethostbyname.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/getpass.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/getsockopt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/htonl.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/htons.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/inet_ntoa.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/listen.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/mmap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/open.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/opendir.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/poll.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/pread64.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/pthread.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/pwrite64.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/read.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/readdir.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/recv.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/recvfrom.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/select.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/send.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/setsockopt.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/sigaction.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/sim_time.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/sleep.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/socket.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/strcasecmp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/strdup.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/strtok_r.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/syslog.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/tz.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/unlink.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/usleep.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/posix/write.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/procedure_dict.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/CallReturn.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/NoReturnUnconstrained.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/Nop.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/PathTerminator.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/Redirect.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/ReturnChar.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/ReturnUnconstrained.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/UnresolvableCallTarget.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/UnresolvableJumpTarget.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/UserHook.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/b64_decode.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/caller.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/crazy_scanf.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/format_parser.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/stubs/syscall_stub.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/testing/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/testing/manyargs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/testing/retreg.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/tracer/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/tracer/random.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/tracer/receive.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/tracer/transmit.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/uclibc/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/uclibc/__uClibc_main.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/EncodePointer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/ExitProcess.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetCommandLine.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetCurrentProcessId.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetCurrentThreadId.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetLastInputInfo.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetModuleHandle.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/GetProcessAffinityMask.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/InterlockedExchange.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/IsProcessorFeaturePresent.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/VirtualAlloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/VirtualProtect.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/critical_section.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/dynamic_loading.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/file_handles.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/gethostbyname.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/heap.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/is_bad_ptr.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/local_storage.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/mutex.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/sim_time.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32/system_paths.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32_kernel/ExAllocatePool.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32_kernel/ExFreePoolWithTag.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win32_kernel/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win_user32/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win_user32/chars.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win_user32/keyboard.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/procedures/win_user32/messagebox.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/project.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/cfg_pb2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/function_pb2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/primitives_pb2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/variables_pb2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/protos/xrefs_pb2.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/py.typed +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/serializable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_options.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_procedure.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_state.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_state_options.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_type.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/sim_variable.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/cgc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/javavm.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/linux.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/simos.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/snimmuc_nxp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/userland.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/simos/windows.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/slicer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_hierarchy.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/callstack.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/cgc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/concrete.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/debug_variables.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/filesystem.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/gdb.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/globals.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/heap_base.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/heap_brk.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/heap_freelist.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/heap_libc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/heap_ptmalloc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/heap/utils.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/history.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/inspect.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/javavm_classloader.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/jni_references.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/libc.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/light_registers.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/log.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/loop_data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/plugin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/posix.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/preconstrainer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/scratch.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/sim_action.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/sim_action_object.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/sim_event.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/solver.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/symbolizer.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/trace_additions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/uc_manager.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/unicorn_engine.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/state_plugins/view.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/file.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/__init__.pyi +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/convenient_mappings_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/dirty_addrs_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/hex_dumper_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/javavm_memory_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/keyvalue_memory_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/label_merger_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/multi_value_merger_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/name_resolution_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/list_page.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/region_data.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/symbolic_merger_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/storage/memory_mixins/top_merger_mixin.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/tablespecs.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/ail.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/algo.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/bits.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/cowdict.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/dynamic_dictlist.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/endness.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/enums_conv.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/env.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/formatting.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/funcid.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/lazy_import.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/library.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/loader.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/mp.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/orderedset.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/segment_list.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/ssa/__init__.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/ssa/tmp_uses_collector.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/ssa/vvar_uses_collector.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr/utils/timing.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr.egg-info/dependency_links.txt +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr.egg-info/entry_points.txt +0 -0
- {angr-9.2.123 → angr-9.2.124}/angr.egg-info/top_level.txt +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/Makefile +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/Makefile-win +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/angr_native.def +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/log.c +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/log.h +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/sim_unicorn.cpp +0 -0
- {angr-9.2.123 → angr-9.2.124}/native/sim_unicorn.hpp +0 -0
- {angr-9.2.123 → angr-9.2.124}/setup.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/tests/test_calling_conventions.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/tests/test_cli.py +0 -0
- {angr-9.2.123 → angr-9.2.124}/tests/test_types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.124
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
Home-page: https://github.com/angr/angr
|
|
6
6
|
License: BSD-2-Clause
|
|
@@ -16,13 +16,13 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: CppHeaderParser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: ailment==9.2.124
|
|
20
|
+
Requires-Dist: archinfo==9.2.124
|
|
21
21
|
Requires-Dist: cachetools
|
|
22
22
|
Requires-Dist: capstone==5.0.3
|
|
23
23
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
24
|
+
Requires-Dist: claripy==9.2.124
|
|
25
|
+
Requires-Dist: cle==9.2.124
|
|
26
26
|
Requires-Dist: itanium-demangler
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: nampa
|
|
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=5.28.2
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: pycparser>=2.18
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.124
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -153,6 +153,11 @@ class MipsElfFastResolver(IndirectJumpResolver):
|
|
|
153
153
|
|
|
154
154
|
def _resolve_case_1(self, addr: int, block: pyvex.IRSB, func_addr: int, gp_value: int, cfg) -> int | None:
|
|
155
155
|
# lift the block again with the correct setting
|
|
156
|
+
|
|
157
|
+
inital_regs = [(self.project.arch.registers["t9"][0], self.project.arch.registers["t9"][1], func_addr)]
|
|
158
|
+
if gp_value is not None:
|
|
159
|
+
inital_regs.append((self.project.arch.registers["gp"][0], self.project.arch.registers["gp"][1], gp_value))
|
|
160
|
+
|
|
156
161
|
first_irsb = self.project.factory.block(
|
|
157
162
|
addr,
|
|
158
163
|
size=block.size,
|
|
@@ -160,10 +165,7 @@ class MipsElfFastResolver(IndirectJumpResolver):
|
|
|
160
165
|
const_prop=True,
|
|
161
166
|
cross_insn_opt=False,
|
|
162
167
|
load_from_ro_regions=True,
|
|
163
|
-
initial_regs=
|
|
164
|
-
(self.project.arch.registers["t9"][0], self.project.arch.registers["t9"][1], func_addr),
|
|
165
|
-
(self.project.arch.registers["gp"][0], self.project.arch.registers["gp"][1], gp_value),
|
|
166
|
-
],
|
|
168
|
+
initial_regs=inital_regs,
|
|
167
169
|
).vex_nostmt
|
|
168
170
|
|
|
169
171
|
if not isinstance(first_irsb.next, pyvex.IRExpr.RdTmp):
|
|
@@ -193,6 +195,10 @@ class MipsElfFastResolver(IndirectJumpResolver):
|
|
|
193
195
|
# the register (t9) is set in this block - we can resolve the jump target using only the current block
|
|
194
196
|
return Case2Result.RESUME, None
|
|
195
197
|
|
|
198
|
+
inital_regs = [(self.project.arch.registers["t9"][0], self.project.arch.registers["t9"][1], func_addr)]
|
|
199
|
+
if gp_value is not None:
|
|
200
|
+
inital_regs.append((self.project.arch.registers["gp"][0], self.project.arch.registers["gp"][1], gp_value))
|
|
201
|
+
|
|
196
202
|
# lift the first block again with the correct setting
|
|
197
203
|
first_irsb = self.project.factory.block(
|
|
198
204
|
first_block_addr,
|
|
@@ -200,10 +206,7 @@ class MipsElfFastResolver(IndirectJumpResolver):
|
|
|
200
206
|
collect_data_refs=False,
|
|
201
207
|
const_prop=True,
|
|
202
208
|
load_from_ro_regions=True,
|
|
203
|
-
initial_regs=
|
|
204
|
-
(self.project.arch.registers["t9"][0], self.project.arch.registers["t9"][1], func_addr),
|
|
205
|
-
(self.project.arch.registers["gp"][0], self.project.arch.registers["gp"][1], gp_value),
|
|
206
|
-
],
|
|
209
|
+
initial_regs=inital_regs,
|
|
207
210
|
).vex_nostmt
|
|
208
211
|
|
|
209
212
|
last_reg_setting_tmp = self._get_last_reg_setting_tmp(first_irsb, jump_target_reg)
|
|
@@ -51,11 +51,11 @@ class MipsElfGotResolver(IndirectJumpResolver):
|
|
|
51
51
|
return False, []
|
|
52
52
|
dynsym_addr = self._find_and_cache_section_addr(obj, ".dynsym")
|
|
53
53
|
if dynsym_addr is None:
|
|
54
|
-
return
|
|
54
|
+
return False, []
|
|
55
55
|
|
|
56
56
|
dynstr_addr = self._find_and_cache_section_addr(obj, ".dynstr")
|
|
57
57
|
if dynstr_addr is None:
|
|
58
|
-
return
|
|
58
|
+
return False, []
|
|
59
59
|
|
|
60
60
|
if block.size != 16:
|
|
61
61
|
return False, []
|
|
@@ -1316,18 +1316,7 @@ class AILSimplifier(Analysis):
|
|
|
1316
1316
|
continue
|
|
1317
1317
|
uses = rd.get_vvar_uses(def_.atom)
|
|
1318
1318
|
|
|
1319
|
-
elif def_.atom.was_reg:
|
|
1320
|
-
uses = rd.get_vvar_uses(def_.atom)
|
|
1321
|
-
if (
|
|
1322
|
-
def_.atom.reg_offset in self.project.arch.artificial_registers_offsets
|
|
1323
|
-
and len(uses) == 1
|
|
1324
|
-
and next(iter(uses)) == def_.codeloc
|
|
1325
|
-
):
|
|
1326
|
-
# TODO: Verify if we still need this hack after moving to SSA
|
|
1327
|
-
# cc_ndep = amd64g_calculate_condition(..., cc_ndep)
|
|
1328
|
-
uses = set()
|
|
1329
|
-
|
|
1330
|
-
elif def_.atom.was_parameter:
|
|
1319
|
+
elif def_.atom.was_reg or def_.atom.was_parameter:
|
|
1331
1320
|
uses = rd.get_vvar_uses(def_.atom)
|
|
1332
1321
|
|
|
1333
1322
|
else:
|
|
@@ -1425,9 +1414,17 @@ class AILSimplifier(Analysis):
|
|
|
1425
1414
|
simplified = True
|
|
1426
1415
|
continue
|
|
1427
1416
|
if isinstance(stmt, Assignment) and isinstance(stmt.dst, VirtualVariable):
|
|
1428
|
-
# no one is using the returned virtual variable.
|
|
1429
|
-
# a
|
|
1430
|
-
|
|
1417
|
+
# no one is using the returned virtual variable.
|
|
1418
|
+
# now the things are a bit tricky here
|
|
1419
|
+
if isinstance(stmt.src, Call):
|
|
1420
|
+
# replace this assignment statement with a call statement
|
|
1421
|
+
stmt = stmt.src
|
|
1422
|
+
elif isinstance(stmt.src, Convert) and isinstance(stmt.src.operand, Call):
|
|
1423
|
+
# the convert is useless now
|
|
1424
|
+
stmt = stmt.src.operand
|
|
1425
|
+
else:
|
|
1426
|
+
# we can't change this stmt at all because it has an expression with Calls inside
|
|
1427
|
+
pass
|
|
1431
1428
|
else:
|
|
1432
1429
|
# no calls. remove it
|
|
1433
1430
|
simplified = True
|
|
@@ -1460,7 +1457,7 @@ class AILSimplifier(Analysis):
|
|
|
1460
1457
|
def _find_cyclic_dependent_phis_and_dirty_vvars(self, rd: SRDAModel) -> set[int]:
|
|
1461
1458
|
blocks_dict = {(bb.addr, bb.idx): bb for bb in self.func_graph}
|
|
1462
1459
|
|
|
1463
|
-
# find dirty vvars
|
|
1460
|
+
# find dirty vvars and vexccall vvars
|
|
1464
1461
|
dirty_vvar_ids = set()
|
|
1465
1462
|
for bb in self.func_graph:
|
|
1466
1463
|
for stmt in bb.statements:
|
|
@@ -1468,7 +1465,7 @@ class AILSimplifier(Analysis):
|
|
|
1468
1465
|
isinstance(stmt, Assignment)
|
|
1469
1466
|
and isinstance(stmt.dst, VirtualVariable)
|
|
1470
1467
|
and stmt.dst.was_reg
|
|
1471
|
-
and isinstance(stmt.src, DirtyExpression)
|
|
1468
|
+
and isinstance(stmt.src, (DirtyExpression, VEXCCallExpression))
|
|
1472
1469
|
):
|
|
1473
1470
|
dirty_vvar_ids.add(stmt.dst.varid)
|
|
1474
1471
|
|
|
@@ -1544,8 +1541,8 @@ class AILSimplifier(Analysis):
|
|
|
1544
1541
|
v = False
|
|
1545
1542
|
|
|
1546
1543
|
def _handle_expr(expr_idx: int, expr: Expression, stmt_idx: int, stmt: Statement, block) -> Expression | None:
|
|
1547
|
-
if isinstance(expr,
|
|
1548
|
-
rewriter = rewriter_cls(expr
|
|
1544
|
+
if isinstance(expr, VEXCCallExpression):
|
|
1545
|
+
rewriter = rewriter_cls(expr, self.project.arch)
|
|
1549
1546
|
if rewriter.result is not None:
|
|
1550
1547
|
_any_update.v = True
|
|
1551
1548
|
return rewriter.result
|
|
@@ -143,7 +143,7 @@ class CallSiteMaker(Analysis):
|
|
|
143
143
|
if isinstance(arg_loc, SimRegArg):
|
|
144
144
|
size = arg_loc.size
|
|
145
145
|
offset = arg_loc.check_offset(cc.arch)
|
|
146
|
-
value_and_def = self._resolve_register_argument(
|
|
146
|
+
value_and_def = self._resolve_register_argument(arg_loc)
|
|
147
147
|
if value_and_def is not None:
|
|
148
148
|
vvar_def = value_and_def[1]
|
|
149
149
|
arg_vvars.append(vvar_def)
|
|
@@ -283,14 +283,15 @@ class CallSiteMaker(Analysis):
|
|
|
283
283
|
l.warning("TODO: Unsupported statement type %s for definitions.", type(stmt))
|
|
284
284
|
return None
|
|
285
285
|
|
|
286
|
-
def _resolve_register_argument(self,
|
|
286
|
+
def _resolve_register_argument(self, arg_loc) -> tuple[int | None, Expr.VirtualVariable] | None:
|
|
287
287
|
offset = arg_loc.check_offset(self.project.arch)
|
|
288
288
|
|
|
289
289
|
if self._reaching_definitions is not None:
|
|
290
290
|
# Find its definition
|
|
291
|
-
ins_addr = call_stmt.tags["ins_addr"]
|
|
292
291
|
view = SRDAView(self._reaching_definitions.model)
|
|
293
|
-
vvar = view.
|
|
292
|
+
vvar = view.get_reg_vvar_by_stmt(
|
|
293
|
+
offset, self.block.addr, self.block.idx, len(self.block.statements) - 1, OP_BEFORE
|
|
294
|
+
)
|
|
294
295
|
|
|
295
296
|
if vvar is not None:
|
|
296
297
|
vvar_value = view.get_vvar_value(vvar)
|
|
@@ -318,8 +319,8 @@ class CallSiteMaker(Analysis):
|
|
|
318
319
|
if self._reaching_definitions is not None:
|
|
319
320
|
# find its definition
|
|
320
321
|
view = SRDAView(self._reaching_definitions.model)
|
|
321
|
-
vvar = view.
|
|
322
|
-
sp_offset, size,
|
|
322
|
+
vvar = view.get_stack_vvar_by_stmt(
|
|
323
|
+
sp_offset, size, self.block.addr, self.block.idx, len(self.block.statements) - 1, OP_BEFORE
|
|
323
324
|
)
|
|
324
325
|
if vvar is not None:
|
|
325
326
|
value = view.get_vvar_value(vvar)
|
|
@@ -416,7 +417,7 @@ class CallSiteMaker(Analysis):
|
|
|
416
417
|
|
|
417
418
|
value = None
|
|
418
419
|
if isinstance(arg_loc, SimRegArg):
|
|
419
|
-
value_and_def = self._resolve_register_argument(
|
|
420
|
+
value_and_def = self._resolve_register_argument(arg_loc)
|
|
420
421
|
if value_and_def is not None:
|
|
421
422
|
value = value_and_def[0]
|
|
422
423
|
|
|
@@ -20,7 +20,7 @@ class AMD64CCallRewriter(CCallRewriterBase):
|
|
|
20
20
|
__slots__ = ()
|
|
21
21
|
|
|
22
22
|
def _rewrite(self, ccall: Expr.VEXCCallExpression) -> Expr.Expression | None:
|
|
23
|
-
if ccall.
|
|
23
|
+
if ccall.callee == "amd64g_calculate_condition":
|
|
24
24
|
cond = ccall.operands[0]
|
|
25
25
|
op = ccall.operands[1]
|
|
26
26
|
dep_1 = ccall.operands[2]
|
|
@@ -288,6 +288,28 @@ class AMD64CCallRewriter(CCallRewriterBase):
|
|
|
288
288
|
|
|
289
289
|
r = Expr.BinaryOp(ccall.idx, "CmpLT", (dep_1, dep_2), True, **ccall.tags)
|
|
290
290
|
return Expr.Convert(None, r.bits, ccall.bits, False, r, **ccall.tags)
|
|
291
|
+
|
|
292
|
+
if op_v in {
|
|
293
|
+
AMD64_OpTypes["G_CC_OP_LOGICB"],
|
|
294
|
+
AMD64_OpTypes["G_CC_OP_LOGICW"],
|
|
295
|
+
AMD64_OpTypes["G_CC_OP_LOGICL"],
|
|
296
|
+
AMD64_OpTypes["G_CC_OP_LOGICQ"],
|
|
297
|
+
}:
|
|
298
|
+
# dep_1 is the result, dep_2 is always zero
|
|
299
|
+
# dep_1 <s 0
|
|
300
|
+
|
|
301
|
+
dep_1 = self._fix_size(
|
|
302
|
+
dep_1,
|
|
303
|
+
op_v,
|
|
304
|
+
AMD64_OpTypes["G_CC_OP_LOGICB"],
|
|
305
|
+
AMD64_OpTypes["G_CC_OP_LOGICW"],
|
|
306
|
+
AMD64_OpTypes["G_CC_OP_LOGICL"],
|
|
307
|
+
ccall.tags,
|
|
308
|
+
)
|
|
309
|
+
zero = Expr.Const(None, None, 0, dep_1.bits)
|
|
310
|
+
r = Expr.BinaryOp(ccall.idx, "CmpLT", (dep_1, zero), True, **ccall.tags)
|
|
311
|
+
return Expr.Convert(None, r.bits, ccall.bits, False, r, **ccall.tags)
|
|
312
|
+
|
|
291
313
|
elif cond_v == AMD64_CondTypes["CondNBE"]:
|
|
292
314
|
if op_v in {
|
|
293
315
|
AMD64_OpTypes["G_CC_OP_SUBB"],
|
|
@@ -390,7 +412,7 @@ class AMD64CCallRewriter(CCallRewriterBase):
|
|
|
390
412
|
)
|
|
391
413
|
return Expr.Convert(None, r.bits, ccall.bits, False, r, **ccall.tags)
|
|
392
414
|
|
|
393
|
-
elif ccall.
|
|
415
|
+
elif ccall.callee == "amd64g_calculate_rflags_c":
|
|
394
416
|
# calculate the carry flag
|
|
395
417
|
op = ccall.operands[0]
|
|
396
418
|
dep_1 = ccall.operands[1]
|
|
@@ -110,6 +110,7 @@ class Clinic(Analysis):
|
|
|
110
110
|
inlined_counts: dict[int, int] | None = None,
|
|
111
111
|
inlining_parents: set[int] | None = None,
|
|
112
112
|
vvar_id_start: int = 0,
|
|
113
|
+
optimization_scratch: dict[str, Any] | None = None,
|
|
113
114
|
):
|
|
114
115
|
if not func.normalized and mode == ClinicMode.DECOMPILE:
|
|
115
116
|
raise ValueError("Decompilation must work on normalized function graphs.")
|
|
@@ -124,6 +125,7 @@ class Clinic(Analysis):
|
|
|
124
125
|
self.variable_kb = variable_kb
|
|
125
126
|
self.externs: set[SimMemoryVariable] = set()
|
|
126
127
|
self.data_refs: dict[int, int] = {} # data address to instruction address
|
|
128
|
+
self.optimization_scratch = optimization_scratch if optimization_scratch is not None else {}
|
|
127
129
|
|
|
128
130
|
self._func_graph: networkx.DiGraph | None = None
|
|
129
131
|
self._ail_manager = None
|
|
@@ -919,10 +921,16 @@ class Clinic(Analysis):
|
|
|
919
921
|
"Ijk_Sys"
|
|
920
922
|
):
|
|
921
923
|
# we don't support lifting this block. use a dummy block instead
|
|
924
|
+
dirty_expr = ailment.Expr.DirtyExpression(
|
|
925
|
+
self._ail_manager.next_atom,
|
|
926
|
+
f"Unsupported jumpkind {block.vex.jumpkind} at address {block_node.addr}",
|
|
927
|
+
[],
|
|
928
|
+
bits=0,
|
|
929
|
+
)
|
|
922
930
|
statements = [
|
|
923
931
|
ailment.Stmt.DirtyStatement(
|
|
924
932
|
self._ail_manager.next_atom(),
|
|
925
|
-
|
|
933
|
+
dirty_expr,
|
|
926
934
|
ins_addr=block_node.addr,
|
|
927
935
|
)
|
|
928
936
|
]
|
|
@@ -1219,6 +1227,7 @@ class Clinic(Analysis):
|
|
|
1219
1227
|
variable_kb=variable_kb,
|
|
1220
1228
|
vvar_id_start=self.vvar_id_start,
|
|
1221
1229
|
entry_node_addr=self.entry_node_addr,
|
|
1230
|
+
scratch=self.optimization_scratch,
|
|
1222
1231
|
**kwargs,
|
|
1223
1232
|
)
|
|
1224
1233
|
if a.out_graph:
|
|
@@ -1256,6 +1265,7 @@ class Clinic(Analysis):
|
|
|
1256
1265
|
ailment.Expr.VirtualVariableCategory.PARAMETER,
|
|
1257
1266
|
oident=arg.reg,
|
|
1258
1267
|
ins_addr=self.function.addr,
|
|
1268
|
+
vex_block_addr=self.function.addr,
|
|
1259
1269
|
)
|
|
1260
1270
|
self.vvar_id_start += 1
|
|
1261
1271
|
arg_vvars[arg_vvar.varid] = arg_vvar, arg
|
|
@@ -1269,6 +1279,7 @@ class Clinic(Analysis):
|
|
|
1269
1279
|
False,
|
|
1270
1280
|
arg_vvar,
|
|
1271
1281
|
ins_addr=self.function.addr,
|
|
1282
|
+
vex_block_addr=self.function.addr,
|
|
1272
1283
|
)
|
|
1273
1284
|
|
|
1274
1285
|
fullreg_dst = ailment.Expr.Register(
|
|
@@ -1277,12 +1288,14 @@ class Clinic(Analysis):
|
|
|
1277
1288
|
basereg_offset,
|
|
1278
1289
|
basereg_size * self.project.arch.byte_width,
|
|
1279
1290
|
ins_addr=self.function.addr,
|
|
1291
|
+
vex_block_addr=self.function.addr,
|
|
1280
1292
|
)
|
|
1281
1293
|
stmt = ailment.Stmt.Assignment(
|
|
1282
1294
|
self._ail_manager.next_atom(),
|
|
1283
1295
|
fullreg_dst,
|
|
1284
1296
|
arg_vvar,
|
|
1285
1297
|
ins_addr=self.function.addr,
|
|
1298
|
+
vex_block_addr=self.function.addr,
|
|
1286
1299
|
)
|
|
1287
1300
|
new_stmts.append(stmt)
|
|
1288
1301
|
|
|
@@ -1313,6 +1326,7 @@ class Clinic(Analysis):
|
|
|
1313
1326
|
ail_graph,
|
|
1314
1327
|
entry=next(iter(bb for bb in ail_graph if (bb.addr, bb.idx) == self.entry_node_addr)),
|
|
1315
1328
|
ail_manager=self._ail_manager,
|
|
1329
|
+
ssa_tmps=True,
|
|
1316
1330
|
ssa_stackvars=True,
|
|
1317
1331
|
vvar_id_start=self.vvar_id_start,
|
|
1318
1332
|
)
|
|
@@ -1792,6 +1806,18 @@ class Clinic(Analysis):
|
|
|
1792
1806
|
elif isinstance(expr, ailment.Stmt.Call):
|
|
1793
1807
|
self._link_variables_on_call(variable_manager, global_variables, block, stmt_idx, expr, is_expr=True)
|
|
1794
1808
|
|
|
1809
|
+
elif isinstance(expr, ailment.Expr.VEXCCallExpression):
|
|
1810
|
+
for operand in expr.operands:
|
|
1811
|
+
self._link_variables_on_expr(variable_manager, global_variables, block, stmt_idx, stmt, operand)
|
|
1812
|
+
|
|
1813
|
+
elif isinstance(expr, ailment.Expr.DirtyExpression):
|
|
1814
|
+
for operand in expr.operands:
|
|
1815
|
+
self._link_variables_on_expr(variable_manager, global_variables, block, stmt_idx, stmt, operand)
|
|
1816
|
+
if expr.maddr:
|
|
1817
|
+
self._link_variables_on_expr(variable_manager, global_variables, block, stmt_idx, stmt, expr.maddr)
|
|
1818
|
+
if expr.guard:
|
|
1819
|
+
self._link_variables_on_expr(variable_manager, global_variables, block, stmt_idx, stmt, expr.guard)
|
|
1820
|
+
|
|
1795
1821
|
def _function_graph_to_ail_graph(self, func_graph, blocks_by_addr_and_size=None):
|
|
1796
1822
|
if blocks_by_addr_and_size is None:
|
|
1797
1823
|
blocks_by_addr_and_size = self._blocks_by_addr_and_size
|
|
@@ -160,6 +160,8 @@ _ail2claripy_op_mapping = {
|
|
|
160
160
|
"GetMSBs": lambda expr, _, m: _dummy_bvs(expr, m),
|
|
161
161
|
"InterleaveLOV": lambda expr, _, m: _dummy_bvs(expr, m),
|
|
162
162
|
"InterleaveHIV": lambda expr, _, m: _dummy_bvs(expr, m),
|
|
163
|
+
# catch-all
|
|
164
|
+
"_DUMMY_": lambda expr, _, m: _dummy_bvs(expr, m),
|
|
163
165
|
}
|
|
164
166
|
|
|
165
167
|
#
|
|
@@ -771,7 +773,7 @@ class ConditionProcessor:
|
|
|
771
773
|
|
|
772
774
|
if isinstance(
|
|
773
775
|
condition,
|
|
774
|
-
(ailment.Expr.
|
|
776
|
+
(ailment.Expr.VEXCCallExpression, ailment.Expr.BasePointerOffset, ailment.Expr.ITE),
|
|
775
777
|
):
|
|
776
778
|
return _dummy_bvs(condition, self._condition_mapping)
|
|
777
779
|
if isinstance(condition, ailment.Stmt.Call):
|
|
@@ -828,9 +830,14 @@ class ConditionProcessor:
|
|
|
828
830
|
# fall back to op
|
|
829
831
|
lambda_expr = _ail2claripy_op_mapping.get(condition.op, None)
|
|
830
832
|
if lambda_expr is None:
|
|
831
|
-
|
|
832
|
-
|
|
833
|
+
# fall back to the catch-all option
|
|
834
|
+
l.debug(
|
|
835
|
+
"Unsupported AIL expression operation %s (or verbose: %s). Fall back to the default catch-all dummy "
|
|
836
|
+
"option. Consider implementing.",
|
|
837
|
+
condition.op,
|
|
838
|
+
condition.verbose_op,
|
|
833
839
|
)
|
|
840
|
+
lambda_expr = _ail2claripy_op_mapping["_DUMMY_"]
|
|
834
841
|
r = lambda_expr(condition, self.claripy_ast_from_ail_condition, self._condition_mapping)
|
|
835
842
|
|
|
836
843
|
if isinstance(r, claripy.ast.Bool) and nobool:
|
|
@@ -14,6 +14,7 @@ class DecompilationCache:
|
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
16
|
__slots__ = (
|
|
17
|
+
"parameters",
|
|
17
18
|
"addr",
|
|
18
19
|
"type_constraints",
|
|
19
20
|
"func_typevar",
|
|
@@ -25,6 +26,7 @@ class DecompilationCache:
|
|
|
25
26
|
)
|
|
26
27
|
|
|
27
28
|
def __init__(self, addr):
|
|
29
|
+
self.parameters: dict[str, Any] = {}
|
|
28
30
|
self.addr = addr
|
|
29
31
|
self.type_constraints: set | None = None
|
|
30
32
|
self.func_typevar = None
|
|
@@ -68,12 +68,13 @@ class Decompiler(Analysis):
|
|
|
68
68
|
inline_functions=frozenset(),
|
|
69
69
|
update_memory_data: bool = True,
|
|
70
70
|
generate_code: bool = True,
|
|
71
|
+
use_cache: bool = True,
|
|
71
72
|
):
|
|
72
73
|
if not isinstance(func, Function):
|
|
73
74
|
func = self.kb.functions[func]
|
|
74
75
|
self.func: Function = func
|
|
75
76
|
self._cfg = cfg.model if isinstance(cfg, CFGFast) else cfg
|
|
76
|
-
self._options = options
|
|
77
|
+
self._options = options or []
|
|
77
78
|
|
|
78
79
|
if preset is None and optimization_passes:
|
|
79
80
|
self._optimization_passes = optimization_passes
|
|
@@ -102,6 +103,25 @@ class Decompiler(Analysis):
|
|
|
102
103
|
self._update_memory_data = update_memory_data
|
|
103
104
|
self._generate_code = generate_code
|
|
104
105
|
self._inline_functions = inline_functions
|
|
106
|
+
self._cache_parameters = (
|
|
107
|
+
{
|
|
108
|
+
"cfg": self._cfg,
|
|
109
|
+
"variable_kb": self._variable_kb,
|
|
110
|
+
"options": {(o, v) for o, v in self._options if o.category != "Display" and v != o.default_value},
|
|
111
|
+
"optimization_passes": self._optimization_passes,
|
|
112
|
+
"sp_tracker_track_memory": self._sp_tracker_track_memory,
|
|
113
|
+
"peephole_optimizations": self._peephole_optimizations,
|
|
114
|
+
"vars_must_struct": self._vars_must_struct,
|
|
115
|
+
"flavor": self._flavor,
|
|
116
|
+
"expr_comments": self._expr_comments,
|
|
117
|
+
"stmt_comments": self._stmt_comments,
|
|
118
|
+
"ite_exprs": self._ite_exprs,
|
|
119
|
+
"binop_operators": self._binop_operators,
|
|
120
|
+
"inline_functions": self._inline_functions,
|
|
121
|
+
}
|
|
122
|
+
if use_cache
|
|
123
|
+
else None
|
|
124
|
+
)
|
|
105
125
|
|
|
106
126
|
self.clinic = None # mostly for debugging purposes
|
|
107
127
|
self.codegen: CStructuredCodeGenerator | None = None
|
|
@@ -111,27 +131,43 @@ class Decompiler(Analysis):
|
|
|
111
131
|
self.unoptimized_ail_graph: networkx.DiGraph | None = None
|
|
112
132
|
self.ail_graph: networkx.DiGraph | None = None
|
|
113
133
|
self.vvar_id_start = None
|
|
134
|
+
self._optimization_scratch: dict[str, Any] = {}
|
|
114
135
|
|
|
115
136
|
if decompile:
|
|
116
137
|
self._decompile()
|
|
117
138
|
|
|
139
|
+
def _can_use_decompilation_cache(self, cache: DecompilationCache) -> bool:
|
|
140
|
+
a, b = self._cache_parameters, cache.parameters
|
|
141
|
+
id_checks = {"cfg", "variable_kb"}
|
|
142
|
+
return all(a[k] is b[k] if k in id_checks else a[k] == b[k] for k in self._cache_parameters)
|
|
143
|
+
|
|
118
144
|
@timethis
|
|
119
145
|
def _decompile(self):
|
|
120
146
|
if self.func.is_simprocedure:
|
|
121
147
|
return
|
|
122
148
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
149
|
+
cache = None
|
|
150
|
+
|
|
151
|
+
if self._cache_parameters is not None:
|
|
152
|
+
try:
|
|
153
|
+
cache = self.kb.decompilations[self.func.addr]
|
|
154
|
+
if not self._can_use_decompilation_cache(cache):
|
|
155
|
+
cache = None
|
|
156
|
+
except KeyError:
|
|
157
|
+
pass
|
|
158
|
+
|
|
159
|
+
if cache:
|
|
126
160
|
old_codegen = cache.codegen
|
|
127
161
|
old_clinic = cache.clinic
|
|
128
162
|
ite_exprs = cache.ite_exprs if self._ite_exprs is None else self._ite_exprs
|
|
129
163
|
binop_operators = cache.binop_operators if self._binop_operators is None else self._binop_operators
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
binop_operators = self._binop_operators
|
|
164
|
+
l.debug("Decompilation cache hit")
|
|
165
|
+
else:
|
|
133
166
|
old_codegen = None
|
|
134
167
|
old_clinic = None
|
|
168
|
+
ite_exprs = self._ite_exprs
|
|
169
|
+
binop_operators = self._binop_operators
|
|
170
|
+
l.debug("Decompilation cache miss")
|
|
135
171
|
|
|
136
172
|
self.options_by_class = defaultdict(list)
|
|
137
173
|
|
|
@@ -167,6 +203,7 @@ class Decompiler(Analysis):
|
|
|
167
203
|
fold_callexprs_into_conditions = True
|
|
168
204
|
|
|
169
205
|
cache = DecompilationCache(self.func.addr)
|
|
206
|
+
cache.parameters = self._cache_parameters
|
|
170
207
|
cache.ite_exprs = ite_exprs
|
|
171
208
|
cache.binop_operators = binop_operators
|
|
172
209
|
|
|
@@ -189,6 +226,7 @@ class Decompiler(Analysis):
|
|
|
189
226
|
cache=cache,
|
|
190
227
|
progress_callback=progress_callback,
|
|
191
228
|
inline_functions=self._inline_functions,
|
|
229
|
+
optimization_scratch=self._optimization_scratch,
|
|
192
230
|
**self.options_to_params(self.options_by_class["clinic"]),
|
|
193
231
|
)
|
|
194
232
|
else:
|
|
@@ -302,6 +340,8 @@ class Decompiler(Analysis):
|
|
|
302
340
|
self.cache.codegen = codegen
|
|
303
341
|
self.cache.clinic = self.clinic
|
|
304
342
|
|
|
343
|
+
self.kb.decompilations[self.func.addr] = self.cache
|
|
344
|
+
|
|
305
345
|
def _recover_regions(self, graph: networkx.DiGraph, condition_processor, update_graph: bool = True):
|
|
306
346
|
return self.project.analyses[RegionIdentifier].prep(kb=self.kb)(
|
|
307
347
|
self.func,
|
|
@@ -355,6 +395,7 @@ class Decompiler(Analysis):
|
|
|
355
395
|
variable_kb=self._variable_kb,
|
|
356
396
|
reaching_definitions=reaching_definitions,
|
|
357
397
|
entry_node_addr=self.clinic.entry_node_addr,
|
|
398
|
+
scratch=self._optimization_scratch,
|
|
358
399
|
**kwargs,
|
|
359
400
|
)
|
|
360
401
|
|
|
@@ -414,6 +455,7 @@ class Decompiler(Analysis):
|
|
|
414
455
|
reaching_definitions=reaching_definitions,
|
|
415
456
|
vvar_id_start=self.vvar_id_start,
|
|
416
457
|
entry_node_addr=self.clinic.entry_node_addr,
|
|
458
|
+
scratch=self._optimization_scratch,
|
|
417
459
|
**kwargs,
|
|
418
460
|
)
|
|
419
461
|
|
|
@@ -442,7 +484,7 @@ class Decompiler(Analysis):
|
|
|
442
484
|
continue
|
|
443
485
|
|
|
444
486
|
pass_ = timethis(pass_)
|
|
445
|
-
a = pass_(self.func, seq=seq_node, **kwargs)
|
|
487
|
+
a = pass_(self.func, seq=seq_node, scratch=self._optimization_scratch, **kwargs)
|
|
446
488
|
if a.out_seq:
|
|
447
489
|
seq_node = a.out_seq
|
|
448
490
|
|
|
@@ -3,7 +3,7 @@ import logging
|
|
|
3
3
|
from collections import defaultdict
|
|
4
4
|
|
|
5
5
|
from ailment.block import Block
|
|
6
|
-
from ailment.expression import Phi, VirtualVariable
|
|
6
|
+
from ailment.expression import Phi, VirtualVariable, VirtualVariableCategory
|
|
7
7
|
from ailment.statement import Assignment, Jump, ConditionalJump, Label
|
|
8
8
|
|
|
9
9
|
from angr.analyses import Analysis
|
|
@@ -213,8 +213,16 @@ class GraphDephicationVVarMapping(Analysis): # pylint:disable=abstract-method
|
|
|
213
213
|
|
|
214
214
|
the_block = self._blocks[(src_block_addr, src_block_idx)]
|
|
215
215
|
ins_addr = the_block.addr + the_block.original_size - 1
|
|
216
|
+
if vvar.category == VirtualVariableCategory.PARAMETER:
|
|
217
|
+
# it's a parameter, so we copy the variable into a dummy register vvar
|
|
218
|
+
# a parameter vvar should never be assigned to
|
|
219
|
+
new_category = VirtualVariableCategory.REGISTER
|
|
220
|
+
new_oident = 4096
|
|
221
|
+
else:
|
|
222
|
+
new_category = vvar.category
|
|
223
|
+
new_oident = vvar.oident
|
|
216
224
|
new_vvar = VirtualVariable(
|
|
217
|
-
None, new_vvar_id, vvar.bits,
|
|
225
|
+
None, new_vvar_id, vvar.bits, new_category, oident=new_oident, ins_addr=ins_addr
|
|
218
226
|
)
|
|
219
227
|
assignment = Assignment(None, new_vvar, vvar, ins_addr=ins_addr)
|
|
220
228
|
|