angr 9.2.159__tar.gz → 9.2.160__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.159 → angr-9.2.160}/Cargo.toml +1 -1
- angr-9.2.160/MANIFEST.in +5 -0
- {angr-9.2.159 → angr-9.2.160}/PKG-INFO +5 -6
- {angr-9.2.159 → angr-9.2.160}/angr/__init__.py +1 -1
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/clinic.py +4 -1
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/decompiler.py +12 -9
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/simple_solver.py +231 -29
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/typehoon.py +10 -2
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/engine_ail.py +8 -20
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/unicorn_engine.py +4 -4
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/PKG-INFO +5 -6
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/SOURCES.txt +26 -25
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/requires.txt +4 -4
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/Makefile +7 -7
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/Makefile-win +3 -3
- angr-9.2.159/native/angr_native.def → angr-9.2.160/native/unicornlib/unicornlib.def +1 -1
- angr-9.2.160/native/unicornlib/vendor.sh +23 -0
- {angr-9.2.159 → angr-9.2.160}/pyproject.toml +7 -8
- {angr-9.2.159 → angr-9.2.160}/setup.py +12 -12
- angr-9.2.159/MANIFEST.in +0 -6
- {angr-9.2.159 → angr-9.2.160}/Cargo.lock +0 -0
- {angr-9.2.159 → angr-9.2.160}/LICENSE +0 -0
- {angr-9.2.159 → angr-9.2.160}/README.md +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/__main__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/block.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/block_walker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/constant.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/converter_common.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/converter_pcode.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/converter_vex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/expression.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/statement.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/tagged_object.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/ailment/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/analysis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/backward_slice.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/binary_optimizer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/bindiff.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/boyscout.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/callee_cleanup_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/calling_convention/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/calling_convention/calling_convention.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/calling_convention/fact_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/calling_convention/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cdg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfb.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_arch_options.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_emulated.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_fast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_fast_soot.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/cfg_job_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/resolver.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg_slice_to_sink/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg_slice_to_sink/graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/cfg_slice_to_sink/transitions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/class_identifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/code_tagging.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/codecave.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/complete_calling_conventions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/congruency_check.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/data_dep/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/data_dep/data_dependency_analysis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/data_dep/dep_nodes.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/data_dep/sim_act_location.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/datagraph_meta.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/ddg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ail_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ailgraph_walker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/block_io_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/block_similarity.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/block_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/callsite_maker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ccall_rewriters/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/condition_processor.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/counters/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/counters/boolean_counter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/counters/call_counter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/counters/expression_counters.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/counters/seq_cf_structure_counter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/decompilation_cache.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/decompilation_options.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/dephication_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/graph_dephication.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/graph_rewriting.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/graph_vvar_mapping.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/rewriting_engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/dephication/seqnode_dephication.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/empty_node_remover.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/expression_narrower.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/goto_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/graph_region.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/jump_target_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/label_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/code_motion.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/condition_constprop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/const_derefs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/deadblock_remover.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/determine_load_sizes.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/div_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/engine_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/ite_region_converter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/mod_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/optimization_pass.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/switch_reused_entry_rewriter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/tag_slicer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/bswap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/eager_eval.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/rol_ror.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/shl_to_mul.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/peephole_optimizations/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/presets/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/presets/basic.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/presets/fast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/presets/full.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/presets/preset.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/redundant_label_remover.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_identifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/expr_folding.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/goto.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/if_.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/ifelse.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/loop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/node_address_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/region_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/region_walker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/return_maker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/seq_to_blocks.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/sequence_walker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/rewriting.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/rewriting_engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/rewriting_state.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/ssailification.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/traversal.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/traversal_engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/ssailification/traversal_state.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/stack_item.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structured_codegen/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structured_codegen/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structured_codegen/c.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structured_codegen/dummy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structured_codegen/dwarf_import.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/dream.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/phoenix.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/recursive_structurer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/sailr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/structurer_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/structuring/structurer_nodes.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/decompiler/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/api_obf_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/api_obf_type2_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/irsb_reg_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/string_obf_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/string_obf_opt_passes.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/deobfuscator/string_obf_peephole_optimizer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/disassembly.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/disassembly_utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/dominance_frontier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/fcp/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/fcp/fcp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/find_objects_static.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/consts.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_function.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_matcher.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_module.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_node.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_sig.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/flirt/flirt_utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/forward_analysis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/job_info.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/call_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/function_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/loop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/forward_analysis/visitors/single_node_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/custom_callable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/errors.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/func.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/atoi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/based_atoi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/fdprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/free.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/int2str.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/malloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/memcmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/memcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/memset.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/printf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/recv_until.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/skip_calloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/skip_realloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/skip_recv_n.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/snprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/sprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strcasecmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strcmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strlen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strncmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strncpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/functions/strtol.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/identify.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/identifier/runner.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/init_finder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/loop_analysis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/loopfinder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/patchfinder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/pathfinder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/engine_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/engine_vex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/propagator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/top_checker_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/values.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/propagator/vex_vars.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/proximity_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/call_trace.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/dep_graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/engine_ail.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/engine_vex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/external_codeloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler_library/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler_library/stdio.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler_library/stdlib.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler_library/string.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/function_handler_library/unistd.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/heap_allocator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/rd_initializer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/rd_state.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/reaching_definitions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reaching_definitions/subject.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/reassembler.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_liveness.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_propagator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_reaching_definitions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_reaching_definitions/s_rda_model.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_reaching_definitions/s_rda_view.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/s_reaching_definitions/s_reaching_definitions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/smc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/soot_class_hierarchy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/stack_pointer_tracker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/static_hooker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/dfa.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/lifter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/translator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/typeconsts.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/typevars.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/typehoon/variance.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/unpacker/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/unpacker/obfuscation_detector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/unpacker/packing_detector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/annotations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/engine_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/engine_vex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/irsb_scanner.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/variable_recovery.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/variable_recovery_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/variable_recovery/variable_recovery_fast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/veritesting.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/vfg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/vsa_ddg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/vtable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/analyses/xrefs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/db.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/models.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/cfg_model.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/comments.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/funcs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/kb.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/labels.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/loader.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/structured_code.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/variables.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/angrdb/serializers/xrefs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/annocfg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/blade.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/block.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/callable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/calling_conventions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/code_location.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/codenode.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/any.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/any_named.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/controlled_data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/eval.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/logging.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/max.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/nonzero.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/nonzero_range.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/norepeats.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/norepeats_range.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/range.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/signed_add.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/single.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/solutions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/concretization_strategies/unlimited_range.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/distributed/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/distributed/server.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/distributed/worker.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/failure.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/hook.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/icicle.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/light/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/light/data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/light/engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/behavior.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/cc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/emulate.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/pcode/lifter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/procedure.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/engine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/exceptions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/arrayref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/binop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/cast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/condition.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/constants.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/instanceOf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/instancefieldref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/invoke.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/length.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/local.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/new.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/newArray.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/newMultiArray.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/paramref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/phi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/staticfieldref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/thisref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/expressions/unsupported.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/field_dispatcher.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/method_dispatcher.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/assign.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/goto.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/identity.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/if_.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/invoke.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/return_.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/switch.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/statements/throw.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/arrayref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/constants.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/instancefieldref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/local.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/paramref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/staticfieldref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/strref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/soot/values/thisref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/successors.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/syscall.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/unicorn.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/claripy/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/claripy/ccall.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/claripy/datalayer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/claripy/irop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/actions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/concretizers.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/dirty.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/heavy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/inspect.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/resilience.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/heavy/super_fastpath.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/lifter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/light/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/light/light.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/light/resilience.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/engines/vex/light/slicing.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/errors.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/bucketizer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/common.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/dfs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/director.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/driller_core.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/explorer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/lengthlimiter.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/local_loop_seer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/loop_seer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/manual_mergepoint.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/memory_watcher.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/oppologist.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/slicecutor.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/spiller.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/spiller_db.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/stochastic.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/stub_stasher.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/suggestions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/tech_builder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/threading.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/timeout.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/tracer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/unique.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/exploration_techniques/veritesting.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/factory.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/flirt/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/flirt/build_sig.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/graph_utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/keyed_region.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/callsite_prototypes.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/cfg_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/cfg_model.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/cfg_node.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/indirect_jump.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/cfg/memory_data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/comments.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/custom_strings.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/debug_variables.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/functions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/functions/function.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/functions/function_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/functions/function_parser.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/functions/soot_function.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/indirect_jumps.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/atoms.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/constants.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/definition.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/environment.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/heap_address.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/key_definition_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/live_definitions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/liveness.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/rd_model.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/tag.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/undefined.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/unknown_size.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/key_definitions/uses.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/labels.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/obfuscations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/patches.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/plugin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/propagations/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/propagations/prop_value.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/propagations/propagation_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/propagations/propagation_model.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/propagations/states.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/structured_code.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/types.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/variables/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/variables/variable_access.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/variables/variable_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/xrefs/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/xrefs/xref.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/xrefs/xref_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/knowledge_plugins/xrefs/xref_types.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/ansi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/autoimport.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/bug_report.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/hookset.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/loggers.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/picklable_lock.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/plugins.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/telemetry.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/testing.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/misc/ux.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/advapi32/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/_terminate.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/allocate.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/deallocate.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/fdwait.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/random.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/receive.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/cgc/transmit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/cgc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/glibc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/gnulib.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/libstdcpp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/linux_kernel.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/linux_loader.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/msvcr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/parse_syscalls_from_local_system.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/parse_win32json.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/types_stl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/types_win32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_clfs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_fltmgr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_fwpkclnt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_fwpuclnt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_gdi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_hal.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_ksecdd.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_ndis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_ntoskrnl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_offreg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_pshed.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_secur32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/wdk_vhfum.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_aclui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_activeds.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_advapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_advpack.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_amsi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_apphelp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_authz.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_avicap32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_avifil32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_avrt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bcp47mrm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bcrypt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bcryptprimitives.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bluetoothapis.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bthprops.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_bthprops_cpl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cabinet.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_certadm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_certpoleng.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cfgmgr32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_chakra.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cldapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_clfsw32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_clusapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_comctl32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_comdlg32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_compstui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_computecore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_computenetwork.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_computestorage.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_comsvcs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_coremessaging.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_credui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_crypt32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cryptnet.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cryptui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cryptxml.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_cscapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d2d1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3d10.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3d10_1.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3d11.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3d12.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3d9.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3dcompiler_47.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_d3dcsx.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_davclnt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dbgeng.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dbghelp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dbgmodel.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dciman32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dcomp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ddraw.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_deviceaccess.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dflayout.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dhcpcsvc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dhcpcsvc6.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dhcpsapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_diagnosticdataquery.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dinput8.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_directml.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dmprocessxmlfiltered.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dnsapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_drt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_drtprov.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_drttransport.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dsound.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dsparse.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dsprop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dssec.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dsuiext.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dwmapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dwrite.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dxcompiler.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dxcore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dxgi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_dxva2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_eappcfg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_eappprxy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_efswrt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_elscore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_esent.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_evr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_faultrep.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_fhsvcctl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_firewallapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_fltlib.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_fontsub.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_forceinline.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_fwpuclnt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_fxsutility.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_gdi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_gdiplus.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_glu32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_gpedit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_hhctrl_ocx.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_hid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_hlink.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_hrtfapo.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_httpapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_icm32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_icmui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_icu.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ieframe.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_imagehlp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_imgutil.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_imm32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_infocardapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_inkobjcore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_iphlpapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_iscsidsc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_kernel32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_kernelbase.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_keycredmgr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ksproxy_ax.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ksuser.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ktmw32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_licenseprotection.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_loadperf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_magnification.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mdmlocalmanagement.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mdmregistration.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfcore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfplat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfplay.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfreadwrite.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfsensorgroup.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mfsrcsnk.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mgmtapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mmdevapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mpr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mprapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mqrt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mrmsupport.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msacm32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msajapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mscms.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mscoree.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msctfmonitor.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msdelta.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msdmo.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msdrm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msimg32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mspatcha.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mspatchc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msports.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msrating.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mssign32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mstask.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_msvfw32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mswsock.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_mtxdm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ncrypt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ndfapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_netapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_netsh.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_netshell.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_newdev.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ninput.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_normaliz.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ntdll.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ntdllk.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ntdsapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ntlanman.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_odbc32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_odbcbcp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ole32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_oleacc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_oleaut32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_oledlg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ondemandconnroutehelper.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_opengl32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_opmxbox.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_p2p.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_p2pgraph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_pdh.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_peerdist.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_powrprof.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_prntvpt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_projectedfslib.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_propsys.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_psapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_quartz.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_query.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_qwave.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rasapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rasdlg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_resutils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rometadata.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rpcns4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rpcproxy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rpcrt4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rstrtmgr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rtm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rtutils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_rtworkq.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sas.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_scarddlg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_schannel.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sechost.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_secur32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sensapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sensorsutilsv2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_setupapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sfc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_shdocvw.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_shell32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_shlwapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_slc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_slcext.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_slwga.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_snmpapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_spoolss.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_srclient.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_srpapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sspicli.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_sti.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_t2embed.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_tapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_tbs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_tdh.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_tokenbinding.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_traffic.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_txfw32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ualapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_uiautomationcore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_urlmon.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_user32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_userenv.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_usp10.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_uxtheme.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_verifier.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_version.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_vertdll.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_virtdisk.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_vmdevicehost.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_vssapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wcmapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wdsbp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wdsclientapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wdsmc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wdspxe.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wdstptc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_webauthn.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_webservices.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_websocket.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wecapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wevtapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winbio.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windows_ai_machinelearning.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windows_data_pdf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windows_media_mediacontrol.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windows_networking.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windows_ui_xaml.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_windowscodecs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winfax.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winhttp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winhvemulation.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winhvplatform.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wininet.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winml.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winmm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winscard.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winspool.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winspool_drv.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wintrust.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_winusb.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wlanapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wlanui.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wldap32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wldp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wmvcore.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wnvapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wofutil.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_ws2_32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wscapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wsclient.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wsdapi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wsmsvc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wsnmp32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_wtsapi32.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xaudio2_8.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xinput1_4.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xinputuap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xmllite.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xolehlp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/definitions/win32_xpsprint.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__ctype_b_loc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__ctype_tolower_loc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__ctype_toupper_loc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__errno_location.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__libc_init.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/__libc_start_main.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/dynamic_loading.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/scanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/glibc/sscanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/gnulib/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/gnulib/xalloc_die.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/gnulib/xstrtol_fatal.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java/unconstrained.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_io/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_io/read.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_io/write.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/array_operations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/class_and_interface_operations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/field_access.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/global_and_local_refs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/method_calls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/not_implemented.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/object_operations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/string_operations.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_jni/version_information.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/character.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/double.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/exit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/getsimplename.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/integer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/load_library.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/math.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/string.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/stringbuilder.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_lang/system.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/collection.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/iterator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/list.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/map.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/random.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/java_util/scanner_nextline.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/abort.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/access.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/atoi.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/atol.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/calloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/closelog.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/err.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/error.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/exit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fclose.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/feof.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fflush.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fgetc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fgets.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fopen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fputc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fputs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fread.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/free.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fscanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fseek.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/ftell.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/fwrite.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/getchar.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/getdelim.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/getegid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/geteuid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/getgid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/gets.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/getuid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/malloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/memcmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/memcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/memset.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/openlog.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/perror.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/printf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/putchar.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/puts.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/rand.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/realloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/rewind.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/scanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/setbuf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/setvbuf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/snprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/sprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/srand.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/sscanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/stpcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strcat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strchr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strcmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strcpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strlen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strncat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strncmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strncpy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strnlen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strstr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strtol.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/strtoul.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/system.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/time.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/tmpnam.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/tolower.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/toupper.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/ungetc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/vsnprintf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libc/wchar.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/_unwind_resume.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/std____throw_bad_alloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/std____throw_bad_cast.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/std____throw_length_error.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/std____throw_logic_error.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/libstdcpp/std__terminate.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/access.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/arch_prctl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/arm_user_helpers.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/brk.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/cwd.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/fstat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/fstat64.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/futex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/getegid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/geteuid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/getgid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/getpid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/getrlimit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/gettid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/getuid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/iovec.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/lseek.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/mmap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/mprotect.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/munmap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/openat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/set_tid_address.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/sigaction.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/sigprocmask.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/stat.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/sysinfo.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/tgkill.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/time.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/uid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/uname.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/unlink.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_kernel/vsyscall.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_loader/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_loader/_dl_rtld_lock.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_loader/sim_loader.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/linux_loader/tls.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/msvcr/__getmainargs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/msvcr/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/msvcr/_initterm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/msvcr/fmode.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/ntdll/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/ntdll/exceptions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/accept.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/bind.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/bzero.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/chroot.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/close.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/closedir.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/dup.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/fcntl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/fdopen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/fileno.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/fork.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/getenv.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/gethostbyname.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/getpass.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/getsockopt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/htonl.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/htons.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/inet_ntoa.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/listen.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/mmap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/open.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/opendir.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/poll.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/pread64.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/pthread.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/pwrite64.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/read.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/readdir.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/recv.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/recvfrom.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/select.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/send.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/setsockopt.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/sigaction.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/sim_time.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/sleep.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/socket.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/strcasecmp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/strdup.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/strtok_r.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/syslog.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/tz.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/unlink.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/usleep.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/posix/write.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/procedure_dict.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/CallReturn.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/NoReturnUnconstrained.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/Nop.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/PathTerminator.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/Redirect.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/ReturnChar.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/ReturnUnconstrained.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/UnresolvableCallTarget.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/UnresolvableJumpTarget.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/UserHook.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/b64_decode.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/caller.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/crazy_scanf.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/format_parser.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/stubs/syscall_stub.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/testing/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/testing/manyargs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/testing/retreg.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/tracer/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/tracer/random.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/tracer/receive.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/tracer/transmit.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/uclibc/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/uclibc/__uClibc_main.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/EncodePointer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/ExitProcess.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetCommandLine.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetCurrentProcessId.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetCurrentThreadId.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetLastInputInfo.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetModuleHandle.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/GetProcessAffinityMask.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/InterlockedExchange.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/IsProcessorFeaturePresent.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/VirtualAlloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/VirtualProtect.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/critical_section.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/dynamic_loading.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/file_handles.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/gethostbyname.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/heap.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/is_bad_ptr.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/local_storage.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/mutex.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/sim_time.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32/system_paths.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32_kernel/ExAllocatePool.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32_kernel/ExFreePoolWithTag.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32_kernel/__fastfail.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win32_kernel/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win_user32/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win_user32/chars.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win_user32/keyboard.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/procedures/win_user32/messagebox.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/project.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/cfg_pb2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/function_pb2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/primitives_pb2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/variables_pb2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/protos/xrefs_pb2.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/py.typed +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/serializable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_options.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_procedure.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_state.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_state_options.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_type.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/sim_variable.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/cgc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/javavm.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/linux.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/simos.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/snimmuc_nxp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/userland.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/windows.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/simos/xbox.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/slicer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_hierarchy.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/callstack.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/cgc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/debug_variables.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/filesystem.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/gdb.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/globals.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/heap_base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/heap_brk.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/heap_freelist.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/heap_libc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/heap_ptmalloc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/heap/utils.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/history.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/inspect.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/javavm_classloader.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/jni_references.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/libc.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/light_registers.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/log.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/loop_data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/plugin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/posix.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/preconstrainer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/scratch.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/sim_action.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/sim_action_object.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/sim_event.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/solver.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/symbolizer.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/trace_additions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/uc_manager.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/state_plugins/view.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/file.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/actions_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/address_concretization_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/bvv_conversion_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/clouseau_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/conditional_store_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/convenient_mappings_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/default_filler_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/dirty_addrs_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/hex_dumper_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/javavm_memory_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/keyvalue_memory_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/label_merger_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/memory_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/multi_value_merger_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/name_resolution_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/base.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/cooperation.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/list_page.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/multi_values.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/privileged_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/region_data.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/simple_interface_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/simplification_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/size_resolution_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/slotted_memory.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/smart_find_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/symbolic_merger_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/top_merger_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/underconstrained_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_mixins/unwrapper_mixin.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/storage/memory_object.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/tablespecs.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/ail.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/algo.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/bits.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/constants.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/cowdict.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/cpp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/doms.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/dynamic_dictlist.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/endness.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/enums_conv.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/env.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/formatting.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/funcid.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/graph.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/lazy_import.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/library.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/loader.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/mp.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/orderedset.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/ssa/__init__.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/ssa/tmp_uses_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/ssa/vvar_uses_collector.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/tagged_interval_map.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/timing.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/utils/types.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr/vaults.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/dependency_links.txt +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/entry_points.txt +0 -0
- {angr-9.2.159 → angr-9.2.160}/angr.egg-info/top_level.txt +0 -0
- {angr-9.2.159/crates → angr-9.2.160/native}/angr/Cargo.toml +0 -0
- {angr-9.2.159/crates → angr-9.2.160/native}/angr/src/icicle.rs +0 -0
- {angr-9.2.159/crates → angr-9.2.160/native}/angr/src/lib.rs +0 -0
- {angr-9.2.159/crates → angr-9.2.160/native}/angr/src/segmentlist.rs +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/log.c +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/log.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/sim_unicorn.cpp +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/sim_unicorn.hpp +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/uc_macro.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/unicorn_dynamic.c +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/arm.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/arm64.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/m68k.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/mips.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/platform.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/ppc.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/riscv.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/s390x.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/sparc.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/tricore.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/unicorn.h +0 -0
- {angr-9.2.159/native → angr-9.2.160/native/unicornlib}/vendor/unicorn/x86.h +0 -0
- {angr-9.2.159 → angr-9.2.160}/setup.cfg +0 -0
- {angr-9.2.159 → angr-9.2.160}/tests/test_calling_conventions.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/tests/test_cli.py +0 -0
- {angr-9.2.159 → angr-9.2.160}/tests/test_types.py +0 -0
angr-9.2.160/MANIFEST.in
ADDED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.160
|
|
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
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://angr.io/
|
|
7
7
|
Project-URL: Repository, https://github.com/angr/angr
|
|
8
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
9
8
|
Classifier: Programming Language :: Python :: 3
|
|
10
9
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -17,12 +16,12 @@ Description-Content-Type: text/markdown
|
|
|
17
16
|
License-File: LICENSE
|
|
18
17
|
Requires-Dist: cxxheaderparser
|
|
19
18
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: archinfo==9.2.160
|
|
21
20
|
Requires-Dist: cachetools
|
|
22
21
|
Requires-Dist: capstone==5.0.3
|
|
23
22
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
23
|
+
Requires-Dist: claripy==9.2.160
|
|
24
|
+
Requires-Dist: cle==9.2.160
|
|
26
25
|
Requires-Dist: mulpyplexer
|
|
27
26
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
28
27
|
Requires-Dist: protobuf>=5.28.2
|
|
@@ -31,7 +30,7 @@ Requires-Dist: pycparser>=2.18
|
|
|
31
30
|
Requires-Dist: pydemumble
|
|
32
31
|
Requires-Dist: pyformlang
|
|
33
32
|
Requires-Dist: pypcode<4.0,>=3.2.1
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
33
|
+
Requires-Dist: pyvex==9.2.160
|
|
35
34
|
Requires-Dist: rich>=13.1.0
|
|
36
35
|
Requires-Dist: sortedcontainers
|
|
37
36
|
Requires-Dist: sympy
|
|
@@ -143,7 +143,8 @@ class Clinic(Analysis):
|
|
|
143
143
|
desired_variables: set[str] | None = None,
|
|
144
144
|
force_loop_single_exit: bool = True,
|
|
145
145
|
complete_successors: bool = False,
|
|
146
|
-
max_type_constraints: int =
|
|
146
|
+
max_type_constraints: int = 100_000,
|
|
147
|
+
type_constraint_set_degradation_threshold: int = 150,
|
|
147
148
|
ail_graph: networkx.DiGraph | None = None,
|
|
148
149
|
arg_vvars: dict[int, tuple[ailment.Expr.VirtualVariable, SimVariable]] | None = None,
|
|
149
150
|
start_stage: ClinicStage | None = ClinicStage.INITIALIZATION,
|
|
@@ -185,6 +186,7 @@ class Clinic(Analysis):
|
|
|
185
186
|
self._cache = cache
|
|
186
187
|
self._mode = mode
|
|
187
188
|
self._max_type_constraints = max_type_constraints
|
|
189
|
+
self._type_constraint_set_degradation_threshold = type_constraint_set_degradation_threshold
|
|
188
190
|
self.vvar_id_start = vvar_id_start
|
|
189
191
|
self.vvar_to_vvar: dict[int, int] | None = None
|
|
190
192
|
# during SSA conversion, we create secondary stack variables because they overlap and are larger than the
|
|
@@ -1871,6 +1873,7 @@ class Clinic(Analysis):
|
|
|
1871
1873
|
must_struct=must_struct,
|
|
1872
1874
|
ground_truth=groundtruth,
|
|
1873
1875
|
stackvar_max_sizes=tv_max_sizes,
|
|
1876
|
+
constraint_set_degradation_threshold=self._type_constraint_set_degradation_threshold,
|
|
1874
1877
|
)
|
|
1875
1878
|
# tp.pp_constraints()
|
|
1876
1879
|
# tp.pp_solution()
|
|
@@ -23,7 +23,7 @@ from .ailgraph_walker import AILGraphWalker
|
|
|
23
23
|
from .condition_processor import ConditionProcessor
|
|
24
24
|
from .decompilation_options import DecompilationOption
|
|
25
25
|
from .decompilation_cache import DecompilationCache
|
|
26
|
-
from .utils import
|
|
26
|
+
from .utils import remove_edges_in_ailgraph
|
|
27
27
|
from .sequence_walker import SequenceWalker
|
|
28
28
|
from .structuring.structurer_nodes import SequenceNode
|
|
29
29
|
from .presets import DECOMPILATION_PRESETS, DecompilationPreset
|
|
@@ -319,12 +319,8 @@ class Decompiler(Analysis):
|
|
|
319
319
|
# removed!
|
|
320
320
|
remove_edges_in_ailgraph(clinic.graph, clinic.edges_to_remove)
|
|
321
321
|
|
|
322
|
-
# Rewrite the graph to remove phi expressions
|
|
323
|
-
# this is probably optional if we do not pretty-print clinic.graph
|
|
324
|
-
clinic.graph = self._transform_graph_from_ssa(clinic.graph)
|
|
325
|
-
|
|
326
322
|
# save the graph before structuring happens (for AIL view)
|
|
327
|
-
clinic.cc_graph =
|
|
323
|
+
clinic.cc_graph = clinic.copy_graph()
|
|
328
324
|
|
|
329
325
|
codegen = None
|
|
330
326
|
seq_node = None
|
|
@@ -357,7 +353,7 @@ class Decompiler(Analysis):
|
|
|
357
353
|
)
|
|
358
354
|
|
|
359
355
|
# rewrite the sequence node to remove phi expressions
|
|
360
|
-
seq_node = self.
|
|
356
|
+
seq_node = self.transform_seqnode_from_ssa(seq_node)
|
|
361
357
|
|
|
362
358
|
# update memory data
|
|
363
359
|
if self._cfg is not None and self._update_memory_data:
|
|
@@ -670,14 +666,21 @@ class Decompiler(Analysis):
|
|
|
670
666
|
memory_data_addrs=added_memory_data_addrs,
|
|
671
667
|
)
|
|
672
668
|
|
|
673
|
-
def
|
|
669
|
+
def transform_graph_from_ssa(self, ail_graph: networkx.DiGraph) -> networkx.DiGraph:
|
|
670
|
+
"""
|
|
671
|
+
Translate an SSA AIL graph out of SSA form. This is useful for producing a non-SSA AIL graph for displaying in
|
|
672
|
+
angr management.
|
|
673
|
+
|
|
674
|
+
:param ail_graph: The AIL graph to transform out of SSA form.
|
|
675
|
+
:return: The translated AIL graph.
|
|
676
|
+
"""
|
|
674
677
|
variable_kb = self._variable_kb
|
|
675
678
|
dephication = self.project.analyses.GraphDephication(
|
|
676
679
|
self.func, ail_graph, rewrite=True, variable_kb=variable_kb, kb=self.kb, fail_fast=self._fail_fast
|
|
677
680
|
)
|
|
678
681
|
return dephication.output
|
|
679
682
|
|
|
680
|
-
def
|
|
683
|
+
def transform_seqnode_from_ssa(self, seq_node: SequenceNode) -> SequenceNode:
|
|
681
684
|
variable_kb = self._variable_kb
|
|
682
685
|
dephication = self.project.analyses.SeqNodeDephication(
|
|
683
686
|
self.func, seq_node, rewrite=True, variable_kb=variable_kb, kb=self.kb, fail_fast=self._fail_fast
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pylint:disable=missing-class-docstring
|
|
1
|
+
# pylint:disable=missing-class-docstring,too-many-boolean-expressions
|
|
2
2
|
from __future__ import annotations
|
|
3
3
|
import enum
|
|
4
4
|
from collections import defaultdict
|
|
@@ -432,7 +432,14 @@ class SimpleSolver:
|
|
|
432
432
|
improvements.
|
|
433
433
|
"""
|
|
434
434
|
|
|
435
|
-
def __init__(
|
|
435
|
+
def __init__(
|
|
436
|
+
self,
|
|
437
|
+
bits: int,
|
|
438
|
+
constraints,
|
|
439
|
+
typevars,
|
|
440
|
+
constraint_set_degradation_threshold: int = 150,
|
|
441
|
+
stackvar_max_sizes: dict[TypeVariable, int] | None = None,
|
|
442
|
+
):
|
|
436
443
|
if bits not in (32, 64):
|
|
437
444
|
raise ValueError(f"Pointer size {bits} is not supported. Expect 32 or 64.")
|
|
438
445
|
|
|
@@ -440,6 +447,7 @@ class SimpleSolver:
|
|
|
440
447
|
self._constraints: dict[TypeVariable, set[TypeConstraint]] = constraints
|
|
441
448
|
self._typevars: set[TypeVariable] = typevars
|
|
442
449
|
self.stackvar_max_sizes = stackvar_max_sizes if stackvar_max_sizes is not None else {}
|
|
450
|
+
self._constraint_set_degradation_threshold = constraint_set_degradation_threshold
|
|
443
451
|
self._base_lattice = BASE_LATTICES[bits]
|
|
444
452
|
self._base_lattice_inverted = networkx.DiGraph()
|
|
445
453
|
for src, dst in self._base_lattice.edges:
|
|
@@ -459,7 +467,11 @@ class SimpleSolver:
|
|
|
459
467
|
self.processed_constraints_count += len(self._constraints[typevar])
|
|
460
468
|
|
|
461
469
|
self._constraints[typevar] |= self._eq_constraints_from_add(typevar)
|
|
462
|
-
self._constraints[typevar]
|
|
470
|
+
self._constraints[typevar] |= self._discover_equivalence(self._constraints[typevar])
|
|
471
|
+
new_constraints, replacements = self._handle_equivalence(self._constraints[typevar])
|
|
472
|
+
self._equivalence |= replacements
|
|
473
|
+
self._constraints[typevar] = new_constraints
|
|
474
|
+
self._constraints[typevar] = self._filter_constraints(self._constraints[typevar])
|
|
463
475
|
|
|
464
476
|
self.simplified_constraints_count += len(self._constraints[typevar])
|
|
465
477
|
|
|
@@ -517,11 +529,18 @@ class SimpleSolver:
|
|
|
517
529
|
|
|
518
530
|
_, sketches = self.infer_shapes(typevars, constraints)
|
|
519
531
|
constraintset2tvs = defaultdict(set)
|
|
532
|
+
tvs_seen = set()
|
|
520
533
|
for idx, tv in enumerate(constrained_typevars):
|
|
521
534
|
_l.debug("Collecting constraints for type variable %r (%d/%d)", tv, idx + 1, len(constrained_typevars))
|
|
535
|
+
if tv in tvs_seen:
|
|
536
|
+
continue
|
|
522
537
|
# build a sub constraint set for the type variable
|
|
523
|
-
constraint_subset =
|
|
524
|
-
|
|
538
|
+
constraint_subset, related_tvs = self._generate_constraint_subset(constraints, {tv})
|
|
539
|
+
# drop all type vars outside constrained_typevars
|
|
540
|
+
related_tvs = related_tvs.intersection(constrained_typevars)
|
|
541
|
+
tvs_seen |= related_tvs
|
|
542
|
+
frozen_constraint_subset = frozenset(constraint_subset)
|
|
543
|
+
constraintset2tvs[frozen_constraint_subset] = related_tvs
|
|
525
544
|
|
|
526
545
|
for idx, (constraint_subset, tvs) in enumerate(constraintset2tvs.items()):
|
|
527
546
|
_l.debug(
|
|
@@ -534,8 +553,31 @@ class SimpleSolver:
|
|
|
534
553
|
)
|
|
535
554
|
self.eqclass_constraints_count.append(len(constraint_subset))
|
|
536
555
|
|
|
537
|
-
|
|
538
|
-
|
|
556
|
+
if len(constraint_subset) > self._constraint_set_degradation_threshold:
|
|
557
|
+
_l.debug(
|
|
558
|
+
"Constraint subset contains %d constraints, which is over the limit of %d. Enter degradation.",
|
|
559
|
+
len(constraint_subset),
|
|
560
|
+
self._constraint_set_degradation_threshold,
|
|
561
|
+
)
|
|
562
|
+
constraint_subset = self._degrade_constraint_set(constraint_subset)
|
|
563
|
+
_l.debug("Degraded constraint subset to %d constraints.", len(constraint_subset))
|
|
564
|
+
|
|
565
|
+
while constraint_subset:
|
|
566
|
+
|
|
567
|
+
_l.debug("Working with %d constraints.", len(constraint_subset))
|
|
568
|
+
|
|
569
|
+
# remove constraints that are a <: b where a only appears once; in this case, the solution fo a is
|
|
570
|
+
# entirely determined by the solution of b (which is the upper bound of a)
|
|
571
|
+
filtered_constraint_subset, ub_subtypes = self._filter_leaf_typevars(constraint_subset, tvs)
|
|
572
|
+
_l.debug(
|
|
573
|
+
"Filtered %d leaf typevars; %d constraints remain.",
|
|
574
|
+
len(ub_subtypes),
|
|
575
|
+
len(filtered_constraint_subset),
|
|
576
|
+
)
|
|
577
|
+
|
|
578
|
+
base_constraint_graph = self._generate_constraint_graph(
|
|
579
|
+
filtered_constraint_subset, tvs | PRIMITIVE_TYPES
|
|
580
|
+
)
|
|
539
581
|
primitive_constraints = self._generate_primitive_constraints(tvs, base_constraint_graph)
|
|
540
582
|
tvs_with_primitive_constraints = set()
|
|
541
583
|
for primitive_constraint in primitive_constraints:
|
|
@@ -546,12 +588,22 @@ class SimpleSolver:
|
|
|
546
588
|
solutions = {}
|
|
547
589
|
self.determine(sketches, tvs_with_primitive_constraints, solutions)
|
|
548
590
|
_l.debug("Determined solutions for %d type variable(s).", len(tvs_with_primitive_constraints))
|
|
591
|
+
|
|
592
|
+
leaf_solutions = 0
|
|
593
|
+
for tv_, ub_tv in ub_subtypes.items():
|
|
594
|
+
if ub_tv in solutions:
|
|
595
|
+
solutions[tv_] = solutions[ub_tv]
|
|
596
|
+
leaf_solutions += 1
|
|
597
|
+
elif isinstance(ub_tv, TypeConstant):
|
|
598
|
+
solutions[tv_] = ub_tv
|
|
599
|
+
leaf_solutions += 1
|
|
600
|
+
_l.debug("Determined solutions for %d leaf type variable(s).", leaf_solutions)
|
|
601
|
+
|
|
549
602
|
if not solutions:
|
|
550
603
|
break
|
|
551
|
-
|
|
552
604
|
self.solution |= solutions
|
|
553
605
|
|
|
554
|
-
tvs = {tv for tv in tvs if tv not in
|
|
606
|
+
tvs = {tv for tv in tvs if tv not in solutions}
|
|
555
607
|
if not tvs:
|
|
556
608
|
break
|
|
557
609
|
# rewrite existing constraints
|
|
@@ -559,7 +611,7 @@ class SimpleSolver:
|
|
|
559
611
|
for constraint in constraint_subset:
|
|
560
612
|
rewritten = self._rewrite_constraint(constraint, solutions)
|
|
561
613
|
new_constraint_subset.add(rewritten)
|
|
562
|
-
constraint_subset = new_constraint_subset
|
|
614
|
+
constraint_subset = self._filter_constraints(new_constraint_subset)
|
|
563
615
|
|
|
564
616
|
# set the solution for missing type vars to TOP
|
|
565
617
|
self.determine(sketches, set(sketches).difference(set(self.solution)), self.solution)
|
|
@@ -775,14 +827,45 @@ class SimpleSolver:
|
|
|
775
827
|
new_constraints.add(Equivalence(constraint.type_1, constraint.type_r))
|
|
776
828
|
return new_constraints
|
|
777
829
|
|
|
778
|
-
|
|
830
|
+
@staticmethod
|
|
831
|
+
def _discover_equivalence(constraints: set[TypeConstraint]) -> set[Equivalence]:
|
|
832
|
+
"""
|
|
833
|
+
a <:b && b <: a ==> a == b
|
|
834
|
+
"""
|
|
835
|
+
|
|
836
|
+
new_eq_constraints: set[Equivalence] = set()
|
|
837
|
+
subtypes = defaultdict(set)
|
|
838
|
+
for constraint in constraints:
|
|
839
|
+
if isinstance(constraint, Subtype):
|
|
840
|
+
sub_type = constraint.sub_type
|
|
841
|
+
super_type = constraint.super_type
|
|
842
|
+
subtypes[sub_type].add(super_type)
|
|
843
|
+
|
|
844
|
+
# check everything
|
|
845
|
+
seen = set()
|
|
846
|
+
for tv, tv_supers in subtypes.items():
|
|
847
|
+
for tv_super in tv_supers:
|
|
848
|
+
if tv_super in subtypes and tv in subtypes[tv_super]: # noqa: SIM102
|
|
849
|
+
# we have a pair of subtypes that are equivalent
|
|
850
|
+
if (tv, tv_super) not in seen and (tv_super, tv) not in seen:
|
|
851
|
+
new_eq_constraints.add(Equivalence(tv, tv_super))
|
|
852
|
+
seen.add((tv, tv_super))
|
|
853
|
+
|
|
854
|
+
_l.debug(
|
|
855
|
+
"Discovered %d equivalence constraints from %d constraints.", len(new_eq_constraints), len(constraints)
|
|
856
|
+
)
|
|
857
|
+
return new_eq_constraints
|
|
858
|
+
|
|
859
|
+
@staticmethod
|
|
860
|
+
def _handle_equivalence(
|
|
861
|
+
constraint_set: set[TypeConstraint],
|
|
862
|
+
) -> tuple[set[TypeConstraint], dict[TypeVariable, TypeVariable | TypeConstant]]:
|
|
779
863
|
graph = networkx.Graph()
|
|
780
864
|
|
|
781
|
-
replacements = {}
|
|
782
|
-
constraints = set()
|
|
865
|
+
replacements: dict[TypeVariable, TypeVariable | TypeConstant] = {}
|
|
783
866
|
|
|
784
867
|
# collect equivalence relations
|
|
785
|
-
for constraint in
|
|
868
|
+
for constraint in constraint_set:
|
|
786
869
|
if isinstance(constraint, Equivalence):
|
|
787
870
|
# | type_a == type_b
|
|
788
871
|
# we apply unification and removes one of them
|
|
@@ -803,15 +886,30 @@ class SimpleSolver:
|
|
|
803
886
|
for tv in components_lst[1:]:
|
|
804
887
|
replacements[tv] = representative
|
|
805
888
|
|
|
806
|
-
|
|
807
|
-
|
|
889
|
+
constraints = SimpleSolver._rewrite_constraints_with_replacements(constraint_set, replacements)
|
|
890
|
+
|
|
891
|
+
# import pprint
|
|
892
|
+
# print("Replacements")
|
|
893
|
+
# pprint.pprint(replacements)
|
|
894
|
+
# print("Constraints (after replacement)")
|
|
895
|
+
# pprint.pprint(constraints)
|
|
896
|
+
|
|
897
|
+
return constraints, replacements
|
|
898
|
+
|
|
899
|
+
@staticmethod
|
|
900
|
+
def _rewrite_constraints_with_replacements(
|
|
901
|
+
constraints: set[TypeConstraint], replacements: dict[TypeVariable, TypeVariable]
|
|
902
|
+
) -> set[TypeConstraint]:
|
|
903
|
+
# replace constraints according to a dictionary of type variable replacements
|
|
904
|
+
replaced_constraints = set()
|
|
905
|
+
for constraint in constraints:
|
|
808
906
|
if isinstance(constraint, Existence):
|
|
809
907
|
replaced, new_constraint = constraint.replace(replacements)
|
|
810
908
|
|
|
811
909
|
if replaced:
|
|
812
|
-
|
|
910
|
+
replaced_constraints.add(new_constraint)
|
|
813
911
|
else:
|
|
814
|
-
|
|
912
|
+
replaced_constraints.add(constraint)
|
|
815
913
|
|
|
816
914
|
elif isinstance(constraint, Subtype):
|
|
817
915
|
# subtype <: supertype
|
|
@@ -819,18 +917,122 @@ class SimpleSolver:
|
|
|
819
917
|
replaced, new_constraint = constraint.replace(replacements)
|
|
820
918
|
|
|
821
919
|
if replaced:
|
|
822
|
-
|
|
920
|
+
replaced_constraints.add(new_constraint)
|
|
823
921
|
else:
|
|
824
|
-
|
|
922
|
+
replaced_constraints.add(constraint)
|
|
923
|
+
return replaced_constraints
|
|
825
924
|
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
925
|
+
@staticmethod
|
|
926
|
+
def _filter_constraints(constraints: set[TypeConstraint]) -> set[TypeConstraint]:
|
|
927
|
+
"""
|
|
928
|
+
Filter out constraints that we don't yet support.
|
|
929
|
+
"""
|
|
930
|
+
|
|
931
|
+
filtered_constraints = set()
|
|
932
|
+
for constraint in constraints:
|
|
933
|
+
dropped = False
|
|
934
|
+
if isinstance(constraint, Subtype) and (
|
|
935
|
+
(isinstance(constraint.sub_type, TypeConstant) and isinstance(constraint.super_type, TypeConstant))
|
|
936
|
+
or (
|
|
937
|
+
isinstance(constraint.sub_type, DerivedTypeVariable)
|
|
938
|
+
and isinstance(constraint.sub_type.labels[-1], ConvertTo)
|
|
939
|
+
)
|
|
940
|
+
or (
|
|
941
|
+
isinstance(constraint.sub_type, TypeVariable)
|
|
942
|
+
and isinstance(constraint.super_type, TypeVariable)
|
|
943
|
+
and constraint.sub_type == constraint.super_type
|
|
944
|
+
)
|
|
945
|
+
):
|
|
946
|
+
dropped = True
|
|
831
947
|
|
|
832
|
-
|
|
833
|
-
|
|
948
|
+
if not dropped:
|
|
949
|
+
filtered_constraints.add(constraint)
|
|
950
|
+
|
|
951
|
+
return filtered_constraints
|
|
952
|
+
|
|
953
|
+
@staticmethod
|
|
954
|
+
def _filter_leaf_typevars(
|
|
955
|
+
constraints: set[TypeConstraint], tvs_to_solve: set[TypeVariable]
|
|
956
|
+
) -> tuple[set[TypeConstraint], dict[TypeVariable, TypeVariable]]:
|
|
957
|
+
"""
|
|
958
|
+
Filter out leaf type variables that only appear once in the constraints. These type variables are not
|
|
959
|
+
interesting and can be removed from the constraints.
|
|
960
|
+
"""
|
|
961
|
+
|
|
962
|
+
sub_typevars = defaultdict(set)
|
|
963
|
+
tv_to_dtvs: dict[TypeVariable, set[TypeVariable | DerivedTypeVariable]] = defaultdict(set)
|
|
964
|
+
for constraint in constraints:
|
|
965
|
+
if isinstance(constraint, Subtype):
|
|
966
|
+
if isinstance(constraint.sub_type, TypeVariable):
|
|
967
|
+
sub_typevars[constraint.sub_type].add(constraint.super_type)
|
|
968
|
+
for tv in [constraint.sub_type, constraint.super_type]:
|
|
969
|
+
if isinstance(tv, DerivedTypeVariable):
|
|
970
|
+
tv_to_dtvs[tv.type_var].add(constraint.sub_type)
|
|
971
|
+
elif isinstance(tv, TypeVariable):
|
|
972
|
+
tv_to_dtvs[tv].add(constraint.sub_type)
|
|
973
|
+
|
|
974
|
+
ub_subtypes: dict[TypeVariable, TypeVariable] = {}
|
|
975
|
+
for tv, dtvs in tv_to_dtvs.items():
|
|
976
|
+
if len(dtvs) == 1 and tv in sub_typevars and len(sub_typevars[tv]) == 1:
|
|
977
|
+
ub = next(iter(sub_typevars[tv]))
|
|
978
|
+
if ub in tvs_to_solve:
|
|
979
|
+
ub_subtypes[tv] = ub
|
|
980
|
+
|
|
981
|
+
filtered_constraints = set()
|
|
982
|
+
for constraint in constraints:
|
|
983
|
+
if isinstance(constraint, Subtype) and constraint.sub_type in ub_subtypes:
|
|
984
|
+
continue
|
|
985
|
+
filtered_constraints.add(constraint)
|
|
986
|
+
|
|
987
|
+
return filtered_constraints, ub_subtypes
|
|
988
|
+
|
|
989
|
+
def _degrade_constraint_set(self, constraints: set[TypeConstraint]) -> set[TypeConstraint]:
|
|
990
|
+
"""
|
|
991
|
+
Degrade the constraint set to a smaller set of constraints to speed up the DFA generation process.
|
|
992
|
+
"""
|
|
993
|
+
|
|
994
|
+
tv_with_ls = defaultdict(set) # tv_with_ls are type variables with Loads or Stores
|
|
995
|
+
graph = networkx.Graph()
|
|
996
|
+
|
|
997
|
+
for constraint in constraints:
|
|
998
|
+
if isinstance(constraint, Subtype):
|
|
999
|
+
if isinstance(constraint.sub_type, DerivedTypeVariable) and isinstance(
|
|
1000
|
+
constraint.sub_type.labels[0], (Load, Store)
|
|
1001
|
+
):
|
|
1002
|
+
tv_with_ls[constraint.sub_type.type_var].add(constraint.sub_type)
|
|
1003
|
+
if type(constraint.sub_type) is TypeVariable and type(constraint.super_type) is TypeVariable:
|
|
1004
|
+
graph.add_edge(constraint.sub_type, constraint.super_type)
|
|
1005
|
+
|
|
1006
|
+
tv_to_degrade = set()
|
|
1007
|
+
for tv, dtvs in tv_with_ls.items():
|
|
1008
|
+
if len(dtvs) > 5:
|
|
1009
|
+
# degrade all subtype relationships involving this type variable to equivalence
|
|
1010
|
+
tv_to_degrade.add(tv)
|
|
1011
|
+
|
|
1012
|
+
replacements = {}
|
|
1013
|
+
for components in networkx.connected_components(graph):
|
|
1014
|
+
if len(components) == 1:
|
|
1015
|
+
continue
|
|
1016
|
+
if any(tv in tv_to_degrade for tv in components):
|
|
1017
|
+
components_lst = sorted(components, key=str)
|
|
1018
|
+
representative = components_lst[0]
|
|
1019
|
+
for tv in components_lst[1:]:
|
|
1020
|
+
replacements[tv] = representative
|
|
1021
|
+
|
|
1022
|
+
degraded_constraints = self._rewrite_constraints_with_replacements(constraints, replacements)
|
|
1023
|
+
|
|
1024
|
+
# discover more equivalence relations
|
|
1025
|
+
eq_constraints = self._discover_equivalence(degraded_constraints)
|
|
1026
|
+
_l.debug("Discovered %d equivalence constraints from degraded constraints.", len(eq_constraints))
|
|
1027
|
+
if eq_constraints:
|
|
1028
|
+
degraded_constraints, eq_replacements = self._handle_equivalence(degraded_constraints | eq_constraints)
|
|
1029
|
+
self._equivalence |= eq_replacements
|
|
1030
|
+
|
|
1031
|
+
# filter them
|
|
1032
|
+
degraded_constraints = self._filter_constraints(degraded_constraints)
|
|
1033
|
+
|
|
1034
|
+
self._equivalence |= replacements
|
|
1035
|
+
return degraded_constraints
|
|
834
1036
|
|
|
835
1037
|
def _convert_arrays(self, constraints):
|
|
836
1038
|
for constraint in constraints:
|
|
@@ -860,7 +1062,7 @@ class SimpleSolver:
|
|
|
860
1062
|
@staticmethod
|
|
861
1063
|
def _generate_constraint_subset(
|
|
862
1064
|
constraints: set[TypeConstraint], typevars: set[TypeVariable]
|
|
863
|
-
) -> set[TypeConstraint]:
|
|
1065
|
+
) -> tuple[set[TypeConstraint], set[TypeVariable]]:
|
|
864
1066
|
subset = set()
|
|
865
1067
|
related_typevars = set(typevars)
|
|
866
1068
|
while True:
|
|
@@ -890,7 +1092,7 @@ class SimpleSolver:
|
|
|
890
1092
|
if not new:
|
|
891
1093
|
break
|
|
892
1094
|
subset |= new
|
|
893
|
-
return subset
|
|
1095
|
+
return subset, related_typevars
|
|
894
1096
|
|
|
895
1097
|
def _generate_constraint_graph(
|
|
896
1098
|
self, constraints: set[TypeConstraint], interesting_variables: set[DerivedTypeVariable]
|
|
@@ -40,6 +40,7 @@ class Typehoon(Analysis):
|
|
|
40
40
|
must_struct: set[TypeVariable] | None = None,
|
|
41
41
|
stackvar_max_sizes: dict[TypeVariable, int] | None = None,
|
|
42
42
|
stack_offset_tvs: dict[int, TypeVariable] | None = None,
|
|
43
|
+
constraint_set_degradation_threshold: int = 150,
|
|
43
44
|
):
|
|
44
45
|
"""
|
|
45
46
|
|
|
@@ -57,6 +58,7 @@ class Typehoon(Analysis):
|
|
|
57
58
|
self._must_struct = must_struct
|
|
58
59
|
self._stackvar_max_sizes = stackvar_max_sizes if stackvar_max_sizes is not None else {}
|
|
59
60
|
self._stack_offset_tvs = stack_offset_tvs if stack_offset_tvs is not None else {}
|
|
61
|
+
self._constraint_set_degradation_threshold = constraint_set_degradation_threshold
|
|
60
62
|
|
|
61
63
|
self.bits = self.project.arch.bits
|
|
62
64
|
self.solution = None
|
|
@@ -193,7 +195,7 @@ class Typehoon(Analysis):
|
|
|
193
195
|
self.simtypes_solution.update(self._ground_truth)
|
|
194
196
|
|
|
195
197
|
@staticmethod
|
|
196
|
-
def _resolve_derived(tv):
|
|
198
|
+
def _resolve_derived(tv: TypeVariable | DerivedTypeVariable) -> TypeVariable:
|
|
197
199
|
return tv.type_var if isinstance(tv, DerivedTypeVariable) else tv
|
|
198
200
|
|
|
199
201
|
def _solve(self):
|
|
@@ -211,7 +213,13 @@ class Typehoon(Analysis):
|
|
|
211
213
|
if isinstance(constraint.super_type, TypeVariable):
|
|
212
214
|
typevars.add(self._resolve_derived(constraint.super_type))
|
|
213
215
|
|
|
214
|
-
solver = SimpleSolver(
|
|
216
|
+
solver = SimpleSolver(
|
|
217
|
+
self.bits,
|
|
218
|
+
self._constraints,
|
|
219
|
+
typevars,
|
|
220
|
+
stackvar_max_sizes=self._stackvar_max_sizes,
|
|
221
|
+
constraint_set_degradation_threshold=self._constraint_set_degradation_threshold,
|
|
222
|
+
)
|
|
215
223
|
self.solution = solver.solution
|
|
216
224
|
self.processed_constraints_count = solver.processed_constraints_count
|
|
217
225
|
self.eqclass_constraints_count = solver.eqclass_constraints_count
|
|
@@ -633,10 +633,7 @@ class SimEngineVRAIL(
|
|
|
633
633
|
if not r1.data.concrete:
|
|
634
634
|
# we don't support symbolic shiftamount
|
|
635
635
|
r = self.state.top(result_size)
|
|
636
|
-
return RichR(
|
|
637
|
-
r,
|
|
638
|
-
typevar=r0.typevar,
|
|
639
|
-
)
|
|
636
|
+
return RichR(r)
|
|
640
637
|
|
|
641
638
|
shiftamount = r1.data.concrete_value
|
|
642
639
|
return RichR(r0.data << shiftamount, typevar=typeconsts.int_type(result_size), type_constraints=None)
|
|
@@ -651,10 +648,7 @@ class SimEngineVRAIL(
|
|
|
651
648
|
if not r1.data.concrete:
|
|
652
649
|
# we don't support symbolic shiftamount
|
|
653
650
|
r = self.state.top(result_size)
|
|
654
|
-
return RichR(
|
|
655
|
-
r,
|
|
656
|
-
typevar=r0.typevar,
|
|
657
|
-
)
|
|
651
|
+
return RichR(r)
|
|
658
652
|
|
|
659
653
|
shiftamount = r1.data.concrete_value
|
|
660
654
|
|
|
@@ -672,10 +666,7 @@ class SimEngineVRAIL(
|
|
|
672
666
|
if not r1.data.concrete:
|
|
673
667
|
# we don't support symbolic shiftamount
|
|
674
668
|
r = self.state.top(result_size)
|
|
675
|
-
return RichR(
|
|
676
|
-
r,
|
|
677
|
-
typevar=r0.typevar,
|
|
678
|
-
)
|
|
669
|
+
return RichR(r)
|
|
679
670
|
|
|
680
671
|
shiftamount = r1.data.concrete_value
|
|
681
672
|
|
|
@@ -691,10 +682,7 @@ class SimEngineVRAIL(
|
|
|
691
682
|
if not r1.data.concrete:
|
|
692
683
|
# we don't support symbolic shiftamount
|
|
693
684
|
r = self.state.top(result_size)
|
|
694
|
-
return RichR(
|
|
695
|
-
r,
|
|
696
|
-
typevar=r0.typevar,
|
|
697
|
-
)
|
|
685
|
+
return RichR(r)
|
|
698
686
|
|
|
699
687
|
shiftamount = r1.data.concrete_value
|
|
700
688
|
|
|
@@ -761,22 +749,22 @@ class SimEngineVRAIL(
|
|
|
761
749
|
def _handle_binop_Rol(self, expr):
|
|
762
750
|
arg0, arg1 = expr.operands
|
|
763
751
|
|
|
764
|
-
|
|
752
|
+
_ = self._expr_bv(arg0)
|
|
765
753
|
_ = self._expr_bv(arg1)
|
|
766
754
|
result_size = arg0.bits
|
|
767
755
|
|
|
768
756
|
r = self.state.top(result_size)
|
|
769
|
-
return RichR(r
|
|
757
|
+
return RichR(r)
|
|
770
758
|
|
|
771
759
|
def _handle_binop_Ror(self, expr):
|
|
772
760
|
arg0, arg1 = expr.operands
|
|
773
761
|
|
|
774
|
-
|
|
762
|
+
_ = self._expr_bv(arg0)
|
|
775
763
|
_ = self._expr_bv(arg1)
|
|
776
764
|
result_size = arg0.bits
|
|
777
765
|
|
|
778
766
|
r = self.state.top(result_size)
|
|
779
|
-
return RichR(r
|
|
767
|
+
return RichR(r)
|
|
780
768
|
|
|
781
769
|
def _handle_binop_Concat(self, expr):
|
|
782
770
|
arg0, arg1 = expr.operands
|
|
@@ -394,14 +394,14 @@ class _VexArchInfo(ctypes.Structure):
|
|
|
394
394
|
|
|
395
395
|
def _load_native():
|
|
396
396
|
if sys.platform == "darwin":
|
|
397
|
-
libfile = "
|
|
397
|
+
libfile = "unicornlib.dylib"
|
|
398
398
|
elif sys.platform in {"win32", "cygwin"}:
|
|
399
|
-
libfile = "
|
|
399
|
+
libfile = "unicornlib.dll"
|
|
400
400
|
else:
|
|
401
|
-
libfile = "
|
|
401
|
+
libfile = "unicornlib.so"
|
|
402
402
|
|
|
403
403
|
try:
|
|
404
|
-
angr_path = str(importlib.resources.files("angr") /
|
|
404
|
+
angr_path = str(importlib.resources.files("angr") / libfile)
|
|
405
405
|
h = ctypes.CDLL(angr_path)
|
|
406
406
|
|
|
407
407
|
VexArch = ctypes.c_int
|