angr 9.2.116__py3-none-win_amd64.whl → 9.2.118__py3-none-win_amd64.whl
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/__init__.py +2 -1
- angr/__main__.py +21 -1
- angr/analyses/__init__.py +4 -0
- angr/analyses/analysis.py +45 -45
- angr/analyses/backward_slice.py +15 -18
- angr/analyses/binary_optimizer.py +29 -34
- angr/analyses/bindiff.py +35 -44
- angr/analyses/boyscout.py +1 -0
- angr/analyses/callee_cleanup_finder.py +3 -4
- angr/analyses/calling_convention.py +98 -98
- angr/analyses/cdg.py +5 -12
- angr/analyses/cfg/__init__.py +1 -0
- angr/analyses/cfg/cfb.py +14 -20
- angr/analyses/cfg/cfg.py +2 -1
- angr/analyses/cfg/cfg_arch_options.py +4 -1
- angr/analyses/cfg/cfg_base.py +122 -165
- angr/analyses/cfg/cfg_emulated.py +64 -96
- angr/analyses/cfg/cfg_fast.py +273 -314
- angr/analyses/cfg/cfg_fast_soot.py +10 -17
- angr/analyses/cfg/cfg_job_base.py +6 -7
- angr/analyses/cfg/indirect_jump_resolvers/__init__.py +1 -0
- angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +2 -3
- angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +2 -3
- angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +6 -8
- angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +3 -5
- angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +1 -0
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +104 -119
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +29 -34
- angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +1 -0
- angr/analyses/cfg/indirect_jump_resolvers/resolver.py +7 -7
- angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +3 -8
- angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +2 -3
- angr/analyses/cfg_slice_to_sink/__init__.py +1 -0
- angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +4 -4
- angr/analyses/cfg_slice_to_sink/graph.py +4 -1
- angr/analyses/cfg_slice_to_sink/transitions.py +4 -2
- angr/analyses/class_identifier.py +1 -0
- angr/analyses/code_tagging.py +9 -9
- angr/analyses/complete_calling_conventions.py +28 -36
- angr/analyses/congruency_check.py +6 -11
- angr/analyses/data_dep/__init__.py +1 -0
- angr/analyses/data_dep/data_dependency_analysis.py +38 -48
- angr/analyses/data_dep/dep_nodes.py +13 -12
- angr/analyses/data_dep/sim_act_location.py +3 -0
- angr/analyses/datagraph_meta.py +7 -7
- angr/analyses/ddg.py +48 -69
- angr/analyses/decompiler/__init__.py +3 -0
- angr/analyses/decompiler/ail_simplifier.py +929 -400
- angr/analyses/decompiler/ailgraph_walker.py +1 -0
- angr/analyses/decompiler/block_io_finder.py +13 -4
- angr/analyses/decompiler/block_similarity.py +28 -18
- angr/analyses/decompiler/block_simplifier.py +40 -104
- angr/analyses/decompiler/callsite_maker.py +124 -82
- angr/analyses/decompiler/ccall_rewriters/__init__.py +1 -0
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +115 -105
- angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +2 -1
- angr/analyses/decompiler/clinic.py +348 -172
- angr/analyses/decompiler/condition_processor.py +86 -100
- angr/analyses/decompiler/counters/__init__.py +5 -0
- angr/analyses/decompiler/counters/boolean_counter.py +27 -0
- angr/analyses/decompiler/{call_counter.py → counters/call_counter.py} +5 -4
- angr/analyses/decompiler/{expression_counters.py → counters/expression_counters.py} +5 -4
- angr/analyses/decompiler/counters/seq_cf_structure_counter.py +63 -0
- angr/analyses/decompiler/decompilation_cache.py +2 -1
- angr/analyses/decompiler/decompilation_options.py +1 -0
- angr/analyses/decompiler/decompiler.py +47 -27
- angr/analyses/decompiler/dephication/__init__.py +6 -0
- angr/analyses/decompiler/dephication/dephication_base.py +87 -0
- angr/analyses/decompiler/dephication/graph_dephication.py +63 -0
- angr/analyses/decompiler/dephication/graph_rewriting.py +116 -0
- angr/analyses/decompiler/dephication/graph_vvar_mapping.py +313 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +247 -0
- angr/analyses/decompiler/dephication/seqnode_dephication.py +106 -0
- angr/analyses/decompiler/empty_node_remover.py +1 -0
- angr/analyses/decompiler/expression_narrower.py +12 -17
- angr/analyses/decompiler/goto_manager.py +43 -4
- angr/analyses/decompiler/graph_region.py +19 -31
- angr/analyses/decompiler/jump_target_collector.py +1 -0
- angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +1 -0
- angr/analyses/decompiler/optimization_passes/__init__.py +7 -3
- angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +23 -18
- angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py +46 -0
- angr/analyses/decompiler/optimization_passes/code_motion.py +4 -2
- angr/analyses/decompiler/optimization_passes/const_derefs.py +36 -36
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +6 -9
- angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +4 -3
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +1 -0
- angr/analyses/decompiler/optimization_passes/div_simplifier.py +78 -72
- angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py +2 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py +500 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +1211 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py +16 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py +126 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py +169 -0
- angr/analyses/decompiler/optimization_passes/engine_base.py +60 -63
- angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +6 -7
- angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +1 -0
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +88 -23
- angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +8 -10
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +128 -18
- angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +142 -145
- angr/analyses/decompiler/optimization_passes/mod_simplifier.py +27 -23
- angr/analyses/decompiler/optimization_passes/multi_simplifier.py +30 -34
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +108 -47
- angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +10 -3
- angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +5 -6
- angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +3 -2
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +125 -13
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +1 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +3 -2
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +52 -21
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +3 -2
- angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +47 -36
- angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +2 -1
- angr/analyses/decompiler/peephole_optimizations/__init__.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +26 -22
- angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +8 -4
- angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +28 -27
- angr/analyses/decompiler/peephole_optimizations/base.py +17 -20
- angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/bswap.py +29 -22
- angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +3 -4
- angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py +39 -0
- angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +2 -1
- angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +94 -29
- angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +48 -49
- angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +41 -34
- angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +2 -1
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +28 -18
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +8 -4
- angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +28 -18
- angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +32 -32
- angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +23 -3
- angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +2 -1
- angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +4 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +4 -6
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +14 -13
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +3 -2
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +20 -16
- angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +3 -3
- angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +4 -2
- angr/analyses/decompiler/peephole_optimizations/rol_ror.py +66 -40
- angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +64 -57
- angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +14 -14
- angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +8 -5
- angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +4 -6
- angr/analyses/decompiler/redundant_label_remover.py +20 -19
- angr/analyses/decompiler/region_identifier.py +64 -77
- angr/analyses/decompiler/region_simplifiers/__init__.py +1 -0
- angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +2 -1
- angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +1 -0
- angr/analyses/decompiler/region_simplifiers/expr_folding.py +43 -29
- angr/analyses/decompiler/region_simplifiers/goto.py +1 -0
- angr/analyses/decompiler/region_simplifiers/if_.py +29 -36
- angr/analyses/decompiler/region_simplifiers/ifelse.py +1 -0
- angr/analyses/decompiler/region_simplifiers/loop.py +27 -13
- angr/analyses/decompiler/region_simplifiers/node_address_finder.py +1 -0
- angr/analyses/decompiler/region_simplifiers/region_simplifier.py +1 -0
- angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +12 -16
- angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +36 -32
- angr/analyses/decompiler/region_walker.py +1 -0
- angr/analyses/decompiler/return_maker.py +1 -0
- angr/analyses/decompiler/seq_to_blocks.py +1 -0
- angr/analyses/decompiler/sequence_walker.py +5 -10
- angr/analyses/decompiler/ssailification/__init__.py +4 -0
- angr/analyses/decompiler/ssailification/rewriting.py +325 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +601 -0
- angr/analyses/decompiler/ssailification/rewriting_state.py +60 -0
- angr/analyses/decompiler/ssailification/ssailification.py +213 -0
- angr/analyses/decompiler/ssailification/traversal.py +97 -0
- angr/analyses/decompiler/ssailification/traversal_engine.py +131 -0
- angr/analyses/decompiler/ssailification/traversal_state.py +42 -0
- angr/analyses/decompiler/structured_codegen/__init__.py +1 -0
- angr/analyses/decompiler/structured_codegen/base.py +2 -2
- angr/analyses/decompiler/structured_codegen/c.py +163 -158
- angr/analyses/decompiler/structured_codegen/dummy.py +1 -0
- angr/analyses/decompiler/structured_codegen/dwarf_import.py +1 -0
- angr/analyses/decompiler/structuring/__init__.py +1 -0
- angr/analyses/decompiler/structuring/dream.py +19 -36
- angr/analyses/decompiler/structuring/phoenix.py +199 -199
- angr/analyses/decompiler/structuring/recursive_structurer.py +4 -3
- angr/analyses/decompiler/structuring/sailr.py +5 -4
- angr/analyses/decompiler/structuring/structurer_base.py +26 -23
- angr/analyses/decompiler/structuring/structurer_nodes.py +14 -24
- angr/analyses/decompiler/utils.py +112 -52
- angr/analyses/disassembly.py +75 -77
- angr/analyses/disassembly_utils.py +10 -13
- angr/analyses/dominance_frontier.py +25 -7
- angr/analyses/find_objects_static.py +3 -2
- angr/analyses/flirt.py +7 -10
- angr/analyses/forward_analysis/__init__.py +1 -0
- angr/analyses/forward_analysis/forward_analysis.py +9 -6
- angr/analyses/forward_analysis/job_info.py +3 -3
- angr/analyses/forward_analysis/visitors/__init__.py +1 -0
- angr/analyses/forward_analysis/visitors/call_graph.py +1 -0
- angr/analyses/forward_analysis/visitors/function_graph.py +3 -2
- angr/analyses/forward_analysis/visitors/graph.py +9 -9
- angr/analyses/forward_analysis/visitors/loop.py +1 -0
- angr/analyses/forward_analysis/visitors/single_node_graph.py +2 -2
- angr/analyses/identifier/__init__.py +1 -0
- angr/analyses/identifier/custom_callable.py +2 -2
- angr/analyses/identifier/errors.py +1 -0
- angr/analyses/identifier/func.py +6 -3
- angr/analyses/identifier/functions/__init__.py +2 -1
- angr/analyses/identifier/functions/atoi.py +2 -4
- angr/analyses/identifier/functions/based_atoi.py +3 -6
- angr/analyses/identifier/functions/fdprintf.py +1 -0
- angr/analyses/identifier/functions/free.py +6 -6
- angr/analyses/identifier/functions/int2str.py +11 -26
- angr/analyses/identifier/functions/malloc.py +4 -6
- angr/analyses/identifier/functions/memcmp.py +2 -4
- angr/analyses/identifier/functions/memcpy.py +2 -2
- angr/analyses/identifier/functions/memset.py +2 -2
- angr/analyses/identifier/functions/printf.py +1 -0
- angr/analyses/identifier/functions/recv_until.py +3 -6
- angr/analyses/identifier/functions/skip_calloc.py +2 -1
- angr/analyses/identifier/functions/skip_realloc.py +4 -6
- angr/analyses/identifier/functions/skip_recv_n.py +4 -6
- angr/analyses/identifier/functions/snprintf.py +2 -4
- angr/analyses/identifier/functions/sprintf.py +1 -0
- angr/analyses/identifier/functions/strcasecmp.py +1 -0
- angr/analyses/identifier/functions/strcmp.py +2 -1
- angr/analyses/identifier/functions/strcpy.py +2 -2
- angr/analyses/identifier/functions/strlen.py +1 -0
- angr/analyses/identifier/functions/strncmp.py +2 -1
- angr/analyses/identifier/functions/strncpy.py +2 -2
- angr/analyses/identifier/functions/strtol.py +2 -4
- angr/analyses/identifier/identify.py +46 -67
- angr/analyses/identifier/runner.py +8 -7
- angr/analyses/init_finder.py +17 -17
- angr/analyses/loop_analysis.py +10 -14
- angr/analyses/loopfinder.py +9 -13
- angr/analyses/propagator/__init__.py +1 -0
- angr/analyses/propagator/engine_ail.py +159 -165
- angr/analyses/propagator/engine_base.py +3 -2
- angr/analyses/propagator/engine_vex.py +47 -48
- angr/analyses/propagator/outdated_definition_walker.py +18 -23
- angr/analyses/propagator/propagator.py +8 -12
- angr/analyses/propagator/tmpvar_finder.py +1 -0
- angr/analyses/propagator/top_checker_mixin.py +2 -4
- angr/analyses/propagator/values.py +1 -0
- angr/analyses/propagator/vex_vars.py +3 -2
- angr/analyses/proximity_graph.py +12 -20
- angr/analyses/reaching_definitions/__init__.py +5 -4
- angr/analyses/reaching_definitions/call_trace.py +7 -6
- angr/analyses/reaching_definitions/dep_graph.py +18 -23
- angr/analyses/reaching_definitions/engine_ail.py +89 -121
- angr/analyses/reaching_definitions/engine_vex.py +20 -32
- angr/analyses/reaching_definitions/function_handler.py +32 -33
- angr/analyses/reaching_definitions/function_handler_library/__init__.py +1 -0
- angr/analyses/reaching_definitions/function_handler_library/stdio.py +4 -6
- angr/analyses/reaching_definitions/function_handler_library/stdlib.py +1 -2
- angr/analyses/reaching_definitions/function_handler_library/string.py +2 -4
- angr/analyses/reaching_definitions/function_handler_library/unistd.py +1 -0
- angr/analyses/reaching_definitions/heap_allocator.py +7 -6
- angr/analyses/reaching_definitions/rd_initializer.py +27 -25
- angr/analyses/reaching_definitions/rd_state.py +14 -16
- angr/analyses/reaching_definitions/reaching_definitions.py +27 -36
- angr/analyses/reaching_definitions/subject.py +3 -2
- angr/analyses/reassembler.py +189 -253
- angr/analyses/s_liveness/__init__.py +2 -0
- angr/analyses/s_liveness/s_liveness.py +153 -0
- angr/analyses/s_propagator/__init__.py +2 -0
- angr/analyses/s_propagator/s_propagator.py +250 -0
- angr/analyses/s_reaching_definitions/__init__.py +2 -0
- angr/analyses/s_reaching_definitions/s_rda.py +479 -0
- angr/analyses/soot_class_hierarchy.py +15 -24
- angr/analyses/stack_pointer_tracker.py +83 -93
- angr/analyses/static_hooker.py +3 -2
- angr/analyses/typehoon/__init__.py +1 -0
- angr/analyses/typehoon/dfa.py +5 -5
- angr/analyses/typehoon/lifter.py +5 -4
- angr/analyses/typehoon/simple_solver.py +80 -64
- angr/analyses/typehoon/translator.py +7 -14
- angr/analyses/typehoon/typeconsts.py +14 -12
- angr/analyses/typehoon/typehoon.py +8 -10
- angr/analyses/typehoon/typevars.py +37 -49
- angr/analyses/typehoon/variance.py +1 -0
- angr/analyses/variable_recovery/__init__.py +1 -0
- angr/analyses/variable_recovery/annotations.py +1 -0
- angr/analyses/variable_recovery/engine_ail.py +78 -32
- angr/analyses/variable_recovery/engine_base.py +233 -59
- angr/analyses/variable_recovery/engine_vex.py +10 -11
- angr/analyses/variable_recovery/irsb_scanner.py +1 -0
- angr/analyses/variable_recovery/variable_recovery.py +14 -16
- angr/analyses/variable_recovery/variable_recovery_base.py +12 -14
- angr/analyses/variable_recovery/variable_recovery_fast.py +67 -47
- angr/analyses/veritesting.py +10 -16
- angr/analyses/vfg.py +105 -151
- angr/analyses/vsa_ddg.py +3 -5
- angr/analyses/vtable.py +6 -6
- angr/analyses/xrefs.py +9 -13
- angr/angrdb/__init__.py +4 -2
- angr/angrdb/db.py +51 -53
- angr/angrdb/models.py +1 -0
- angr/angrdb/serializers/__init__.py +1 -0
- angr/angrdb/serializers/cfg_model.py +2 -2
- angr/angrdb/serializers/comments.py +1 -0
- angr/angrdb/serializers/funcs.py +4 -3
- angr/angrdb/serializers/kb.py +3 -2
- angr/angrdb/serializers/labels.py +1 -0
- angr/angrdb/serializers/structured_code.py +5 -10
- angr/angrdb/serializers/variables.py +6 -6
- angr/angrdb/serializers/xrefs.py +2 -2
- angr/annocfg.py +17 -25
- angr/blade.py +19 -23
- angr/block.py +11 -13
- angr/callable.py +4 -3
- angr/calling_conventions.py +80 -123
- angr/code_location.py +12 -13
- angr/codenode.py +2 -1
- angr/concretization_strategies/__init__.py +6 -6
- angr/concretization_strategies/any.py +5 -4
- angr/concretization_strategies/any_named.py +4 -1
- angr/concretization_strategies/controlled_data.py +5 -2
- angr/concretization_strategies/eval.py +2 -2
- angr/concretization_strategies/logging.py +1 -0
- angr/concretization_strategies/max.py +6 -6
- angr/concretization_strategies/nonzero.py +1 -0
- angr/concretization_strategies/nonzero_range.py +4 -3
- angr/concretization_strategies/norepeats.py +2 -1
- angr/concretization_strategies/norepeats_range.py +1 -0
- angr/concretization_strategies/range.py +1 -0
- angr/concretization_strategies/signed_add.py +15 -9
- angr/concretization_strategies/single.py +2 -0
- angr/concretization_strategies/solutions.py +1 -0
- angr/concretization_strategies/unlimited_range.py +1 -0
- angr/distributed/__init__.py +1 -0
- angr/distributed/server.py +2 -2
- angr/distributed/worker.py +3 -3
- angr/engines/__init__.py +1 -0
- angr/engines/concrete.py +4 -1
- angr/engines/engine.py +4 -6
- angr/engines/failure.py +2 -1
- angr/engines/hook.py +1 -0
- angr/engines/light/__init__.py +1 -0
- angr/engines/light/data.py +221 -255
- angr/engines/light/engine.py +66 -74
- angr/engines/pcode/__init__.py +1 -0
- angr/engines/pcode/behavior.py +5 -3
- angr/engines/pcode/cc.py +1 -0
- angr/engines/pcode/emulate.py +16 -19
- angr/engines/pcode/engine.py +8 -10
- angr/engines/pcode/lifter.py +62 -79
- angr/engines/procedure.py +1 -0
- angr/engines/soot/__init__.py +1 -0
- angr/engines/soot/engine.py +48 -53
- angr/engines/soot/exceptions.py +3 -0
- angr/engines/soot/expressions/__init__.py +1 -0
- angr/engines/soot/expressions/arrayref.py +1 -0
- angr/engines/soot/expressions/base.py +4 -5
- angr/engines/soot/expressions/binop.py +1 -0
- angr/engines/soot/expressions/cast.py +1 -0
- angr/engines/soot/expressions/condition.py +1 -0
- angr/engines/soot/expressions/constants.py +7 -5
- angr/engines/soot/expressions/instanceOf.py +1 -0
- angr/engines/soot/expressions/instancefieldref.py +1 -0
- angr/engines/soot/expressions/invoke.py +7 -9
- angr/engines/soot/expressions/length.py +1 -0
- angr/engines/soot/expressions/local.py +1 -0
- angr/engines/soot/expressions/new.py +1 -0
- angr/engines/soot/expressions/newArray.py +4 -1
- angr/engines/soot/expressions/newMultiArray.py +6 -4
- angr/engines/soot/expressions/paramref.py +1 -0
- angr/engines/soot/expressions/phi.py +1 -0
- angr/engines/soot/expressions/staticfieldref.py +1 -0
- angr/engines/soot/expressions/thisref.py +1 -0
- angr/engines/soot/expressions/unsupported.py +1 -0
- angr/engines/soot/field_dispatcher.py +5 -8
- angr/engines/soot/method_dispatcher.py +4 -7
- angr/engines/soot/statements/__init__.py +4 -4
- angr/engines/soot/statements/assign.py +1 -0
- angr/engines/soot/statements/base.py +6 -7
- angr/engines/soot/statements/goto.py +4 -1
- angr/engines/soot/statements/identity.py +1 -0
- angr/engines/soot/statements/if_.py +4 -1
- angr/engines/soot/statements/invoke.py +1 -0
- angr/engines/soot/statements/return_.py +1 -0
- angr/engines/soot/statements/switch.py +4 -1
- angr/engines/soot/statements/throw.py +5 -2
- angr/engines/soot/values/__init__.py +4 -2
- angr/engines/soot/values/arrayref.py +13 -15
- angr/engines/soot/values/base.py +4 -1
- angr/engines/soot/values/constants.py +1 -0
- angr/engines/soot/values/instancefieldref.py +1 -0
- angr/engines/soot/values/local.py +1 -0
- angr/engines/soot/values/paramref.py +1 -0
- angr/engines/soot/values/staticfieldref.py +1 -0
- angr/engines/soot/values/strref.py +3 -2
- angr/engines/soot/values/thisref.py +1 -0
- angr/engines/successors.py +20 -23
- angr/engines/syscall.py +9 -9
- angr/engines/unicorn.py +20 -14
- angr/engines/vex/__init__.py +1 -0
- angr/engines/vex/claripy/__init__.py +1 -0
- angr/engines/vex/claripy/ccall.py +86 -112
- angr/engines/vex/claripy/datalayer.py +12 -16
- angr/engines/vex/claripy/irop.py +85 -104
- angr/engines/vex/heavy/__init__.py +1 -0
- angr/engines/vex/heavy/actions.py +1 -0
- angr/engines/vex/heavy/concretizers.py +14 -15
- angr/engines/vex/heavy/dirty.py +20 -21
- angr/engines/vex/heavy/heavy.py +17 -20
- angr/engines/vex/heavy/inspect.py +1 -0
- angr/engines/vex/heavy/resilience.py +2 -2
- angr/engines/vex/heavy/super_fastpath.py +2 -2
- angr/engines/vex/lifter.py +28 -35
- angr/engines/vex/light/__init__.py +1 -0
- angr/engines/vex/light/light.py +2 -4
- angr/engines/vex/light/resilience.py +1 -0
- angr/engines/vex/light/slicing.py +1 -0
- angr/errors.py +2 -1
- angr/exploration_techniques/__init__.py +3 -2
- angr/exploration_techniques/bucketizer.py +2 -3
- angr/exploration_techniques/common.py +3 -3
- angr/exploration_techniques/dfs.py +1 -0
- angr/exploration_techniques/director.py +18 -20
- angr/exploration_techniques/driller_core.py +5 -6
- angr/exploration_techniques/explorer.py +7 -3
- angr/exploration_techniques/lengthlimiter.py +1 -0
- angr/exploration_techniques/local_loop_seer.py +2 -2
- angr/exploration_techniques/loop_seer.py +11 -14
- angr/exploration_techniques/manual_mergepoint.py +3 -2
- angr/exploration_techniques/memory_watcher.py +1 -0
- angr/exploration_techniques/oppologist.py +4 -4
- angr/exploration_techniques/slicecutor.py +1 -0
- angr/exploration_techniques/spiller.py +8 -8
- angr/exploration_techniques/spiller_db.py +1 -0
- angr/exploration_techniques/stochastic.py +3 -4
- angr/exploration_techniques/stub_stasher.py +1 -0
- angr/exploration_techniques/suggestions.py +3 -2
- angr/exploration_techniques/symbion.py +1 -0
- angr/exploration_techniques/tech_builder.py +1 -0
- angr/exploration_techniques/threading.py +1 -0
- angr/exploration_techniques/timeout.py +1 -0
- angr/exploration_techniques/tracer.py +36 -40
- angr/exploration_techniques/unique.py +1 -0
- angr/exploration_techniques/veritesting.py +1 -0
- angr/factory.py +9 -9
- angr/flirt/__init__.py +1 -0
- angr/flirt/build_sig.py +8 -12
- angr/keyed_region.py +10 -17
- angr/knowledge_base/__init__.py +1 -0
- angr/knowledge_base/knowledge_base.py +17 -17
- angr/knowledge_plugins/__init__.py +1 -0
- angr/knowledge_plugins/callsite_prototypes.py +1 -0
- angr/knowledge_plugins/cfg/__init__.py +2 -0
- angr/knowledge_plugins/cfg/cfg_manager.py +2 -1
- angr/knowledge_plugins/cfg/cfg_model.py +25 -42
- angr/knowledge_plugins/cfg/cfg_node.py +8 -19
- angr/knowledge_plugins/cfg/indirect_jump.py +3 -5
- angr/knowledge_plugins/cfg/memory_data.py +3 -3
- angr/knowledge_plugins/comments.py +1 -0
- angr/knowledge_plugins/custom_strings.py +1 -0
- angr/knowledge_plugins/data.py +1 -0
- angr/knowledge_plugins/debug_variables.py +18 -23
- angr/knowledge_plugins/functions/__init__.py +1 -0
- angr/knowledge_plugins/functions/function.py +49 -53
- angr/knowledge_plugins/functions/function_manager.py +14 -14
- angr/knowledge_plugins/functions/function_parser.py +38 -42
- angr/knowledge_plugins/functions/soot_function.py +5 -6
- angr/knowledge_plugins/indirect_jumps.py +1 -0
- angr/knowledge_plugins/key_definitions/__init__.py +1 -0
- angr/knowledge_plugins/key_definitions/atoms.py +65 -17
- angr/knowledge_plugins/key_definitions/constants.py +6 -0
- angr/knowledge_plugins/key_definitions/definition.py +22 -25
- angr/knowledge_plugins/key_definitions/environment.py +18 -14
- angr/knowledge_plugins/key_definitions/heap_address.py +4 -3
- angr/knowledge_plugins/key_definitions/key_definition_manager.py +5 -4
- angr/knowledge_plugins/key_definitions/live_definitions.py +36 -45
- angr/knowledge_plugins/key_definitions/liveness.py +18 -23
- angr/knowledge_plugins/key_definitions/rd_model.py +29 -34
- angr/knowledge_plugins/key_definitions/tag.py +7 -6
- angr/knowledge_plugins/key_definitions/undefined.py +3 -0
- angr/knowledge_plugins/key_definitions/unknown_size.py +3 -0
- angr/knowledge_plugins/key_definitions/uses.py +21 -23
- angr/knowledge_plugins/labels.py +3 -2
- angr/knowledge_plugins/patches.py +2 -1
- angr/knowledge_plugins/plugin.py +2 -1
- angr/knowledge_plugins/propagations/__init__.py +1 -0
- angr/knowledge_plugins/propagations/prop_value.py +25 -27
- angr/knowledge_plugins/propagations/propagation_manager.py +2 -2
- angr/knowledge_plugins/propagations/propagation_model.py +5 -4
- angr/knowledge_plugins/propagations/states.py +71 -81
- angr/knowledge_plugins/structured_code/__init__.py +1 -0
- angr/knowledge_plugins/structured_code/manager.py +5 -4
- angr/knowledge_plugins/sync/__init__.py +1 -0
- angr/knowledge_plugins/sync/sync_controller.py +10 -15
- angr/knowledge_plugins/types.py +1 -0
- angr/knowledge_plugins/variables/__init__.py +1 -0
- angr/knowledge_plugins/variables/variable_access.py +9 -10
- angr/knowledge_plugins/variables/variable_manager.py +84 -55
- angr/knowledge_plugins/xrefs/__init__.py +1 -0
- angr/knowledge_plugins/xrefs/xref.py +7 -11
- angr/knowledge_plugins/xrefs/xref_manager.py +1 -0
- angr/knowledge_plugins/xrefs/xref_types.py +3 -0
- angr/lib/angr_native.dll +0 -0
- angr/misc/__init__.py +1 -0
- angr/misc/ansi.py +1 -0
- angr/misc/autoimport.py +3 -2
- angr/misc/bug_report.py +6 -5
- angr/misc/hookset.py +3 -2
- angr/misc/loggers.py +2 -2
- angr/misc/picklable_lock.py +1 -0
- angr/misc/plugins.py +11 -13
- angr/misc/range.py +3 -0
- angr/misc/testing.py +2 -1
- angr/misc/ux.py +5 -5
- angr/misc/weakpatch.py +1 -0
- angr/procedures/__init__.py +1 -0
- angr/procedures/cgc/_terminate.py +1 -0
- angr/procedures/cgc/allocate.py +9 -10
- angr/procedures/cgc/deallocate.py +11 -3
- angr/procedures/cgc/fdwait.py +16 -13
- angr/procedures/cgc/random.py +12 -5
- angr/procedures/cgc/receive.py +30 -28
- angr/procedures/cgc/transmit.py +6 -4
- angr/procedures/definitions/__init__.py +9 -10
- angr/procedures/definitions/cgc.py +1 -0
- angr/procedures/definitions/glibc.py +1 -0
- angr/procedures/definitions/gnulib.py +1 -0
- angr/procedures/definitions/libstdcpp.py +1 -0
- angr/procedures/definitions/linux_kernel.py +1 -0
- angr/procedures/definitions/linux_loader.py +1 -0
- angr/procedures/definitions/msvcr.py +1 -0
- angr/procedures/definitions/parse_syscalls_from_local_system.py +2 -1
- angr/procedures/definitions/parse_win32json.py +27 -30
- angr/procedures/definitions/types_win32.py +1 -0
- angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +1 -0
- angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +1 -0
- angr/procedures/definitions/wdk_clfs.py +1 -0
- angr/procedures/definitions/wdk_fltmgr.py +1 -0
- angr/procedures/definitions/wdk_fwpkclnt.py +1 -0
- angr/procedures/definitions/wdk_fwpuclnt.py +1 -0
- angr/procedures/definitions/wdk_gdi32.py +1 -0
- angr/procedures/definitions/wdk_hal.py +1 -0
- angr/procedures/definitions/wdk_ksecdd.py +1 -0
- angr/procedures/definitions/wdk_ndis.py +1 -0
- angr/procedures/definitions/wdk_ntoskrnl.py +1 -0
- angr/procedures/definitions/wdk_offreg.py +1 -0
- angr/procedures/definitions/wdk_pshed.py +1 -0
- angr/procedures/definitions/wdk_secur32.py +1 -0
- angr/procedures/definitions/wdk_vhfum.py +1 -0
- angr/procedures/definitions/win32_aclui.py +1 -0
- angr/procedures/definitions/win32_activeds.py +1 -0
- angr/procedures/definitions/win32_advapi32.py +1 -0
- angr/procedures/definitions/win32_advpack.py +1 -0
- angr/procedures/definitions/win32_amsi.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +1 -0
- angr/procedures/definitions/win32_apphelp.py +1 -0
- angr/procedures/definitions/win32_authz.py +1 -0
- angr/procedures/definitions/win32_avicap32.py +1 -0
- angr/procedures/definitions/win32_avifil32.py +1 -0
- angr/procedures/definitions/win32_avrt.py +1 -0
- angr/procedures/definitions/win32_bcp47mrm.py +1 -0
- angr/procedures/definitions/win32_bcrypt.py +1 -0
- angr/procedures/definitions/win32_bcryptprimitives.py +1 -0
- angr/procedures/definitions/win32_bluetoothapis.py +1 -0
- angr/procedures/definitions/win32_bthprops.py +1 -0
- angr/procedures/definitions/win32_bthprops_cpl.py +1 -0
- angr/procedures/definitions/win32_cabinet.py +1 -0
- angr/procedures/definitions/win32_certadm.py +1 -0
- angr/procedures/definitions/win32_certpoleng.py +1 -0
- angr/procedures/definitions/win32_cfgmgr32.py +1 -0
- angr/procedures/definitions/win32_chakra.py +1 -0
- angr/procedures/definitions/win32_cldapi.py +1 -0
- angr/procedures/definitions/win32_clfsw32.py +1 -0
- angr/procedures/definitions/win32_clusapi.py +1 -0
- angr/procedures/definitions/win32_comctl32.py +1 -0
- angr/procedures/definitions/win32_comdlg32.py +1 -0
- angr/procedures/definitions/win32_compstui.py +1 -0
- angr/procedures/definitions/win32_computecore.py +1 -0
- angr/procedures/definitions/win32_computenetwork.py +1 -0
- angr/procedures/definitions/win32_computestorage.py +1 -0
- angr/procedures/definitions/win32_comsvcs.py +1 -0
- angr/procedures/definitions/win32_coremessaging.py +1 -0
- angr/procedures/definitions/win32_credui.py +1 -0
- angr/procedures/definitions/win32_crypt32.py +1 -0
- angr/procedures/definitions/win32_cryptnet.py +1 -0
- angr/procedures/definitions/win32_cryptui.py +1 -0
- angr/procedures/definitions/win32_cryptxml.py +1 -0
- angr/procedures/definitions/win32_cscapi.py +1 -0
- angr/procedures/definitions/win32_d2d1.py +1 -0
- angr/procedures/definitions/win32_d3d10.py +1 -0
- angr/procedures/definitions/win32_d3d10_1.py +1 -0
- angr/procedures/definitions/win32_d3d11.py +1 -0
- angr/procedures/definitions/win32_d3d12.py +1 -0
- angr/procedures/definitions/win32_d3d9.py +1 -0
- angr/procedures/definitions/win32_d3dcompiler_47.py +1 -0
- angr/procedures/definitions/win32_d3dcsx.py +1 -0
- angr/procedures/definitions/win32_davclnt.py +1 -0
- angr/procedures/definitions/win32_dbgeng.py +1 -0
- angr/procedures/definitions/win32_dbghelp.py +1 -0
- angr/procedures/definitions/win32_dbgmodel.py +1 -0
- angr/procedures/definitions/win32_dciman32.py +1 -0
- angr/procedures/definitions/win32_dcomp.py +1 -0
- angr/procedures/definitions/win32_ddraw.py +1 -0
- angr/procedures/definitions/win32_deviceaccess.py +1 -0
- angr/procedures/definitions/win32_dflayout.py +1 -0
- angr/procedures/definitions/win32_dhcpcsvc.py +1 -0
- angr/procedures/definitions/win32_dhcpcsvc6.py +1 -0
- angr/procedures/definitions/win32_dhcpsapi.py +1 -0
- angr/procedures/definitions/win32_diagnosticdataquery.py +1 -0
- angr/procedures/definitions/win32_dinput8.py +1 -0
- angr/procedures/definitions/win32_directml.py +1 -0
- angr/procedures/definitions/win32_dmprocessxmlfiltered.py +1 -0
- angr/procedures/definitions/win32_dnsapi.py +1 -0
- angr/procedures/definitions/win32_drt.py +1 -0
- angr/procedures/definitions/win32_drtprov.py +1 -0
- angr/procedures/definitions/win32_drttransport.py +1 -0
- angr/procedures/definitions/win32_dsound.py +1 -0
- angr/procedures/definitions/win32_dsparse.py +1 -0
- angr/procedures/definitions/win32_dsprop.py +1 -0
- angr/procedures/definitions/win32_dssec.py +1 -0
- angr/procedures/definitions/win32_dsuiext.py +1 -0
- angr/procedures/definitions/win32_dwmapi.py +1 -0
- angr/procedures/definitions/win32_dwrite.py +1 -0
- angr/procedures/definitions/win32_dxcompiler.py +1 -0
- angr/procedures/definitions/win32_dxcore.py +1 -0
- angr/procedures/definitions/win32_dxgi.py +1 -0
- angr/procedures/definitions/win32_dxva2.py +1 -0
- angr/procedures/definitions/win32_eappcfg.py +1 -0
- angr/procedures/definitions/win32_eappprxy.py +1 -0
- angr/procedures/definitions/win32_efswrt.py +1 -0
- angr/procedures/definitions/win32_elscore.py +1 -0
- angr/procedures/definitions/win32_esent.py +1 -0
- angr/procedures/definitions/win32_evr.py +1 -0
- angr/procedures/definitions/win32_faultrep.py +1 -0
- angr/procedures/definitions/win32_fhsvcctl.py +1 -0
- angr/procedures/definitions/win32_firewallapi.py +1 -0
- angr/procedures/definitions/win32_fltlib.py +1 -0
- angr/procedures/definitions/win32_fontsub.py +1 -0
- angr/procedures/definitions/win32_forceinline.py +1 -0
- angr/procedures/definitions/win32_fwpuclnt.py +1 -0
- angr/procedures/definitions/win32_fxsutility.py +1 -0
- angr/procedures/definitions/win32_gdi32.py +1 -0
- angr/procedures/definitions/win32_gdiplus.py +1 -0
- angr/procedures/definitions/win32_glu32.py +1 -0
- angr/procedures/definitions/win32_gpedit.py +1 -0
- angr/procedures/definitions/win32_hhctrl_ocx.py +1 -0
- angr/procedures/definitions/win32_hid.py +1 -0
- angr/procedures/definitions/win32_hlink.py +1 -0
- angr/procedures/definitions/win32_hrtfapo.py +1 -0
- angr/procedures/definitions/win32_httpapi.py +1 -0
- angr/procedures/definitions/win32_icm32.py +1 -0
- angr/procedures/definitions/win32_icmui.py +1 -0
- angr/procedures/definitions/win32_icu.py +1 -0
- angr/procedures/definitions/win32_ieframe.py +1 -0
- angr/procedures/definitions/win32_imagehlp.py +1 -0
- angr/procedures/definitions/win32_imgutil.py +1 -0
- angr/procedures/definitions/win32_imm32.py +1 -0
- angr/procedures/definitions/win32_infocardapi.py +1 -0
- angr/procedures/definitions/win32_inkobjcore.py +1 -0
- angr/procedures/definitions/win32_iphlpapi.py +1 -0
- angr/procedures/definitions/win32_iscsidsc.py +1 -0
- angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +1 -0
- angr/procedures/definitions/win32_kernel32.py +1 -0
- angr/procedures/definitions/win32_kernelbase.py +1 -0
- angr/procedures/definitions/win32_keycredmgr.py +1 -0
- angr/procedures/definitions/win32_ksproxy_ax.py +1 -0
- angr/procedures/definitions/win32_ksuser.py +1 -0
- angr/procedures/definitions/win32_ktmw32.py +1 -0
- angr/procedures/definitions/win32_licenseprotection.py +1 -0
- angr/procedures/definitions/win32_loadperf.py +1 -0
- angr/procedures/definitions/win32_magnification.py +1 -0
- angr/procedures/definitions/win32_mapi32.py +1 -0
- angr/procedures/definitions/win32_mdmlocalmanagement.py +1 -0
- angr/procedures/definitions/win32_mdmregistration.py +1 -0
- angr/procedures/definitions/win32_mf.py +1 -0
- angr/procedures/definitions/win32_mfcore.py +1 -0
- angr/procedures/definitions/win32_mfplat.py +1 -0
- angr/procedures/definitions/win32_mfplay.py +1 -0
- angr/procedures/definitions/win32_mfreadwrite.py +1 -0
- angr/procedures/definitions/win32_mfsensorgroup.py +1 -0
- angr/procedures/definitions/win32_mfsrcsnk.py +1 -0
- angr/procedures/definitions/win32_mgmtapi.py +1 -0
- angr/procedures/definitions/win32_mi.py +1 -0
- angr/procedures/definitions/win32_mmdevapi.py +1 -0
- angr/procedures/definitions/win32_mpr.py +1 -0
- angr/procedures/definitions/win32_mprapi.py +1 -0
- angr/procedures/definitions/win32_mqrt.py +1 -0
- angr/procedures/definitions/win32_mrmsupport.py +1 -0
- angr/procedures/definitions/win32_msacm32.py +1 -0
- angr/procedures/definitions/win32_msajapi.py +1 -0
- angr/procedures/definitions/win32_mscms.py +1 -0
- angr/procedures/definitions/win32_mscoree.py +1 -0
- angr/procedures/definitions/win32_msctfmonitor.py +1 -0
- angr/procedures/definitions/win32_msdelta.py +1 -0
- angr/procedures/definitions/win32_msdmo.py +1 -0
- angr/procedures/definitions/win32_msdrm.py +1 -0
- angr/procedures/definitions/win32_msi.py +1 -0
- angr/procedures/definitions/win32_msimg32.py +1 -0
- angr/procedures/definitions/win32_mspatcha.py +1 -0
- angr/procedures/definitions/win32_mspatchc.py +1 -0
- angr/procedures/definitions/win32_msports.py +1 -0
- angr/procedures/definitions/win32_msrating.py +1 -0
- angr/procedures/definitions/win32_mssign32.py +1 -0
- angr/procedures/definitions/win32_mstask.py +1 -0
- angr/procedures/definitions/win32_msvfw32.py +1 -0
- angr/procedures/definitions/win32_mswsock.py +1 -0
- angr/procedures/definitions/win32_mtxdm.py +1 -0
- angr/procedures/definitions/win32_ncrypt.py +1 -0
- angr/procedures/definitions/win32_ndfapi.py +1 -0
- angr/procedures/definitions/win32_netapi32.py +1 -0
- angr/procedures/definitions/win32_netsh.py +1 -0
- angr/procedures/definitions/win32_netshell.py +1 -0
- angr/procedures/definitions/win32_newdev.py +1 -0
- angr/procedures/definitions/win32_ninput.py +1 -0
- angr/procedures/definitions/win32_normaliz.py +1 -0
- angr/procedures/definitions/win32_ntdll.py +1 -0
- angr/procedures/definitions/win32_ntdllk.py +1 -0
- angr/procedures/definitions/win32_ntdsapi.py +1 -0
- angr/procedures/definitions/win32_ntlanman.py +1 -0
- angr/procedures/definitions/win32_odbc32.py +1 -0
- angr/procedures/definitions/win32_odbcbcp.py +1 -0
- angr/procedures/definitions/win32_ole32.py +1 -0
- angr/procedures/definitions/win32_oleacc.py +1 -0
- angr/procedures/definitions/win32_oleaut32.py +1 -0
- angr/procedures/definitions/win32_oledlg.py +1 -0
- angr/procedures/definitions/win32_ondemandconnroutehelper.py +1 -0
- angr/procedures/definitions/win32_opengl32.py +1 -0
- angr/procedures/definitions/win32_opmxbox.py +1 -0
- angr/procedures/definitions/win32_p2p.py +1 -0
- angr/procedures/definitions/win32_p2pgraph.py +1 -0
- angr/procedures/definitions/win32_pdh.py +1 -0
- angr/procedures/definitions/win32_peerdist.py +1 -0
- angr/procedures/definitions/win32_powrprof.py +1 -0
- angr/procedures/definitions/win32_prntvpt.py +1 -0
- angr/procedures/definitions/win32_projectedfslib.py +1 -0
- angr/procedures/definitions/win32_propsys.py +1 -0
- angr/procedures/definitions/win32_psapi.py +1 -0
- angr/procedures/definitions/win32_quartz.py +1 -0
- angr/procedures/definitions/win32_query.py +1 -0
- angr/procedures/definitions/win32_qwave.py +1 -0
- angr/procedures/definitions/win32_rasapi32.py +1 -0
- angr/procedures/definitions/win32_rasdlg.py +1 -0
- angr/procedures/definitions/win32_resutils.py +1 -0
- angr/procedures/definitions/win32_rometadata.py +1 -0
- angr/procedures/definitions/win32_rpcns4.py +1 -0
- angr/procedures/definitions/win32_rpcproxy.py +1 -0
- angr/procedures/definitions/win32_rpcrt4.py +1 -0
- angr/procedures/definitions/win32_rstrtmgr.py +1 -0
- angr/procedures/definitions/win32_rtm.py +1 -0
- angr/procedures/definitions/win32_rtutils.py +1 -0
- angr/procedures/definitions/win32_rtworkq.py +1 -0
- angr/procedures/definitions/win32_sas.py +1 -0
- angr/procedures/definitions/win32_scarddlg.py +1 -0
- angr/procedures/definitions/win32_schannel.py +1 -0
- angr/procedures/definitions/win32_sechost.py +1 -0
- angr/procedures/definitions/win32_secur32.py +1 -0
- angr/procedures/definitions/win32_sensapi.py +1 -0
- angr/procedures/definitions/win32_sensorsutilsv2.py +1 -0
- angr/procedures/definitions/win32_setupapi.py +1 -0
- angr/procedures/definitions/win32_sfc.py +1 -0
- angr/procedures/definitions/win32_shdocvw.py +1 -0
- angr/procedures/definitions/win32_shell32.py +1 -0
- angr/procedures/definitions/win32_shlwapi.py +1 -0
- angr/procedures/definitions/win32_slc.py +1 -0
- angr/procedures/definitions/win32_slcext.py +1 -0
- angr/procedures/definitions/win32_slwga.py +1 -0
- angr/procedures/definitions/win32_snmpapi.py +1 -0
- angr/procedures/definitions/win32_spoolss.py +1 -0
- angr/procedures/definitions/win32_srclient.py +1 -0
- angr/procedures/definitions/win32_srpapi.py +1 -0
- angr/procedures/definitions/win32_sspicli.py +1 -0
- angr/procedures/definitions/win32_sti.py +1 -0
- angr/procedures/definitions/win32_t2embed.py +1 -0
- angr/procedures/definitions/win32_tapi32.py +1 -0
- angr/procedures/definitions/win32_tbs.py +1 -0
- angr/procedures/definitions/win32_tdh.py +1 -0
- angr/procedures/definitions/win32_tokenbinding.py +1 -0
- angr/procedures/definitions/win32_traffic.py +1 -0
- angr/procedures/definitions/win32_txfw32.py +1 -0
- angr/procedures/definitions/win32_ualapi.py +1 -0
- angr/procedures/definitions/win32_uiautomationcore.py +1 -0
- angr/procedures/definitions/win32_urlmon.py +1 -0
- angr/procedures/definitions/win32_user32.py +1 -0
- angr/procedures/definitions/win32_userenv.py +1 -0
- angr/procedures/definitions/win32_usp10.py +1 -0
- angr/procedures/definitions/win32_uxtheme.py +1 -0
- angr/procedures/definitions/win32_verifier.py +1 -0
- angr/procedures/definitions/win32_version.py +1 -0
- angr/procedures/definitions/win32_vertdll.py +1 -0
- angr/procedures/definitions/win32_virtdisk.py +1 -0
- angr/procedures/definitions/win32_vmdevicehost.py +1 -0
- angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +1 -0
- angr/procedures/definitions/win32_vssapi.py +1 -0
- angr/procedures/definitions/win32_wcmapi.py +1 -0
- angr/procedures/definitions/win32_wdsbp.py +1 -0
- angr/procedures/definitions/win32_wdsclientapi.py +1 -0
- angr/procedures/definitions/win32_wdsmc.py +1 -0
- angr/procedures/definitions/win32_wdspxe.py +1 -0
- angr/procedures/definitions/win32_wdstptc.py +1 -0
- angr/procedures/definitions/win32_webauthn.py +1 -0
- angr/procedures/definitions/win32_webservices.py +1 -0
- angr/procedures/definitions/win32_websocket.py +1 -0
- angr/procedures/definitions/win32_wecapi.py +1 -0
- angr/procedures/definitions/win32_wer.py +1 -0
- angr/procedures/definitions/win32_wevtapi.py +1 -0
- angr/procedures/definitions/win32_winbio.py +1 -0
- angr/procedures/definitions/win32_windows_ai_machinelearning.py +1 -0
- angr/procedures/definitions/win32_windows_data_pdf.py +1 -0
- angr/procedures/definitions/win32_windows_media_mediacontrol.py +1 -0
- angr/procedures/definitions/win32_windows_networking.py +1 -0
- angr/procedures/definitions/win32_windows_ui_xaml.py +1 -0
- angr/procedures/definitions/win32_windowscodecs.py +1 -0
- angr/procedures/definitions/win32_winfax.py +1 -0
- angr/procedures/definitions/win32_winhttp.py +1 -0
- angr/procedures/definitions/win32_winhvemulation.py +1 -0
- angr/procedures/definitions/win32_winhvplatform.py +1 -0
- angr/procedures/definitions/win32_wininet.py +1 -0
- angr/procedures/definitions/win32_winml.py +1 -0
- angr/procedures/definitions/win32_winmm.py +1 -0
- angr/procedures/definitions/win32_winscard.py +1 -0
- angr/procedures/definitions/win32_winspool.py +1 -0
- angr/procedures/definitions/win32_winspool_drv.py +1 -0
- angr/procedures/definitions/win32_wintrust.py +1 -0
- angr/procedures/definitions/win32_winusb.py +1 -0
- angr/procedures/definitions/win32_wlanapi.py +1 -0
- angr/procedures/definitions/win32_wlanui.py +1 -0
- angr/procedures/definitions/win32_wldap32.py +1 -0
- angr/procedures/definitions/win32_wldp.py +1 -0
- angr/procedures/definitions/win32_wmvcore.py +1 -0
- angr/procedures/definitions/win32_wnvapi.py +1 -0
- angr/procedures/definitions/win32_wofutil.py +1 -0
- angr/procedures/definitions/win32_ws2_32.py +1 -0
- angr/procedures/definitions/win32_wscapi.py +1 -0
- angr/procedures/definitions/win32_wsclient.py +1 -0
- angr/procedures/definitions/win32_wsdapi.py +1 -0
- angr/procedures/definitions/win32_wsmsvc.py +1 -0
- angr/procedures/definitions/win32_wsnmp32.py +1 -0
- angr/procedures/definitions/win32_wtsapi32.py +1 -0
- angr/procedures/definitions/win32_xaudio2_8.py +1 -0
- angr/procedures/definitions/win32_xinput1_4.py +1 -0
- angr/procedures/definitions/win32_xinputuap.py +1 -0
- angr/procedures/definitions/win32_xmllite.py +1 -0
- angr/procedures/definitions/win32_xolehlp.py +1 -0
- angr/procedures/definitions/win32_xpsprint.py +1 -0
- angr/procedures/glibc/__ctype_b_loc.py +2 -3
- angr/procedures/glibc/__ctype_tolower_loc.py +2 -3
- angr/procedures/glibc/__ctype_toupper_loc.py +2 -3
- angr/procedures/glibc/__errno_location.py +1 -0
- angr/procedures/glibc/__libc_init.py +1 -0
- angr/procedures/glibc/__libc_start_main.py +7 -7
- angr/procedures/glibc/dynamic_loading.py +1 -0
- angr/procedures/glibc/scanf.py +1 -0
- angr/procedures/glibc/sscanf.py +1 -0
- angr/procedures/gnulib/xalloc_die.py +1 -0
- angr/procedures/gnulib/xstrtol_fatal.py +1 -0
- angr/procedures/java/__init__.py +1 -0
- angr/procedures/java/unconstrained.py +3 -2
- angr/procedures/java_io/read.py +1 -0
- angr/procedures/java_io/write.py +1 -0
- angr/procedures/java_jni/__init__.py +8 -9
- angr/procedures/java_jni/array_operations.py +4 -1
- angr/procedures/java_jni/class_and_interface_operations.py +3 -3
- angr/procedures/java_jni/field_access.py +3 -6
- angr/procedures/java_jni/global_and_local_refs.py +1 -0
- angr/procedures/java_jni/method_calls.py +3 -2
- angr/procedures/java_jni/not_implemented.py +2 -1
- angr/procedures/java_jni/object_operations.py +3 -4
- angr/procedures/java_jni/string_operations.py +1 -0
- angr/procedures/java_jni/version_information.py +1 -0
- angr/procedures/java_lang/character.py +2 -3
- angr/procedures/java_lang/double.py +2 -2
- angr/procedures/java_lang/exit.py +1 -0
- angr/procedures/java_lang/getsimplename.py +2 -2
- angr/procedures/java_lang/integer.py +1 -0
- angr/procedures/java_lang/load_library.py +1 -0
- angr/procedures/java_lang/math.py +1 -0
- angr/procedures/java_lang/string.py +3 -3
- angr/procedures/java_lang/stringbuilder.py +1 -0
- angr/procedures/java_lang/system.py +1 -0
- angr/procedures/java_util/collection.py +1 -0
- angr/procedures/java_util/iterator.py +1 -0
- angr/procedures/java_util/list.py +1 -0
- angr/procedures/java_util/map.py +3 -4
- angr/procedures/java_util/random.py +4 -1
- angr/procedures/java_util/scanner_nextline.py +1 -0
- angr/procedures/libc/abort.py +1 -0
- angr/procedures/libc/access.py +5 -2
- angr/procedures/libc/atoi.py +2 -2
- angr/procedures/libc/atol.py +1 -0
- angr/procedures/libc/calloc.py +1 -0
- angr/procedures/libc/closelog.py +1 -0
- angr/procedures/libc/err.py +1 -0
- angr/procedures/libc/error.py +2 -3
- angr/procedures/libc/exit.py +1 -0
- angr/procedures/libc/fclose.py +2 -3
- angr/procedures/libc/feof.py +5 -3
- angr/procedures/libc/fflush.py +1 -0
- angr/procedures/libc/fgetc.py +4 -1
- angr/procedures/libc/fgets.py +22 -22
- angr/procedures/libc/fopen.py +9 -10
- angr/procedures/libc/fprintf.py +1 -0
- angr/procedures/libc/fputc.py +1 -0
- angr/procedures/libc/fputs.py +1 -0
- angr/procedures/libc/fread.py +5 -3
- angr/procedures/libc/free.py +1 -0
- angr/procedures/libc/fscanf.py +2 -2
- angr/procedures/libc/fseek.py +7 -5
- angr/procedures/libc/ftell.py +1 -0
- angr/procedures/libc/fwrite.py +1 -0
- angr/procedures/libc/getchar.py +2 -2
- angr/procedures/libc/getdelim.py +30 -27
- angr/procedures/libc/getegid.py +1 -0
- angr/procedures/libc/geteuid.py +1 -0
- angr/procedures/libc/getgid.py +1 -0
- angr/procedures/libc/gets.py +20 -18
- angr/procedures/libc/getuid.py +1 -0
- angr/procedures/libc/malloc.py +1 -0
- angr/procedures/libc/memcmp.py +21 -21
- angr/procedures/libc/memcpy.py +1 -0
- angr/procedures/libc/memset.py +10 -7
- angr/procedures/libc/openlog.py +1 -0
- angr/procedures/libc/perror.py +1 -0
- angr/procedures/libc/printf.py +1 -0
- angr/procedures/libc/putchar.py +1 -0
- angr/procedures/libc/puts.py +4 -1
- angr/procedures/libc/rand.py +1 -0
- angr/procedures/libc/realloc.py +1 -0
- angr/procedures/libc/rewind.py +2 -1
- angr/procedures/libc/scanf.py +2 -2
- angr/procedures/libc/setbuf.py +1 -0
- angr/procedures/libc/setvbuf.py +1 -0
- angr/procedures/libc/snprintf.py +5 -2
- angr/procedures/libc/sprintf.py +4 -1
- angr/procedures/libc/srand.py +1 -0
- angr/procedures/libc/sscanf.py +2 -2
- angr/procedures/libc/stpcpy.py +2 -2
- angr/procedures/libc/strcat.py +1 -0
- angr/procedures/libc/strchr.py +7 -3
- angr/procedures/libc/strcmp.py +6 -3
- angr/procedures/libc/strcpy.py +2 -2
- angr/procedures/libc/strlen.py +38 -34
- angr/procedures/libc/strncat.py +1 -0
- angr/procedures/libc/strncmp.py +34 -36
- angr/procedures/libc/strncpy.py +6 -2
- angr/procedures/libc/strnlen.py +2 -2
- angr/procedures/libc/strstr.py +17 -10
- angr/procedures/libc/strtol.py +39 -41
- angr/procedures/libc/strtoul.py +2 -2
- angr/procedures/libc/system.py +1 -0
- angr/procedures/libc/time.py +2 -2
- angr/procedures/libc/tmpnam.py +1 -0
- angr/procedures/libc/tolower.py +4 -1
- angr/procedures/libc/toupper.py +4 -1
- angr/procedures/libc/ungetc.py +1 -0
- angr/procedures/libc/vsnprintf.py +1 -0
- angr/procedures/libc/wchar.py +1 -0
- angr/procedures/libstdcpp/_unwind_resume.py +1 -0
- angr/procedures/libstdcpp/std____throw_bad_alloc.py +1 -0
- angr/procedures/libstdcpp/std____throw_bad_cast.py +1 -0
- angr/procedures/libstdcpp/std____throw_length_error.py +1 -0
- angr/procedures/libstdcpp/std____throw_logic_error.py +1 -0
- angr/procedures/libstdcpp/std__terminate.py +1 -0
- angr/procedures/linux_kernel/access.py +1 -0
- angr/procedures/linux_kernel/arch_prctl.py +1 -0
- angr/procedures/linux_kernel/arm_user_helpers.py +1 -0
- angr/procedures/linux_kernel/brk.py +1 -0
- angr/procedures/linux_kernel/cwd.py +1 -0
- angr/procedures/linux_kernel/fstat.py +15 -14
- angr/procedures/linux_kernel/fstat64.py +17 -16
- angr/procedures/linux_kernel/futex.py +3 -3
- angr/procedures/linux_kernel/getegid.py +1 -0
- angr/procedures/linux_kernel/geteuid.py +1 -0
- angr/procedures/linux_kernel/getgid.py +1 -0
- angr/procedures/linux_kernel/getpid.py +1 -0
- angr/procedures/linux_kernel/getrlimit.py +3 -3
- angr/procedures/linux_kernel/gettid.py +1 -0
- angr/procedures/linux_kernel/getuid.py +1 -0
- angr/procedures/linux_kernel/iovec.py +1 -0
- angr/procedures/linux_kernel/lseek.py +6 -3
- angr/procedures/linux_kernel/mmap.py +1 -0
- angr/procedures/linux_kernel/mprotect.py +7 -6
- angr/procedures/linux_kernel/munmap.py +1 -0
- angr/procedures/linux_kernel/openat.py +3 -5
- angr/procedures/linux_kernel/set_tid_address.py +1 -0
- angr/procedures/linux_kernel/sigaction.py +5 -2
- angr/procedures/linux_kernel/sigprocmask.py +6 -3
- angr/procedures/linux_kernel/stat.py +3 -2
- angr/procedures/linux_kernel/sysinfo.py +1 -0
- angr/procedures/linux_kernel/tgkill.py +4 -1
- angr/procedures/linux_kernel/time.py +7 -3
- angr/procedures/linux_kernel/uid.py +1 -0
- angr/procedures/linux_kernel/uname.py +1 -0
- angr/procedures/linux_kernel/unlink.py +2 -2
- angr/procedures/linux_kernel/vsyscall.py +1 -0
- angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +1 -0
- angr/procedures/linux_loader/_dl_rtld_lock.py +1 -0
- angr/procedures/linux_loader/sim_loader.py +1 -0
- angr/procedures/linux_loader/tls.py +2 -2
- angr/procedures/msvcr/__getmainargs.py +1 -0
- angr/procedures/msvcr/_initterm.py +1 -0
- angr/procedures/msvcr/fmode.py +4 -1
- angr/procedures/ntdll/exceptions.py +7 -4
- angr/procedures/posix/accept.py +2 -2
- angr/procedures/posix/bind.py +1 -0
- angr/procedures/posix/bzero.py +4 -1
- angr/procedures/posix/chroot.py +1 -0
- angr/procedures/posix/close.py +2 -2
- angr/procedures/posix/closedir.py +1 -0
- angr/procedures/posix/dup.py +4 -3
- angr/procedures/posix/fcntl.py +1 -0
- angr/procedures/posix/fdopen.py +19 -20
- angr/procedures/posix/fileno.py +1 -0
- angr/procedures/posix/fork.py +7 -4
- angr/procedures/posix/getenv.py +1 -0
- angr/procedures/posix/gethostbyname.py +1 -0
- angr/procedures/posix/getpass.py +1 -0
- angr/procedures/posix/getsockopt.py +1 -0
- angr/procedures/posix/htonl.py +2 -2
- angr/procedures/posix/htons.py +2 -2
- angr/procedures/posix/inet_ntoa.py +3 -5
- angr/procedures/posix/listen.py +1 -0
- angr/procedures/posix/mmap.py +8 -4
- angr/procedures/posix/open.py +1 -0
- angr/procedures/posix/opendir.py +1 -0
- angr/procedures/posix/poll.py +8 -7
- angr/procedures/posix/pread64.py +1 -0
- angr/procedures/posix/pthread.py +3 -3
- angr/procedures/posix/pwrite64.py +1 -0
- angr/procedures/posix/read.py +1 -0
- angr/procedures/posix/readdir.py +11 -8
- angr/procedures/posix/recv.py +1 -0
- angr/procedures/posix/recvfrom.py +1 -0
- angr/procedures/posix/select.py +10 -8
- angr/procedures/posix/send.py +6 -5
- angr/procedures/posix/setsockopt.py +1 -0
- angr/procedures/posix/sigaction.py +5 -2
- angr/procedures/posix/sim_time.py +4 -1
- angr/procedures/posix/sleep.py +1 -0
- angr/procedures/posix/socket.py +2 -2
- angr/procedures/posix/strcasecmp.py +4 -1
- angr/procedures/posix/strdup.py +1 -0
- angr/procedures/posix/strtok_r.py +38 -39
- angr/procedures/posix/syslog.py +1 -0
- angr/procedures/posix/tz.py +1 -0
- angr/procedures/posix/unlink.py +1 -0
- angr/procedures/posix/usleep.py +1 -0
- angr/procedures/posix/write.py +1 -0
- angr/procedures/procedure_dict.py +1 -0
- angr/procedures/stubs/CallReturn.py +1 -0
- angr/procedures/stubs/NoReturnUnconstrained.py +1 -0
- angr/procedures/stubs/Nop.py +1 -0
- angr/procedures/stubs/PathTerminator.py +1 -0
- angr/procedures/stubs/Redirect.py +5 -2
- angr/procedures/stubs/ReturnChar.py +4 -3
- angr/procedures/stubs/ReturnUnconstrained.py +2 -1
- angr/procedures/stubs/UnresolvableCallTarget.py +1 -0
- angr/procedures/stubs/UnresolvableJumpTarget.py +1 -0
- angr/procedures/stubs/UserHook.py +4 -1
- angr/procedures/stubs/b64_decode.py +4 -1
- angr/procedures/stubs/caller.py +1 -0
- angr/procedures/stubs/crazy_scanf.py +7 -4
- angr/procedures/stubs/format_parser.py +24 -30
- angr/procedures/stubs/syscall_stub.py +6 -7
- angr/procedures/testing/manyargs.py +1 -0
- angr/procedures/testing/retreg.py +2 -2
- angr/procedures/tracer/random.py +1 -0
- angr/procedures/tracer/receive.py +6 -4
- angr/procedures/tracer/transmit.py +6 -4
- angr/procedures/uclibc/__uClibc_main.py +1 -0
- angr/procedures/win32/EncodePointer.py +1 -0
- angr/procedures/win32/ExitProcess.py +1 -0
- angr/procedures/win32/GetCommandLine.py +1 -0
- angr/procedures/win32/GetCurrentProcessId.py +1 -0
- angr/procedures/win32/GetCurrentThreadId.py +1 -0
- angr/procedures/win32/GetLastInputInfo.py +5 -2
- angr/procedures/win32/GetModuleHandle.py +3 -4
- angr/procedures/win32/GetProcessAffinityMask.py +5 -2
- angr/procedures/win32/InterlockedExchange.py +2 -1
- angr/procedures/win32/IsProcessorFeaturePresent.py +1 -0
- angr/procedures/win32/VirtualAlloc.py +2 -1
- angr/procedures/win32/VirtualProtect.py +1 -0
- angr/procedures/win32/critical_section.py +1 -0
- angr/procedures/win32/dynamic_loading.py +2 -1
- angr/procedures/win32/file_handles.py +4 -4
- angr/procedures/win32/gethostbyname.py +5 -3
- angr/procedures/win32/heap.py +4 -1
- angr/procedures/win32/is_bad_ptr.py +1 -0
- angr/procedures/win32/local_storage.py +11 -8
- angr/procedures/win32/mutex.py +1 -0
- angr/procedures/win32/sim_time.py +9 -9
- angr/procedures/win32/system_paths.py +5 -4
- angr/procedures/win32_kernel/ExAllocatePool.py +1 -0
- angr/procedures/win32_kernel/ExFreePoolWithTag.py +1 -0
- angr/procedures/win_user32/chars.py +5 -2
- angr/procedures/win_user32/keyboard.py +1 -0
- angr/procedures/win_user32/messagebox.py +5 -5
- angr/project.py +15 -22
- angr/protos/__init__.py +1 -0
- angr/serializable.py +6 -3
- angr/sim_manager.py +18 -18
- angr/sim_options.py +5 -7
- angr/sim_procedure.py +18 -17
- angr/sim_state.py +48 -59
- angr/sim_state_options.py +9 -15
- angr/sim_type.py +96 -126
- angr/sim_variable.py +23 -38
- angr/simos/__init__.py +3 -1
- angr/simos/cgc.py +4 -3
- angr/simos/javavm.py +77 -83
- angr/simos/linux.py +53 -63
- angr/simos/simos.py +16 -24
- angr/simos/snimmuc_nxp.py +3 -6
- angr/simos/userland.py +6 -6
- angr/simos/windows.py +18 -15
- angr/slicer.py +13 -11
- angr/state_hierarchy.py +3 -3
- angr/state_plugins/__init__.py +1 -0
- angr/state_plugins/callstack.py +19 -18
- angr/state_plugins/cgc.py +5 -4
- angr/state_plugins/concrete.py +7 -8
- angr/state_plugins/debug_variables.py +15 -17
- angr/state_plugins/filesystem.py +13 -19
- angr/state_plugins/gdb.py +3 -2
- angr/state_plugins/globals.py +5 -1
- angr/state_plugins/heap/__init__.py +1 -0
- angr/state_plugins/heap/heap_base.py +1 -0
- angr/state_plugins/heap/heap_brk.py +14 -9
- angr/state_plugins/heap/heap_freelist.py +12 -9
- angr/state_plugins/heap/heap_libc.py +1 -0
- angr/state_plugins/heap/heap_ptmalloc.py +32 -40
- angr/state_plugins/heap/utils.py +1 -0
- angr/state_plugins/history.py +14 -15
- angr/state_plugins/inspect.py +1 -0
- angr/state_plugins/javavm_classloader.py +3 -2
- angr/state_plugins/jni_references.py +2 -1
- angr/state_plugins/libc.py +4 -4
- angr/state_plugins/light_registers.py +8 -10
- angr/state_plugins/log.py +1 -0
- angr/state_plugins/loop_data.py +1 -0
- angr/state_plugins/plugin.py +9 -10
- angr/state_plugins/posix.py +39 -45
- angr/state_plugins/preconstrainer.py +4 -2
- angr/state_plugins/scratch.py +5 -4
- angr/state_plugins/sim_action.py +15 -20
- angr/state_plugins/sim_action_object.py +205 -82
- angr/state_plugins/sim_event.py +1 -0
- angr/state_plugins/solver.py +73 -117
- angr/state_plugins/symbolizer.py +5 -6
- angr/state_plugins/trace_additions.py +33 -47
- angr/state_plugins/uc_manager.py +20 -11
- angr/state_plugins/unicorn_engine.py +22 -38
- angr/state_plugins/view.py +21 -20
- angr/storage/__init__.py +1 -0
- angr/storage/file.py +40 -47
- angr/storage/memory_mixins/__init__.py +12 -15
- angr/storage/memory_mixins/__init__.pyi +13 -14
- angr/storage/memory_mixins/actions_mixin.py +5 -2
- angr/storage/memory_mixins/address_concretization_mixin.py +13 -17
- angr/storage/memory_mixins/bvv_conversion_mixin.py +10 -11
- angr/storage/memory_mixins/clouseau_mixin.py +1 -0
- angr/storage/memory_mixins/conditional_store_mixin.py +1 -0
- angr/storage/memory_mixins/convenient_mappings_mixin.py +1 -0
- angr/storage/memory_mixins/default_filler_mixin.py +16 -16
- angr/storage/memory_mixins/dirty_addrs_mixin.py +1 -0
- angr/storage/memory_mixins/hex_dumper_mixin.py +6 -9
- angr/storage/memory_mixins/javavm_memory/__init__.py +1 -0
- angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py +23 -28
- angr/storage/memory_mixins/keyvalue_memory/__init__.py +1 -0
- angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py +2 -1
- angr/storage/memory_mixins/label_merger_mixin.py +2 -2
- angr/storage/memory_mixins/multi_value_merger_mixin.py +1 -0
- angr/storage/memory_mixins/name_resolution_mixin.py +12 -15
- angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +6 -6
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +23 -37
- angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +1 -0
- angr/storage/memory_mixins/paged_memory/pages/__init__.py +1 -2
- angr/storage/memory_mixins/paged_memory/pages/cooperation.py +4 -3
- angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +4 -4
- angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +1 -0
- angr/storage/memory_mixins/paged_memory/pages/list_page.py +12 -20
- angr/storage/memory_mixins/paged_memory/pages/multi_values.py +14 -19
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +26 -32
- angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +1 -0
- angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +2 -2
- angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +37 -41
- angr/storage/memory_mixins/paged_memory/privileged_mixin.py +1 -0
- angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +1 -0
- angr/storage/memory_mixins/regioned_memory/__init__.py +1 -0
- angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +5 -4
- angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +6 -21
- angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +1 -0
- angr/storage/memory_mixins/regioned_memory/region_data.py +7 -6
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +130 -14
- angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +2 -1
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +38 -47
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +7 -9
- angr/storage/memory_mixins/simple_interface_mixin.py +10 -13
- angr/storage/memory_mixins/simplification_mixin.py +1 -0
- angr/storage/memory_mixins/size_resolution_mixin.py +7 -4
- angr/storage/memory_mixins/slotted_memory.py +4 -4
- angr/storage/memory_mixins/smart_find_mixin.py +3 -2
- angr/storage/memory_mixins/symbolic_merger_mixin.py +6 -3
- angr/storage/memory_mixins/top_merger_mixin.py +2 -2
- angr/storage/memory_mixins/underconstrained_mixin.py +12 -14
- angr/storage/memory_mixins/unwrapper_mixin.py +1 -0
- angr/storage/memory_object.py +30 -28
- angr/storage/pcap.py +3 -3
- angr/tablespecs.py +4 -3
- angr/utils/__init__.py +1 -0
- angr/utils/ail.py +30 -0
- angr/utils/algo.py +1 -0
- angr/utils/bits.py +12 -0
- angr/utils/constants.py +2 -0
- angr/utils/cowdict.py +3 -4
- angr/utils/dynamic_dictlist.py +4 -7
- angr/utils/endness.py +1 -0
- angr/utils/enums_conv.py +1 -0
- angr/utils/env.py +1 -0
- angr/utils/formatting.py +1 -0
- angr/utils/funcid.py +15 -14
- angr/utils/graph.py +52 -19
- angr/utils/lazy_import.py +1 -0
- angr/utils/library.py +10 -13
- angr/utils/loader.py +6 -6
- angr/utils/mp.py +4 -3
- angr/utils/orderedset.py +1 -0
- angr/utils/segment_list.py +7 -9
- angr/utils/ssa/__init__.py +198 -0
- angr/utils/ssa/tmp_uses_collector.py +23 -0
- angr/utils/ssa/vvar_uses_collector.py +37 -0
- angr/utils/timing.py +2 -2
- angr/utils/typing.py +1 -0
- angr/vaults.py +7 -8
- {angr-9.2.116.dist-info → angr-9.2.118.dist-info}/METADATA +7 -8
- angr-9.2.118.dist-info/RECORD +1344 -0
- {angr-9.2.116.dist-info → angr-9.2.118.dist-info}/WHEEL +1 -1
- angr/analyses/decompiler/optimization_passes/spilled_register_finder.py +0 -18
- angr/analyses/decompiler/seq_cf_structure_counter.py +0 -37
- angr/service.py +0 -35
- angr-9.2.116.dist-info/RECORD +0 -1310
- {angr-9.2.116.dist-info → angr-9.2.118.dist-info}/LICENSE +0 -0
- {angr-9.2.116.dist-info → angr-9.2.118.dist-info}/entry_points.txt +0 -0
- {angr-9.2.116.dist-info → angr-9.2.118.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1344 @@
|
|
|
1
|
+
angr/__init__.py,sha256=5VKiUVdpbAZ0mhOZNkFBcZ07GzKGGKWfK_tW6GSFw9U,3743
|
|
2
|
+
angr/__main__.py,sha256=7ZbKId7j9LYmhv5EbunqZuXpKRcRwSPtw4e3Jjy8osA,2531
|
|
3
|
+
angr/annocfg.py,sha256=5fiS9TPt5r1_8g_qSfD2XkETlBdm5MTClBIQKqhm040,10624
|
|
4
|
+
angr/blade.py,sha256=GpbEumxMsb_6qD7TbtfZuW2CMzV7W1iwqYzQWYlXnxM,15394
|
|
5
|
+
angr/block.py,sha256=DfNBZDcBGCKScGZXzLGeRySMIs0krvGj46vnfu0ZqIo,14719
|
|
6
|
+
angr/callable.py,sha256=1rzhXjWlx62jKJaRKHvp12rbsJ75zNa86vXtCt6eFLo,6065
|
|
7
|
+
angr/calling_conventions.py,sha256=xd_wL0QtNR-S7uBy-LCehBxmhEZLCHhV1fJwu96nk40,90571
|
|
8
|
+
angr/code_location.py,sha256=JpxnEa-FbQIloGwrGa4SyZlA6La_DsvHNt4WMh7lMMY,5466
|
|
9
|
+
angr/codenode.py,sha256=z-XdQh20yl_exg5H4Ep62Kw2lb3ce8od_IaEHw2v-D8,3793
|
|
10
|
+
angr/errors.py,sha256=BnzRhHb2DSN0oSAiT5P7gy97HjZh6jRRTo-oiDOCsxU,8381
|
|
11
|
+
angr/factory.py,sha256=8zxzhb1WHP_MzxSZ2agBNqcJfR6vq01OlSLMsMIWyrI,17304
|
|
12
|
+
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
angr/keyed_region.py,sha256=bi4xQYh3Is4t5LuFykgVDaaPpko0s4kEmDUEsGsJuPM,17992
|
|
14
|
+
angr/project.py,sha256=3oUXEEBOZgQF81LgDNMr8E9ihcMEVmb0jyKqksSwXWA,37119
|
|
15
|
+
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
16
|
+
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
17
|
+
angr/sim_manager.py,sha256=mrmtD9CZR3w6BwYhbmRLfObBh3Gtz5goBOy4_rWSqfQ,39406
|
|
18
|
+
angr/sim_options.py,sha256=3o-19xNbU_qIAIiVNxq7SRH1uNd0i1aCd9VCyOYXt0A,17991
|
|
19
|
+
angr/sim_procedure.py,sha256=JCykxbR6ftcwUXmUkFdbTQFQYQTFfj7Kx03sUvtg_Is,26209
|
|
20
|
+
angr/sim_state.py,sha256=Tki7E5_Di9c2C9tf4Fe2koa8-JTbzB-kqhOAAkcbi_s,37520
|
|
21
|
+
angr/sim_state_options.py,sha256=OBsH55qwd1FacVL3Uabqjgos-x5BhpdONSnhxkueRwI,12468
|
|
22
|
+
angr/sim_type.py,sha256=c8D_WekTd7e3aw6xAyAjJ2zhY97-GmwCVtuQabeO4oQ,130271
|
|
23
|
+
angr/sim_variable.py,sha256=oN0EIj8Y7vpdZgX0Hp8OMix40EvAvFBmNSH2KkgtAPM,16404
|
|
24
|
+
angr/slicer.py,sha256=74ujgNMKcEIHM8lqal69Cbls07yCxpxvi-jUYeScfaU,10668
|
|
25
|
+
angr/state_hierarchy.py,sha256=fRiySZropJVKK7lacExSLqa7uI8XuyzSvZ5HCX6FDUA,8482
|
|
26
|
+
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
27
|
+
angr/vaults.py,sha256=ohYZXsIShrDkb-K7NNpU-RU4-W-gnTHT3y_TuGyCI6M,9687
|
|
28
|
+
angr/analyses/__init__.py,sha256=aknSUdwSqwHK4wxkp0WBdUaWyTHzkW1hKgcYc3WjtnI,1961
|
|
29
|
+
angr/analyses/analysis.py,sha256=BD4h_QItf_S0OGuuSyDhgoT9-VH9qxBBpGAU2lFm5yA,12219
|
|
30
|
+
angr/analyses/backward_slice.py,sha256=NCGECmJ-e_woapX6ZcSN7bjkHOB4mHviukoL7f_lnAs,27216
|
|
31
|
+
angr/analyses/binary_optimizer.py,sha256=JqKfOXx5FiWsYdQ6JMWYivfB2AiNl2Pw8Utk8kPEVrk,26186
|
|
32
|
+
angr/analyses/bindiff.py,sha256=z4fjs6ScegtvfnJB7pMMAaN9zOYg8ECl93IHCFTFzzc,51424
|
|
33
|
+
angr/analyses/boyscout.py,sha256=pMJNmVBt8MbCiVe8Pk8SQ3IOppHGK2qHe6G7A3e3WA8,2483
|
|
34
|
+
angr/analyses/callee_cleanup_finder.py,sha256=u3Og_9SqgEir6jrsHVk2G-4vJmJZnVcNXPsBeW-0soY,2810
|
|
35
|
+
angr/analyses/calling_convention.py,sha256=IstgLidkCTvycZrkRCgUT7Ie-faE5B9dKcoQK92St4Q,40363
|
|
36
|
+
angr/analyses/cdg.py,sha256=O_WO-jxmvFjnbJmb5GTu9_xhL9CLQQGPvotdtIjICw4,6227
|
|
37
|
+
angr/analyses/class_identifier.py,sha256=hMZW4yxVjE3pPtYiZt70jXQD2oQCJmlX_xZDhsH168s,3004
|
|
38
|
+
angr/analyses/code_tagging.py,sha256=8Hc031_1xfDZEQ2yWJNdlOsPybBMc_t0rhFy1ZCYFeY,3504
|
|
39
|
+
angr/analyses/complete_calling_conventions.py,sha256=i11npZcd7Eld1rOMTFFm_jGlExHnW4e1wKFbKKL3Spk,18271
|
|
40
|
+
angr/analyses/congruency_check.py,sha256=JGEEeuOdixntiu8nqQCaHtkNzqY7Ro2RoqlLHz9Zmxg,16191
|
|
41
|
+
angr/analyses/datagraph_meta.py,sha256=HNOdfhx-C2dXWrebUtJfKNMXQhJD5__ceiy8plCB8XI,3415
|
|
42
|
+
angr/analyses/ddg.py,sha256=9jvADzNlKAOU70wfQX4fEK05opCTOUuiyfHeA7kdoXU,62998
|
|
43
|
+
angr/analyses/disassembly.py,sha256=AmvFMIF5bFsXFPqrH0_-wpLrwds89-8s8yU2kCRowyQ,46294
|
|
44
|
+
angr/analyses/disassembly_utils.py,sha256=kKpQSs06PHg5npqz0kZ2vSZCfRBwUiBIYn6U7kwoC5A,2874
|
|
45
|
+
angr/analyses/dominance_frontier.py,sha256=RqB_kItbFCtnSElll8Bnspvv_xFwM8IAiLBNUc02GdQ,1999
|
|
46
|
+
angr/analyses/find_objects_static.py,sha256=EVTo7UA9b44SuHlMLGY2B6rkUA8_3waTcPLbftUn6DA,10189
|
|
47
|
+
angr/analyses/flirt.py,sha256=nqEPsvqmZ8StC3iHiK5aP5-1nTfprzi3rPOaksTbhLM,7789
|
|
48
|
+
angr/analyses/init_finder.py,sha256=qIydbEvsh9AwgP5EtlTFiOnODo8fL3PY2XRmgqB9wTI,8528
|
|
49
|
+
angr/analyses/loop_analysis.py,sha256=eH5BGpVUHfwUdqmycDLm0wGGJrs6eKZ-IkIL9m7Yns4,9305
|
|
50
|
+
angr/analyses/loopfinder.py,sha256=C9Vo-Lv4a0SL7xbfzlWt9nFbv6tOjaEHgY1cW3M2Nyg,7035
|
|
51
|
+
angr/analyses/proximity_graph.py,sha256=BAxc6tIXv7q_4ncdW1rcjLRuhHsTEimy6QzRKM4KPew,16057
|
|
52
|
+
angr/analyses/reassembler.py,sha256=f6KGrodSAngqP3nL5LrMoh7je6yFRxhwnmpjNFINYI4,98509
|
|
53
|
+
angr/analyses/soot_class_hierarchy.py,sha256=AtvXMAlz6CVvfbtkPY4ghouH_1mNnPg9s9jFhZwWvEw,8741
|
|
54
|
+
angr/analyses/stack_pointer_tracker.py,sha256=x_ikVEXqBJ5QCFfeOvrhnd584gllEBEH-hIkEuD_zIE,30472
|
|
55
|
+
angr/analyses/static_hooker.py,sha256=AcKzrkECtIv53BjeNdJQ1Wl3HSmwt5QncTcXT2EorN4,1760
|
|
56
|
+
angr/analyses/veritesting.py,sha256=WSXZmQhPq-uQcUyDUJpxViN5De0-YdmzgUILxlzV8uI,25073
|
|
57
|
+
angr/analyses/vfg.py,sha256=vebcVPEJ6n4pRrulClTmc4wjY35tToW8d8ZmA7GcI20,72908
|
|
58
|
+
angr/analyses/vsa_ddg.py,sha256=ae7UFThlDsp7-QVd9ZUAaD_lNscfZhxhgTytxlO5ItQ,16128
|
|
59
|
+
angr/analyses/vtable.py,sha256=1LTeEreTZp6Y-hh14Zk8mk7wc7ldB5CkPr59CQKCQ3o,3869
|
|
60
|
+
angr/analyses/xrefs.py,sha256=lkJTO4Nd5QUPE6T83WQi6tUfIG3Yfx0FVsnpjy0ccAc,9595
|
|
61
|
+
angr/analyses/cfg/__init__.py,sha256=RTEoukH3Ie4k-fqc2YzFuiDN_tmfDAJmrv0hwPrROqE,356
|
|
62
|
+
angr/analyses/cfg/cfb.py,sha256=u4X71FtA-s092Ec-KgDnYW6Qu0AYxbXqrIpXP_4_Ggo,15355
|
|
63
|
+
angr/analyses/cfg/cfg.py,sha256=5ONBqxRGAKk2vy8q1cYO9MY2oNnEqJc7tYQwOn1JTVk,3183
|
|
64
|
+
angr/analyses/cfg/cfg_arch_options.py,sha256=QpC_sonf0eODcIxWtjVrW6E-gFRGvvdataqGEp9DFFI,3142
|
|
65
|
+
angr/analyses/cfg/cfg_base.py,sha256=jONlCGahdCkUtVmJUxKTtOAiwts7or1aP6ax00FL0lw,121931
|
|
66
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=aKTdynUOzz0L1BcJTA2-s472E5Ht5JATg-tZmROrZcg,152181
|
|
67
|
+
angr/analyses/cfg/cfg_fast.py,sha256=Kj37vjOf-KRgYDGc-s9we1ZAkzvpRWAkIeVRxYKTEsA,216354
|
|
68
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=0gpDSA2ZJ6heaKoU33ifjVAN4aqsZALwb_qgB8nAGXs,25894
|
|
69
|
+
angr/analyses/cfg/cfg_job_base.py,sha256=YUK1cvp0MKy01F0KNwNy2C3TwtHxZnSwDEo3qn70iEw,5968
|
|
70
|
+
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=vlHbQFsLqiUNes1Ul4reEBB98UsmJmXCQLErPnjCVyY,396
|
|
71
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=CmLzZRztGgq10QwXNyCBGRVViFosg4rG0wUn1_-0xJA,2068
|
|
72
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=WHlOk_gmKJabcOFPtxzGsrc9cBmBrGkdVv5xQz2FVN0,1776
|
|
73
|
+
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=p9ba76CXJ7EpYf09iZLSqbIE9y1pyx4zWtPoxF0xVsQ,5200
|
|
74
|
+
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=KJq4hdxgnm1sKGb_qzYZuFhQQQownu-C0kYGEcuAwUs,5263
|
|
75
|
+
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=yrJ9mx-LCknGmr34zjDNAi0WYRxmDEK9l3bpExVSzrc,1476
|
|
76
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=dRUlQDa4fpGTJ2qR0V6IRX3EjG-vCmBFWhOdzOnf5lM,101498
|
|
77
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=ktJeJ4hcXdRFMVyVcSnypHW-Oxver_cESVPHouznuQQ,19167
|
|
78
|
+
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=ppqn5vYGOD8HknweabD7NWgZmoBgjkOC6m9t-XD46T0,992
|
|
79
|
+
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=QsMuEeGjqBNMZTPCLNCScvh7sj6AH0Yd2_Cllbviloc,3018
|
|
80
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=ddM_NmkLJNiU8fo-gxaA-iyrNX4CLoRYEtgjeuQbj_Q,2921
|
|
81
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=eXW9GWTDIi_jn9Jo1i06bZzVzqlyFf7QymhE4uRYtCg,1620
|
|
82
|
+
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=hkaAtL0gggrNlwl7yH4103MgrZOm713er-UH5ag5gfM,155
|
|
83
|
+
angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py,sha256=DV-dDQJd6T_vRwowoPjp02mc8yrgsjabNrHtR3oGvTY,3963
|
|
84
|
+
angr/analyses/cfg_slice_to_sink/graph.py,sha256=80erWbctYEpsLjpw2TNjntDLDGQFdYRo-c9zwvOYzEY,3590
|
|
85
|
+
angr/analyses/cfg_slice_to_sink/transitions.py,sha256=9Y1qG789dsAcv73FwgYtppUzPWXbKdV5qIfIZHfhfmg,888
|
|
86
|
+
angr/analyses/data_dep/__init__.py,sha256=z3uZiTywv_XPkvdMcUcaw0C0VIf2-okaAWjc3jRadJs,215
|
|
87
|
+
angr/analyses/data_dep/data_dependency_analysis.py,sha256=rfKkYE8_nLlM8NTNka2Kv2YywLzsFkby83evZfl8nNE,24950
|
|
88
|
+
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
89
|
+
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
90
|
+
angr/analyses/decompiler/__init__.py,sha256=8UyyamgTWyJSxHUFCiJwvnhX92g827rWh9tbzGliW1s,680
|
|
91
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=vMvWi34kC07t57TS5Z0ev0S2lk9wj4rxIsmmJrCjcqM,85781
|
|
92
|
+
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
93
|
+
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
94
|
+
angr/analyses/decompiler/block_similarity.py,sha256=ISMoOm-TGJ_1wD2i_4m8IYTletgnP66gReQESJnfvS0,6873
|
|
95
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=AcV7seL1FmjJZP5fIZNJGq1B3NcoYB0meZNQEQJxazA,13907
|
|
96
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=0Unvn3Ij0ac21_pz2kJg6kX2tGLu0pnUgwm8GbS0bU4,17778
|
|
97
|
+
angr/analyses/decompiler/clinic.py,sha256=OWWN9fjA8GdSu5Kj92BLplcr2pbBmYD1POaD-HfkMf8,102764
|
|
98
|
+
angr/analyses/decompiler/condition_processor.py,sha256=YmoWAW_6BOKB65tXfVJdBLg0AA8wBHnbDnkv8xMNACo,50202
|
|
99
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=ynqveXnf_sULwFmQFr4rVDlRHoniICt8iyhC0Ds0mDU,1163
|
|
100
|
+
angr/analyses/decompiler/decompilation_options.py,sha256=QWUGnfQ0FUekGs_I6X-ZKvAvL39VX2hFRcZrlXd72fY,7957
|
|
101
|
+
angr/analyses/decompiler/decompiler.py,sha256=GGv084YY2KSdOPH6gQeUBNjBChAHSj8ImAfu6F576-8,23755
|
|
102
|
+
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
103
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=9as-Q-JFxfRUCz7M_32jiWeGYUuV_AqFDHclJLa_wqU,3442
|
|
104
|
+
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
105
|
+
angr/analyses/decompiler/graph_region.py,sha256=PqXOqxOtk8haGNB7zlPzvXgkE0JdeGCIpLIUSeKswo8,16661
|
|
106
|
+
angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1LGX31o3_Cz1Z5wRyMIl8,1173
|
|
107
|
+
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=dORfhoEkDka42TgDP1d2Hgi2AKq8V0hH1loRvhEpOyI,2174
|
|
108
|
+
angr/analyses/decompiler/redundant_label_remover.py,sha256=J9hpP3C_P08v84FjVU0q5Rmj5M1N9q3HKWSWsA2u7Yg,5879
|
|
109
|
+
angr/analyses/decompiler/region_identifier.py,sha256=qsU_moDMLkvfd1bvQQ-Yv9VKuX6ZLTmrKXIZDPLWadc,45115
|
|
110
|
+
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
111
|
+
angr/analyses/decompiler/return_maker.py,sha256=mCJdEcnU8P5sld5B-b5e2YLilct98gJa7VWAMXT2wIY,2502
|
|
112
|
+
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
113
|
+
angr/analyses/decompiler/sequence_walker.py,sha256=o0DQi3gPD0-pGJEKF_MyA8GqXJrEqSsoNoUBkFLoiuc,8355
|
|
114
|
+
angr/analyses/decompiler/utils.py,sha256=BnaO4KbdcVMTwhy44PCVLkVIYhY34qTjBGjEN3rBfR4,30313
|
|
115
|
+
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=pTCBcuro4f8bnK7N6D48Y7Dh-2QwyzgVY33LlUBHcZE,137
|
|
116
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=zIte3uDa1smwao4M3vOO4_WAkYHTyZU8rfiKHBGJEts,21366
|
|
117
|
+
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=8UyvC5BfQmYWJ_WPn7Vrt3c6YlEr0PdSzd8sPOvwlds,496
|
|
118
|
+
angr/analyses/decompiler/counters/__init__.py,sha256=uPFcBSgmw3JAVIWhRI1oRd0JvHU-7UCcHHMDSFw2guU,292
|
|
119
|
+
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
120
|
+
angr/analyses/decompiler/counters/call_counter.py,sha256=ek1mm83DPDEhmR4UjBam1WxCpSnFbjR5lW6McRLxSKo,1240
|
|
121
|
+
angr/analyses/decompiler/counters/expression_counters.py,sha256=DFhe2hpYBgoF-ASALpzVsNJwM4MiNQcrpNKsmXslri8,2850
|
|
122
|
+
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=P1nQOPo9p4hFg9kHEhJloUbN97UUUcFPaD8edGjl-MI,2320
|
|
123
|
+
angr/analyses/decompiler/dephication/__init__.py,sha256=0Ufg3SSL7VkKBn-sfMZg2XRAIlmkJjXpL4DvtlUy3L4,280
|
|
124
|
+
angr/analyses/decompiler/dephication/dephication_base.py,sha256=UToP1wF9814qxzJpQcqGljYlOkYA7mwvLveGn41089o,3132
|
|
125
|
+
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
126
|
+
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=R0rlwYL0Cnt1UPjdEJZG4kEvruKPr8I1hfhTMTZnBxA,3405
|
|
127
|
+
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=1-K_SPAd2RsUGshdfwbY9V2H8EfGsIAuRss-r0fBxpA,13250
|
|
128
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=N5fi3ba7LSWjEl1N_fmgepx1OCEz2Z8H1Trs2m2Ml9g,8483
|
|
129
|
+
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=FCG3Z--remnvakvV2MVbNLZhs9bgUCX7fHhCbgeUTBY,3682
|
|
130
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=xf7aLONySD3BYSCAc9fK-xP1BxGwu6drG3Q8fELDsK4,4337
|
|
131
|
+
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
132
|
+
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
133
|
+
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
134
|
+
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=n9eLvG3oLJ5Y8eZyXi6HRKS5cIqsscK7c2G9F7a-z7M,10435
|
|
135
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=hnqX7TMlxx46q-EKxQxTcXTisH9kj1hIzfhf_qszS54,13092
|
|
136
|
+
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=uR3cXGi-N5uXtVbKTDBLVnH30uSRmV8dbHY0CUh9PPg,3998
|
|
137
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=xa8I8GqGybGqQY_5bljBYb69Nke0r1q3Rt9rAs38aIQ,2365
|
|
138
|
+
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=AI74Lfuxye3vVcH9ZctuGaHWHD2peuZR8qHUuDiiHUM,17434
|
|
139
|
+
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=BO3leVabzn3CYiV5PGWyKXirOWIX7Op_l-4QtVyY4iM,11166
|
|
140
|
+
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=8wn00crLuze1weETcmeD2qgYn7e7Vw99tTgl6znG7lo,4669
|
|
141
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=bE0R3vFqxvI5_SljUGL00e1VjUaMWvyYNvd49v0yLhU,3968
|
|
142
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=l41xOFxN3543blWmi-Q9bVmzjTM1UReNBaaKqvzLN14,18938
|
|
143
|
+
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=dOrogYyQhpisVvGDYY8_Rfuq-KW5qnpYk05dKXafAig,7726
|
|
144
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=ytoJC4LvR2gNO7rPNMzfcARSXnNo9TfmLtF-eeJmlqQ,11943
|
|
145
|
+
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=MzCnIkawCtexIQ7tUZk9xiI-uElD72PSkEokZh3CK1E,38297
|
|
146
|
+
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=papR480h-t_wEWMEdu6UTmc33lPSy_MOmiMgidPGnxc,3115
|
|
147
|
+
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=sIp2YISvafpyFzn8sgGMfohJsARiS3JFX_Y3IUXD_vo,10119
|
|
148
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=XIh0fjWxLOxPuMPWPSclAD2vo5-WEamxcUiBLZiGLKE,20988
|
|
149
|
+
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=IsVQ4a97V8RccbdzTC8tP2NVTuDLT-W2CTSa0TrBoUs,7930
|
|
150
|
+
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=zP2lfmhV_BWybpxLwq-X6LgCH3y_6WSRsMvVFoyaCa0,6403
|
|
151
|
+
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=JN0qm0z8pyQWk_4I-YxMzFQLN7nTwgEZYtHB0NGEsik,7948
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=BkpG_0QWZS6C3YQ4z1ancLZLe1NKEoqDlsM0iSIXtEg,24647
|
|
153
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=TAZ__aJcIuN4HlE3wS5o8zSHlVw3GoLaF47W2D9TGfQ,1960
|
|
154
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=6FGOXeoKvWe-6oxWddm5Xhcr2tD0CGD9ima94ykWrGc,9806
|
|
155
|
+
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=cEbZ5jyYbRiBJSzVJbnqssUY5MzirXXgzvzpxllY_Zk,14343
|
|
156
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=wL6jvaA_icW80xmRN2mdM-g9pnQDVIXGvmgObwmnrY4,4564
|
|
157
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=lZ9ZHBGOyHaJmd4Bdg31dHdvIa1631w0545KTmO_eVk,12746
|
|
158
|
+
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=6NxaX2oT6BMkevb8xt9vlS3Jl-CmSK59F0FVab68B48,3088
|
|
159
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=e433Xyd0hSB0xsJkUOdviOwsLoPovWD5U_uigONjXtc,89
|
|
160
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=-kn_m-x6udKPHpbbMeUfE_g-McBhDJSUIG5TssdDJB4,21472
|
|
161
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py,sha256=2De3mMKMuvMN7_wjCaOJC0ol_Ikz00q0pq-6ERleAq0,52325
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
163
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=j-8DwibgXx1xz1ghiK0bMxtgz3dot_QqXozxb-sd97E,4384
|
|
164
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=owkqZQQWHd50uBGRJlOwVrrs_fmz7nnI-2ekOX3mdaQ,5153
|
|
165
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=fd-JQFNTCfX1Ex1PpgzlAxg77Al-05DzIQeqDk8Qx1g,3395
|
|
166
|
+
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=4iCV9lkADp8lvcPk9vjTwyAG8j5HTBVO9NgBuB7bYhA,1636
|
|
167
|
+
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=I_AznhlOZG_RDBOJrGsOamH2piOX7XgqxMSt5zX8HqQ,1374
|
|
168
|
+
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=Io8dMevnbaEE6MYOll9fJ-iCmgM9hhuALb3HNt2B9mo,1023
|
|
169
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py,sha256=MifsnlpogQgWKvshbsuXzQxYv95wBLYCflMddf-Rysc,958
|
|
170
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py,sha256=q4qOmRuInwXqT3T3tyybVhWAE1dkS4xGVVkl2b0TGgk,2085
|
|
171
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=ZQhLw89LjX-O4Gev5AgWMcdn-QR_wVFLzBO4RI6podY,662
|
|
172
|
+
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=RZhdYP0mJIlVIgGAonlzsYy4At22xjgUd_96swO7rc8,9297
|
|
173
|
+
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=ZMeK8E0ic7rBk0dYjw-QEESsmaq6Zl6BCmai-qgXNMg,3372
|
|
174
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha256=tE7ejKe2W-KzYtGKEwN22HYmkZ0j0wwo-NYhxdJtPH8,1091
|
|
175
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=Wl1ULOi_zBbIzhlp_C-peqr2cazl1pezzubz50RV74k,1100
|
|
176
|
+
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=bozJ8fGjwYHjz4wS4P5S8y_I_h9WMvp1y9VSraWrBFM,1301
|
|
177
|
+
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=zyitj8lWSd1rfuVe4GDlr-HnqNAqi_uflvbM0J7WpAA,990
|
|
178
|
+
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=UTkF5sYZcC45tXt94BzEvphXein40UF3ft1uqYKRNoE,6138
|
|
179
|
+
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=4ERanmpCQq06B6RE-AO_-jgPloyP9Jg5wcUja9iA_gI,2652
|
|
180
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=xZ129l0U5hoPXtczxZFUfZL59V7d0u2amQTO4phIpQU,1409
|
|
181
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=h3m9FIxsMpElPE3ecFfa0vnzuxwG5oJLNEqvLuMpMgI,1062
|
|
182
|
+
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=aIDp8kUVoAOPpOJHaxX90osusSNO2i9jSBnhwPg6NU0,6589
|
|
183
|
+
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=KTGrECpzRuIjsthtcl6IhxNPLibuclzlUCcTE11nrio,1701
|
|
184
|
+
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
185
|
+
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
186
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=T2dA5fhkNj-Y4NSVwz4N54jyVolMK6X963eESKqX0Ow,10594
|
|
187
|
+
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
188
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=40RcqWIMALxfA-LG-DN2N_yK5uW2HWF_x4AquCTMbNU,6245
|
|
189
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=wKj38t6sTd6wpbVpbPG7Nxiz9vU5K_TvL4sws04TsDk,4681
|
|
190
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=Ji4AtQnbBjIXKc3jwlF-eYMYdWZ6gvffUBfUGVlte04,6777
|
|
191
|
+
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=xmfB1dnSvzxFzi2W5qv-ehQdD4u0HS9ECC-WEwoTb68,1985
|
|
192
|
+
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=7R_rVBIbk-tFUYU8LMJI2RCtLJuvUMOhUL1jqE9D4u8,1135
|
|
193
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=8IL4DrjYDTwydtf-oFdd6O_Le_XmPAr97GaAy3Vz-RQ,1539
|
|
194
|
+
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
195
|
+
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=ex6S-SaoIsHum5gTKFqvdx2f2Q46K_LJV-HSDR33-p4,1026
|
|
196
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
197
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=S3rXoVDDPQb1DeH9Qx5SQI0SKQuKFrKwJKtNB8sw3LE,6514
|
|
198
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
199
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
200
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=JOsJeo77vGGaEFFXSk2pHub6gleQmWsnvNdZEqv_uBg,538
|
|
201
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=DqGdwso3CuulthzNNjUseNF2eb8VMQhhritjWSwCViE,1425
|
|
202
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=TXCJ2e6F1kL-H6DN80rfd_yTbyQRyNnmuijCDQBLkZA,1658
|
|
203
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=MHkgIgOMWaAVqe5q4X-yzIxkPzd2KyTngvhxtXorOi4,1605
|
|
204
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=GRVXdwmu9OeTacxWRX0rGw5N5BUbN0xZxZRqtiL31iQ,3295
|
|
205
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=-bENfNstVil2AW-AUsQHr6GTt6TyhISw2jaNpHkheuU,1904
|
|
206
|
+
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=pbKk8NSOgU1pBFLV1_qZNxaEbNpA_TpV92AZhgVfVrg,4229
|
|
207
|
+
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=yZ_di2u55BiyjTfZatW5pQoqA5g3dbOXaLQv9CxkXhg,5180
|
|
208
|
+
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=SYqdJmhspPNJR8KWOXq59aJ9w6hF3ixmeSzvyZ-oD8Y,1448
|
|
209
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py,sha256=1BdUs9d9Ma2PqMYy5VgIvsc30im5ni-By88RWkWbpSY,1872
|
|
210
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py,sha256=tnjWYeKWL63rvLVcicVSD1NbVQJfHtLT85E_PNeYt6s,979
|
|
211
|
+
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=RRzuc2iGzQPvYaZAmpLKim0pJ_yR3-muGnJQxvpcN8w,4786
|
|
212
|
+
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=T9kUuEtS_4YnyWsk25voEqTUumB0FufESpkKUWh_zVU,83
|
|
213
|
+
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=2Ml1aQ5E71DJJl4ed6qPSSloVctPDhrFYJdYBPbP6Ec,3769
|
|
214
|
+
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=UfCCTbapTezGMtFdhjpcP46vzjxP_qn63WWi8eTV_8w,2525
|
|
215
|
+
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=5Xxmhz2YI9Bbjvi8eo2yXxtNfGZObZrK-Dwjy2z7lV8,24509
|
|
216
|
+
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=B2PuKTr7UGSvy5kOloLdt8lOTMMgPAP_WfI4CX6KcTk,6031
|
|
217
|
+
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=QPNV5zXxvHOhpx4E0Rswen5fydiHQD5KB4GZ1ewCs0o,4360
|
|
218
|
+
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=YQNiwEJ6hGu28VJVki8ys3h1Mg6loIZyA4OsL1JJ-nY,3716
|
|
219
|
+
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=9BCOqNCI6vMpgWMjq0wRYVjxkEMVXeLTMobcHXx8S40,6451
|
|
220
|
+
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=aB8wYgM77ws7qOeYpe1cF8FcBvxGiMzwBs-Wg2rn1V8,577
|
|
221
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=a1hPos0wTviQBlEluHVkW6WuT_mxx4cHQzj4ryCx094,8212
|
|
222
|
+
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=X_aEtL_IiLm2wZNsshmp87Ifzcr-PTEnvDMjaR7XKvE,24674
|
|
223
|
+
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=IfZQ-2Uq6SpxfejnnxbIGYksSSsfdeETy1IwSQ73GTg,3266
|
|
224
|
+
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
225
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=t3jxPVXlogX_5UpfYFkDq7WdeogjwpK9AIOG5l1mIHo,11985
|
|
226
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=f4lRuSbPBwrWLleAVv3BYh-PtnIennS-ZX5zzk6w1JE,22260
|
|
227
|
+
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=LhNx20zXeCbvz7u9gj_upQJrivwKkIPv-eMRE2_gyco,1832
|
|
228
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=bJXGqIMRoNlStOiQyhi1-3aKIz5-WJApRD40ZqpKRcg,8425
|
|
229
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=6wY_JRhwgRwPC53dn83vIV3AXqzgdaPVEoksG6PBnsk,2882
|
|
230
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=mFxhlOItQ5t4wfZ84Rp9CLhg0pt6--4XAm6FeN9ryqA,4540
|
|
231
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=5jRIYuUTdtfwsPChT9K8rhuM0NYTNNWcrb3z7D_r9Ec,1195
|
|
232
|
+
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=59ybGVWIap-Tc_19N8t5zfc8XMvdTAIq-ruoHd2FM6o,348
|
|
233
|
+
angr/analyses/decompiler/structured_codegen/base.py,sha256=LilPbwOipchsJhL7HAvkpaekrHq_Lxair45Q_sNAp_8,3795
|
|
234
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=S5LOmAf52_U_Da9FaErif3qUgky7nZoYYekD675iUSA,136681
|
|
235
|
+
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
236
|
+
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=jzqC-zfRQVhP3RTWR3XDcy_O7GXdmA2h43xlLsIMau8,6808
|
|
237
|
+
angr/analyses/decompiler/structuring/__init__.py,sha256=lpdf6hdDrJ-eMWlIwn4sdJQlq2JUmcNwdnegDhKF-eo,545
|
|
238
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=Kq6DAOWCLAiY2F6ZPyuX6d_FLvU19qBMcCPyoU1Lgv8,48061
|
|
239
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=dZwErr4PaYoHCOYOlZFxogE-pnKUhzuXtsR4dZ8URGY,120394
|
|
240
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=OnatMr4xWRaHdGjj7OV9kPoF9wh2tNP3i6KLo4XwIZU,6927
|
|
241
|
+
angr/analyses/decompiler/structuring/sailr.py,sha256=D7Kk-YoJbx5WRqEMfrggmWMEQj_5V9WpRh46XBGPoNA,5697
|
|
242
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=9IAjgSHkX2phQ9s5XyPFO9vP0y-wRb_q6iB6a8wqSug,41447
|
|
243
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=Ib9CUWKmWlELhMZyh_4qF4d8W0rdcTW6BS4w0jdVI7Q,11701
|
|
244
|
+
angr/analyses/forward_analysis/__init__.py,sha256=gIhTkMFwSbxBmXo89QYYfBQfM7onyJiYQIeb2n3zlDE,179
|
|
245
|
+
angr/analyses/forward_analysis/forward_analysis.py,sha256=pLGPP6uv7fFdn-dK5FXTC0RHRXk8gOPUeawA4IzxSJ0,20005
|
|
246
|
+
angr/analyses/forward_analysis/job_info.py,sha256=6xE1cwHGpONy9PkpfpYkXhUy-tO6YKetXauttzNImTI,1592
|
|
247
|
+
angr/analyses/forward_analysis/visitors/__init__.py,sha256=Du-oIbbEZMrtz2mXfx9oIYnCBI4XxyLVmFsWWrr_8ck,209
|
|
248
|
+
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
249
|
+
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
250
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=2BsFriZYz25n-0TISId4HsYlVizQNUSgDqQYZS41XuI,8056
|
|
251
|
+
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
252
|
+
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
253
|
+
angr/analyses/identifier/__init__.py,sha256=QiqXeF6FglSINi_XHtP01R_BdAwNDFchqWYWtKkx_r8,68
|
|
254
|
+
angr/analyses/identifier/custom_callable.py,sha256=O_mvkDzjYcFY2D81gI91DKDWkxzffyKEvmJ8yCduM3Q,4770
|
|
255
|
+
angr/analyses/identifier/errors.py,sha256=mEc5cNWs-oQGJ9GpJEspsj30iUDjO2b3CPB6qdMtTSU,192
|
|
256
|
+
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
257
|
+
angr/analyses/identifier/identify.py,sha256=vNLbAadkpnObc134_x1T341Iwi6bnILH6chkB0q3KBY,32669
|
|
258
|
+
angr/analyses/identifier/runner.py,sha256=OJJhtnNTNJ4rKRmKEh50NpdqLvA1IzV2o85b6ue84wA,13748
|
|
259
|
+
angr/analyses/identifier/functions/__init__.py,sha256=KV48f66TvN6SJNaj1PgbT_O3daD7nqdt-zQpR2SC_Fs,1092
|
|
260
|
+
angr/analyses/identifier/functions/atoi.py,sha256=kOprhYsId2bi7vUj-CUjv3zCl5xRxxxqLLlg2-G1L5I,2102
|
|
261
|
+
angr/analyses/identifier/functions/based_atoi.py,sha256=rfheRmAuovIh9DefhREIVHCJMLMgBMD8DEHKgTa3uDM,3249
|
|
262
|
+
angr/analyses/identifier/functions/fdprintf.py,sha256=eh5ofcATSrsM80345DJDexEmU7tR8hwrxCbcAPZwmek,4388
|
|
263
|
+
angr/analyses/identifier/functions/free.py,sha256=hJUOiXs-tFGbcjsUI7Zk4RighskewXUV6LvzreiJoLA,1945
|
|
264
|
+
angr/analyses/identifier/functions/int2str.py,sha256=eqOMP3wWOV45NXROZ2_7BpZGzQE8R4kS2YDcaCsYg9k,8380
|
|
265
|
+
angr/analyses/identifier/functions/malloc.py,sha256=ZYhTT5SY6Fph537sXeY5gxvWcwWYktVKtRUflLQ4J3U,3839
|
|
266
|
+
angr/analyses/identifier/functions/memcmp.py,sha256=djl2i7ViEM29mxLGQNIqzqJNposFQ4jzJrf5tVIfkeU,1951
|
|
267
|
+
angr/analyses/identifier/functions/memcpy.py,sha256=xjPc4Mue6z6TBV5qZHBQ6RgUrypZA9Xo84_sCRSBUdM,3181
|
|
268
|
+
angr/analyses/identifier/functions/memset.py,sha256=ew9ytjsLDrPVUpRPxqwAe9v5-_plBwAguvm1becQkGY,1203
|
|
269
|
+
angr/analyses/identifier/functions/printf.py,sha256=vG4RbvrqwmNUv0bFRAZ04mGOCDPTzckZ03Ddlm3PvSU,4342
|
|
270
|
+
angr/analyses/identifier/functions/recv_until.py,sha256=HX3Bx4VutTtEF4AeW9gk0JMwH3R9Jyz7PbK1-L7PGuk,11515
|
|
271
|
+
angr/analyses/identifier/functions/skip_calloc.py,sha256=yt967TmNqn_tzwJzGegEWLjIBc9Lcund8R37Kj-HAZs,2392
|
|
272
|
+
angr/analyses/identifier/functions/skip_realloc.py,sha256=VI6BgckqshFfQcLw2g4CDF9Yi_06lq-UIe8lc45PF-4,3180
|
|
273
|
+
angr/analyses/identifier/functions/skip_recv_n.py,sha256=tO6Gi-5zFmYccyPQLo_u9L9ve3H060qOZqwgHP3H8Bo,2861
|
|
274
|
+
angr/analyses/identifier/functions/snprintf.py,sha256=tcT8Co7BgylxnMBXVFxosNLXZm9kQ2f10tnuHVm3ceM,4175
|
|
275
|
+
angr/analyses/identifier/functions/sprintf.py,sha256=h8py9VJ0wlexECWAvKHy9jnQGNB2WAenpvkA15ePrrM,4154
|
|
276
|
+
angr/analyses/identifier/functions/strcasecmp.py,sha256=vwJUmmhe-uK-D4oMoe9gjpVQC8FCl2yGNduZ8OM0qZc,841
|
|
277
|
+
angr/analyses/identifier/functions/strcmp.py,sha256=lxvlM5sJQ-wG_aYtX0L48aAPxbL6EB7hVdGQIxrXFmE,3489
|
|
278
|
+
angr/analyses/identifier/functions/strcpy.py,sha256=keXfHdjkJbgCt24B6ScNLmlUACvKh5JuJXeYZpPwrxg,1202
|
|
279
|
+
angr/analyses/identifier/functions/strlen.py,sha256=Ldsq5YQKHMc49kNtXq6Z_xQ4QG_6iIZhGC2SrUuDOCs,788
|
|
280
|
+
angr/analyses/identifier/functions/strncmp.py,sha256=gwPEl7McSzDj_A8y2xEM_KTIdXCDWs-DB-Mr5V1XSRc,3327
|
|
281
|
+
angr/analyses/identifier/functions/strncpy.py,sha256=WN93-aqwBbU_3zE1_b0JEU7_wMzdcKe753tZf-mEIH8,2023
|
|
282
|
+
angr/analyses/identifier/functions/strtol.py,sha256=rb8Flopv_qwk9_sdUZrLlMrlVd5ki8HsG7msrbtRvSc,2414
|
|
283
|
+
angr/analyses/propagator/__init__.py,sha256=cAhfgQp3iCDvNSUGk_QWBJEJKiIjchS1d_qPjnxiGHg,78
|
|
284
|
+
angr/analyses/propagator/engine_ail.py,sha256=VpbKxgutm0Z6XpNaYzb0PTPEi-Z9q3AU4Gl7R78wGdw,68253
|
|
285
|
+
angr/analyses/propagator/engine_base.py,sha256=dZhUl-zO-UyBCRmrTVa2Bmk-noOOxt-vxCc88zDiz9Y,1755
|
|
286
|
+
angr/analyses/propagator/engine_vex.py,sha256=crtOWTxi3xI6zH_0JzFfh-Zjp1Lld7TD2KOuNDoUk3c,12731
|
|
287
|
+
angr/analyses/propagator/outdated_definition_walker.py,sha256=w1OZpgRnbe5StxGvKVr4bcUScjwVxxuz4Zx_aVNUfHo,6766
|
|
288
|
+
angr/analyses/propagator/propagator.py,sha256=3qm2kn8bbPs0-KnVZUngHl5E8zkOW8w2MmAR60TNDrs,16014
|
|
289
|
+
angr/analyses/propagator/tmpvar_finder.py,sha256=lVdM0lIFF_ca3BLMbZVk3rtpyxJBKzwY9dib0lGpJug,477
|
|
290
|
+
angr/analyses/propagator/top_checker_mixin.py,sha256=BFPiaSth9s4Ij9K3LoC5l4rBtU5XJNbtu-U3r5YL-OU,342
|
|
291
|
+
angr/analyses/propagator/values.py,sha256=L41ue9PjPpA_tEe8YlTwv3ly9o3Sbo8uQESALfbUr4c,2026
|
|
292
|
+
angr/analyses/propagator/vex_vars.py,sha256=-wtTnlTfSdqENVjwWi6bvGdf9bYb_n1ccsvgQfSTiq8,1464
|
|
293
|
+
angr/analyses/reaching_definitions/__init__.py,sha256=tYDY49ybdwZzImF27Depq9wjqhUhD2KHr7oeIwR8IxA,2003
|
|
294
|
+
angr/analyses/reaching_definitions/call_trace.py,sha256=KA9Pk3tC78RGi-86NBlmGEZAmrQBi6QHNHoKHzcUTio,2172
|
|
295
|
+
angr/analyses/reaching_definitions/dep_graph.py,sha256=_2gAxumAIr-lYygg03RKdnxvF0Fws4-KlJkRyNzN-yQ,15893
|
|
296
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=-nu0n4zL85xnKzm0KbQAgDNMCPiHy9QJCVuqCs7PpuE,45476
|
|
297
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=pFBLMHpsMF_3KYwJP47mGtMUi2aYad-LOnhLV46dZ0E,42880
|
|
298
|
+
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=Ywx01PLgv-DYgHQ0zpRjh09RABIGpjXJs9z5r_h5Qj0,28033
|
|
300
|
+
angr/analyses/reaching_definitions/heap_allocator.py,sha256=rplEdFz9JWTUPUwbkm1k6h3QbNxnlowyiiFvTy4JIEE,2620
|
|
301
|
+
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
302
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=CuxYkaFKx9ebHMts2vuO_RDLhc3dQi21xvtIdeR4wdY,23987
|
|
303
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=G9HUdu1zV0O2vFG4sm91ZoE-pzgdIvWdopO2YocwWEk,24001
|
|
304
|
+
angr/analyses/reaching_definitions/subject.py,sha256=5ocfCO-h9TjqIBzpUq5KpDo1zZZsuYbbVasiriMwJ-w,1989
|
|
305
|
+
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=7q_JCZ0RkwaWEhOeaAd2hns9O9afso3r3BHYsdollk0,458
|
|
306
|
+
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=6TFqf5F4RXCt-KQ-L2wSXNE7xC2keg2xArG2MML3k38,11059
|
|
307
|
+
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=5PWr7HGaIxcZwkHqZCumXnGPgur5Gf1mE9a1a9izv2U,6426
|
|
308
|
+
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qUV3JRRkhxxAX92IeQgLkrlotjTy5SHtPXlFj_YHIhs,5047
|
|
309
|
+
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
310
|
+
angr/analyses/s_liveness/__init__.py,sha256=RvsnvgXtcwOs7z-5eZ28YGmwLKlp4nvvoninORfmtYQ,93
|
|
311
|
+
angr/analyses/s_liveness/s_liveness.py,sha256=YI-N62--Wo8B4yB5lvUi4mFBNqxwRxYq-p3zXR4qFNs,5213
|
|
312
|
+
angr/analyses/s_propagator/__init__.py,sha256=cXoSvjQgn6sWL6Xk6OTpUwlbYxal3fK6CdzNydqckAc,81
|
|
313
|
+
angr/analyses/s_propagator/s_propagator.py,sha256=rvqkFno4RUINAO1JWI5_hdKaPNaRCXCgAXV1j00p8JE,10461
|
|
314
|
+
angr/analyses/s_reaching_definitions/__init__.py,sha256=rKiD-jEZjalwmsWilNqvnIdaHrJewTHoeUF8D3N6xTw,104
|
|
315
|
+
angr/analyses/s_reaching_definitions/s_rda.py,sha256=DenMGJnU3L9BnQPmM26FYt1MaYi6NGbfq5uIljbwLAg,20874
|
|
316
|
+
angr/analyses/typehoon/__init__.py,sha256=VgeIwEHHosuO5yH5OyiS3sL5CabWtmD6bPtXE7m8fR0,66
|
|
317
|
+
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
318
|
+
angr/analyses/typehoon/lifter.py,sha256=AfKypzvMiSAmJo7hQlQCSAZCzbv7QQJ4EHALB7uZR3U,2821
|
|
319
|
+
angr/analyses/typehoon/simple_solver.py,sha256=MYZwt06msIhQnOhyiHpbZ0fABrWAlKRGFpo13JFzumU,49088
|
|
320
|
+
angr/analyses/typehoon/translator.py,sha256=2GbQgHvnTwBsNBz633D5zb-2mQFecmW4rKPhIUb0tyA,8432
|
|
321
|
+
angr/analyses/typehoon/typeconsts.py,sha256=Z9rsBDlcYfXjOjQPa3Tg061Krcm3sFevuw-7Ppqb2CM,7030
|
|
322
|
+
angr/analyses/typehoon/typehoon.py,sha256=ZP7hY7Q8JAgoYhyhpbENXsm9r9qfObWsgMZar8tp7zE,9317
|
|
323
|
+
angr/analyses/typehoon/typevars.py,sha256=zfPlrbw_yHpfCT2h69wjx1fUThbdbwfVAz-1ay7cdWI,15511
|
|
324
|
+
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
325
|
+
angr/analyses/variable_recovery/__init__.py,sha256=YSyQUtM1IPFWyIuVyK9wH0_mu9UXcZBmhcIuGEN_ODU,140
|
|
326
|
+
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
327
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=aVZEZQGghumFxOmRJcZk6WuPV4RqrOjJi3OJBLB-om0,28000
|
|
328
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=LFsRCvjXwXvWbfuJb1EsYTOYIP29S-gC7e6XKp8DnYQ,49809
|
|
329
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=1RGaSudPS5ziony3dDJwKqXMEGggRNVpTerB909uJL8,18916
|
|
330
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=HlH_Hd6z5i3MTBHRoWq1k4tGudz8PewiM76hYv8d3ZQ,4913
|
|
331
|
+
angr/analyses/variable_recovery/variable_recovery.py,sha256=AHtlqZTGaEXzHl4ezHw1nrJ3ATLMueKGkUsOCoK_FcE,21733
|
|
332
|
+
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=ZlPqgXKuHk4JfUe7YZRn6pM0o0P3l1XFEpY6E0L_R3k,14991
|
|
333
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=kDTaI-BhJx0jmEPHBgt0hiLA8rhqyNCGJ-9q23I-gTo,25492
|
|
334
|
+
angr/angrdb/__init__.py,sha256=52NPoE8esHOQir51GhIe4Sm1O76lNY1DP06UQnrPs1c,283
|
|
335
|
+
angr/angrdb/db.py,sha256=9j7EUJrc5lhiNd_sIKgpnPZlB1MYs5S-1XtG94RmSnk,6263
|
|
336
|
+
angr/angrdb/models.py,sha256=rd7SD8F5xbXGL2p34Dodc6oeXo6Ld0QWklfJFlodcV4,4785
|
|
337
|
+
angr/angrdb/serializers/__init__.py,sha256=Jf7Y8gvhxqpBjVKD0YAxfLMPr6GbKfdTqgoP35erWao,112
|
|
338
|
+
angr/angrdb/serializers/cfg_model.py,sha256=JYPZqOfQL5FFLdRChcFr8B6E9ZpF8qalAdx7RqQrRac,1302
|
|
339
|
+
angr/angrdb/serializers/comments.py,sha256=z0iIkJQn1VhlasGMN88wiDqRY7muABLojhfThgbTgIA,1566
|
|
340
|
+
angr/angrdb/serializers/funcs.py,sha256=vvfc7__UHu1N30C9f2pwzixE_Wabw-qOuW544Mk06vU,1715
|
|
341
|
+
angr/angrdb/serializers/kb.py,sha256=4_gfSDEYponDI3G6HskSOdmOmfeNGmVCbZ78WNqoDNI,3864
|
|
342
|
+
angr/angrdb/serializers/labels.py,sha256=lVHYJDdFVqByrDR6s-HgRbhkvo69tMNL0Q0i24nvliA,1460
|
|
343
|
+
angr/angrdb/serializers/loader.py,sha256=Kuo_j1DFtdJHDbBNfpNdnUL_qWblRhxBVgcBlfhE4UM,5236
|
|
344
|
+
angr/angrdb/serializers/structured_code.py,sha256=bwoIA_rNOrhEJ1cu7m-iKFvcLdpwVhJ4AJGBElHDJxA,4093
|
|
345
|
+
angr/angrdb/serializers/variables.py,sha256=N9URGhDV3W02dYXsILxxa0WWN5jG_EP0clSsc7kZB8w,2378
|
|
346
|
+
angr/angrdb/serializers/xrefs.py,sha256=u2gc_Jj6qrSJNNqbJAXBbctGUUqXDx39WdM8ETTFOKs,1193
|
|
347
|
+
angr/concretization_strategies/__init__.py,sha256=o2-tfTCSwXYGpf1eKqtq8T2EG-gwdYaRGbn1RNcygD8,3774
|
|
348
|
+
angr/concretization_strategies/any.py,sha256=TBsZQnR7NOulh3JOS8vkQuVLp5LrSLeA5HnJt1DSDnc,467
|
|
349
|
+
angr/concretization_strategies/any_named.py,sha256=HxUPAdaW56yV67tTrvcI8k7ah2Hcuie27_NtihLIas4,1380
|
|
350
|
+
angr/concretization_strategies/controlled_data.py,sha256=G7S86Pjy_82ClziaGXnhtpzfuhi4wm0giTjy5dHwrPc,2245
|
|
351
|
+
angr/concretization_strategies/eval.py,sha256=VUpbS1sX7H8mEy5_Izw4yByYUVzsLUfTSTF62TP6JlI,630
|
|
352
|
+
angr/concretization_strategies/logging.py,sha256=bjwIuGIG-DJcW3EQKfBRY9nIXTLMRJjhQU_cYNUVj00,1190
|
|
353
|
+
angr/concretization_strategies/max.py,sha256=dIvyHjvGaeEYq2Hmg6QtatiuWes-PxWLwcwFJLgFYqw,1003
|
|
354
|
+
angr/concretization_strategies/nonzero.py,sha256=mBE4EYnOSnaqaaB-zu8yhm5bYWMeiBqNF1zXNYw0d9I,571
|
|
355
|
+
angr/concretization_strategies/nonzero_range.py,sha256=71V5gIKgaIGN8cvzWfDC4TGxw8C50-r_T-82XH6-JV0,822
|
|
356
|
+
angr/concretization_strategies/norepeats.py,sha256=v4dzeQ2OBzBNnozoERrC7MM5Bagin7K_MIceOpmKmSQ,1469
|
|
357
|
+
angr/concretization_strategies/norepeats_range.py,sha256=kl0q6JzAkGcugrCFcfs-zeeEEL4sbalXjwfBn-k5BWw,1599
|
|
358
|
+
angr/concretization_strategies/range.py,sha256=cAZYRZVME6ry2M40qSIQtlzsuxVVOAkYV3BPQJKoPow,590
|
|
359
|
+
angr/concretization_strategies/signed_add.py,sha256=NPVmyY-hUPuz4NJJm27EAMnyLuEWo7tYXIJ5xeJ2QVY,1220
|
|
360
|
+
angr/concretization_strategies/single.py,sha256=pg6g8h6Z5XjUWkAaXnY6wRl2JDw4lNxcuuZuKQ1OsC4,413
|
|
361
|
+
angr/concretization_strategies/solutions.py,sha256=yOQy8aoJZOdeS0QsR9lk3KZSboiBFtLYfjzWPZjRaFQ,566
|
|
362
|
+
angr/concretization_strategies/unlimited_range.py,sha256=UA5C-233G0TtU2KM1G_2Ph-6auYDGwGteMPYMzivIc4,564
|
|
363
|
+
angr/distributed/__init__.py,sha256=cQ7_ntEp28hsizkfaVwcZXwsZdVviJ_Pld71RAndci4,175
|
|
364
|
+
angr/distributed/server.py,sha256=1EnCGD_53XhJf0VZrB0k5xmkR7ryMDERfJAUqoXr3yc,6671
|
|
365
|
+
angr/distributed/worker.py,sha256=ME5dK9u6GmQ3kS0B2tqH4ldvtwvX0BfoLnO0QZZYxkc,6045
|
|
366
|
+
angr/engines/__init__.py,sha256=09sWdnghgSDhA_bFeWD5HA1oBRFYf2j58j5vodzwyNk,1101
|
|
367
|
+
angr/engines/concrete.py,sha256=e0Uv06V-44IJsbCfb2h0rO9DZb7u3h1olvDjuDpVix8,7510
|
|
368
|
+
angr/engines/engine.py,sha256=SulS6TeVSFIDhClbdkMZpB38PLugaWrDr4pVkhwsEbo,8060
|
|
369
|
+
angr/engines/failure.py,sha256=cOT2TWuN7_PPJK-HA6TeNZslDUFtB18FrD8_JJF8PPY,1029
|
|
370
|
+
angr/engines/hook.py,sha256=jMPgloeh6rZIx_OtsCec6Ct04xx5xQLez9_XZfiW2TI,2581
|
|
371
|
+
angr/engines/procedure.py,sha256=g96ejTDcciIN982Tktx2HdcHmb9kxYOuXQSTV6aEafc,2550
|
|
372
|
+
angr/engines/successors.py,sha256=DmlNsfKCa6gvxnWgFuWKepAEWmwmyT-R87E9OJUGXUk,23780
|
|
373
|
+
angr/engines/syscall.py,sha256=OxKh8eNU-ksj9u2m_ms7R9yxozR8b_9--fHw3hZSVEg,2159
|
|
374
|
+
angr/engines/unicorn.py,sha256=-UaMRqBHj5l0zBmdF1MsHL-psqiWQlcRrHaZLDo49oU,24505
|
|
375
|
+
angr/engines/light/__init__.py,sha256=JIyPq9Dhr1q1gH9Z6JnX2DpN-xCOtPU24jgi6ORe-a4,221
|
|
376
|
+
angr/engines/light/data.py,sha256=yXJDDhGc5hKAb0YxKvLpkn1pJhZygNBrQEMyw0l7JeE,21241
|
|
377
|
+
angr/engines/light/engine.py,sha256=VydwEDEvEGcz6wtjmZA7YqyExL346ko-82VsvNl4NVM,45140
|
|
378
|
+
angr/engines/pcode/__init__.py,sha256=DHcTXj5R4rN0IRbMo5JiGd22jf2MQ6fTueY7Yxg4ppY,118
|
|
379
|
+
angr/engines/pcode/behavior.py,sha256=VReL0OtS30K-T0j0ibWMQUriZkqpogM5KPnC6ULnJ1I,29404
|
|
380
|
+
angr/engines/pcode/cc.py,sha256=DdXIk8LO98XZWW29Qmsp4Fq1a_0RXaxU-dyI6urcKLc,3178
|
|
381
|
+
angr/engines/pcode/emulate.py,sha256=u_Jqs1xWKUmXgBKVvOvani1NSGVzrUb7EHiYVGCR2JE,16722
|
|
382
|
+
angr/engines/pcode/engine.py,sha256=71ZpsHk9lPJ9S6qLPVo-3LNmXgW6NuCuPcPAfGHXnWE,10476
|
|
383
|
+
angr/engines/pcode/lifter.py,sha256=k1h5BK3uuwVfjQn2Vc1TOi4cdBnJVvO7sTi-sOQlF3k,51524
|
|
384
|
+
angr/engines/soot/__init__.py,sha256=3ljOnisTOreaJ5KXOwSlKVdNDvvcaPcj4xAue5lwdiQ,65
|
|
385
|
+
angr/engines/soot/engine.py,sha256=I5ek2e-49XvXUTgQc0hxUOHgFBYwxF1MComA2Tq1zXE,17016
|
|
386
|
+
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
387
|
+
angr/engines/soot/field_dispatcher.py,sha256=WelL0r0f2hSUki4Xw0myHlzvnzqhnN9l2JyByJsB-2Q,1893
|
|
388
|
+
angr/engines/soot/method_dispatcher.py,sha256=Ooj7DwtXDcgvw6Wt60Q7Z_Xj6lEKR79ncVW_HCZphkQ,1759
|
|
389
|
+
angr/engines/soot/expressions/__init__.py,sha256=m4QpIXjKCOK4PjrGF8FuBo1FyQN2FufXdhv5VPy2hRk,1741
|
|
390
|
+
angr/engines/soot/expressions/arrayref.py,sha256=NlSKRWDFyq1FSj6COj3KaBq_Zo7rBKVLVI3m6iuhDlw,892
|
|
391
|
+
angr/engines/soot/expressions/base.py,sha256=NKWks35CnCBtW6bWqnSWVDk6HUrk5fg1INrmzDZAP_A,494
|
|
392
|
+
angr/engines/soot/expressions/binop.py,sha256=8u6bII365ueXXQ6Mu4jmdYNRiRmAzPpERRtfRB1XJI4,816
|
|
393
|
+
angr/engines/soot/expressions/cast.py,sha256=XOYeURs36tgTpOSL-usHqJbS3-2pTQ8DzNLACno491g,788
|
|
394
|
+
angr/engines/soot/expressions/condition.py,sha256=gtNd-rcRbZOWKBRVqtY0Tj9rPOBKBsVqIRPq1vxGnpA,1295
|
|
395
|
+
angr/engines/soot/expressions/constants.py,sha256=BoitkrJXqgd6rMHX5saAgwkG35c_nE4DH7lXWbYjhtU,1387
|
|
396
|
+
angr/engines/soot/expressions/instanceOf.py,sha256=6Kl75uggrCFx6jv2lAxYCiZdEjDHvkM1nR33NEQ_XQE,348
|
|
397
|
+
angr/engines/soot/expressions/instancefieldref.py,sha256=KWx8sfhLHIxlbScdp_Eg8IvWDmSgoXhxau4S4VOJW70,269
|
|
398
|
+
angr/engines/soot/expressions/invoke.py,sha256=DQ5GrNNE0CLwFwmvi1PmE3Ek_VH0GOEsqid5K3RUwBc,4485
|
|
399
|
+
angr/engines/soot/expressions/length.py,sha256=Ae2UIK1UCbUm65Uq05Xkzerro4quOA3knv_mMbnt5hc,224
|
|
400
|
+
angr/engines/soot/expressions/local.py,sha256=n8TYrHylKmj8a-zGbFawnF-ofNjo_QShpvCDGcnfS_s,250
|
|
401
|
+
angr/engines/soot/expressions/new.py,sha256=2U95oCS4F07H1U5cizyqS0Q0ferF6AucuvfZf_jLd7M,587
|
|
402
|
+
angr/engines/soot/expressions/newArray.py,sha256=LP_GX8-WGu3Nku6NdCyZMrW6xNgMh97gDArsq32uySM,2016
|
|
403
|
+
angr/engines/soot/expressions/newMultiArray.py,sha256=-1-Ga3K-vJYONiILWpnPfGMhn2wFSD-gOHIw0zn6GtY,3424
|
|
404
|
+
angr/engines/soot/expressions/paramref.py,sha256=zkL142Vb4oDWlp-pv8NZSQcFsx5fmuCh_YgbEhoSiRI,259
|
|
405
|
+
angr/engines/soot/expressions/phi.py,sha256=XS44tYMD-70WCL0EH0BdVcLIfYXLEHgSW9Tywl67uIk,1227
|
|
406
|
+
angr/engines/soot/expressions/staticfieldref.py,sha256=LlrlCaDSBv9tCa8TNK3UskVshv2bT8dyt8JpdI3gn1I,267
|
|
407
|
+
angr/engines/soot/expressions/thisref.py,sha256=ofsOlxQ9TX992FEmWRDhDuxZ34F56QnzwVxWrrJ0dOg,184
|
|
408
|
+
angr/engines/soot/expressions/unsupported.py,sha256=PAg0gAByaPAlj4GTsYJMNc72MPkLPB3xjYNRw6EbPYQ,148
|
|
409
|
+
angr/engines/soot/statements/__init__.py,sha256=encic6wfU24GoZQ2l7agO8k4jvuuTv-dcW5A4cYcb5E,908
|
|
410
|
+
angr/engines/soot/statements/assign.py,sha256=Wdvk58EkkezYBLnGUtWuMxi2FQavO3VuFNPHvLgab0Q,1306
|
|
411
|
+
angr/engines/soot/statements/base.py,sha256=vLl-UgswdlscZ2IrelNFEzS0y1TKwKaSCrPfqfkf_G0,2095
|
|
412
|
+
angr/engines/soot/statements/goto.py,sha256=sh_Xl-ZMyG3BZiT1PSCYq4ap0RLsD_c-ZZYP9T3_pVU,366
|
|
413
|
+
angr/engines/soot/statements/identity.py,sha256=d1ldd4tJiRPuh2TOTAkjfL72-lWmPinoOrA1cBXk7zY,456
|
|
414
|
+
angr/engines/soot/statements/if_.py,sha256=w_lUFil9yerrrcVcVJAEMtF7Ecw5mSpCSda0ZtyaNeU,601
|
|
415
|
+
angr/engines/soot/statements/invoke.py,sha256=HbR2ke7Kcrns8e3dzjxYoxEzm4UnWjQL_EY9Vz1BWTY,319
|
|
416
|
+
angr/engines/soot/statements/return_.py,sha256=4IIqto1nstQ-pGJYp8c7mrPRVyy41yeofQTqUcq9nUE,501
|
|
417
|
+
angr/engines/soot/statements/switch.py,sha256=4-yRehzFKQLtVH-mMG5KynsVH8oSNW8--R2mdWIJacY,1342
|
|
418
|
+
angr/engines/soot/statements/throw.py,sha256=g91kabZW_SL3WPXG96-aLtmEVi-hcqJ9qqC0xmpncrI,395
|
|
419
|
+
angr/engines/soot/values/__init__.py,sha256=k68Er2p90A4K4BXnpeKjRRjNcTICu5UFemmtznqSmNo,809
|
|
420
|
+
angr/engines/soot/values/arrayref.py,sha256=AZEe_L5G9GhXxad0WRrfga1iX4f_LJ7EyZtUu8tXKhQ,4372
|
|
421
|
+
angr/engines/soot/values/base.py,sha256=nTETgLhh4EST1ujvbXG-3fG-ekAMF2f6WiQzsjDtkI4,156
|
|
422
|
+
angr/engines/soot/values/constants.py,sha256=RD1s_wPPRWk8D0527oTW6Ke06iIM7rURrmJQ-vNM3xg,438
|
|
423
|
+
angr/engines/soot/values/instancefieldref.py,sha256=YS2brSaXfQtgRFwu1q3s5fnQNnjnNyUHHLzhVp4JN50,1628
|
|
424
|
+
angr/engines/soot/values/local.py,sha256=KUnMtcxlemPXhu7zufUDUluaLpaWs4dhEbg2hK30YC4,420
|
|
425
|
+
angr/engines/soot/values/paramref.py,sha256=2WKoP2jp8fuiEErU6N3UE3qO8YXUEyD685TiqK2utgw,448
|
|
426
|
+
angr/engines/soot/values/staticfieldref.py,sha256=xdNB364-vz654ABI5NWvfsyRNOGx580e8aqn4_gBDc4,1275
|
|
427
|
+
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
428
|
+
angr/engines/soot/values/thisref.py,sha256=zQftNFC0An30uM0agckQDv0b6gGXQcBVpOEWO5YhAHU,5774
|
|
429
|
+
angr/engines/vex/__init__.py,sha256=JUtxG8g-tPRWd9MTldrhXkBJEIp-7Zxwz74kw3qCFc8,130
|
|
430
|
+
angr/engines/vex/lifter.py,sha256=WwkhnSUt2YslRFRMQAz1R8YZrYT6Ki74qq7eMkd77sA,16894
|
|
431
|
+
angr/engines/vex/claripy/__init__.py,sha256=SEww9TsjlVeZyHFAmLgNEM7pS1bncoj1lkChbI-afc0,75
|
|
432
|
+
angr/engines/vex/claripy/ccall.py,sha256=vb5B1t-94F1manJ6Ws3oe_8dq_wSYlOTRM8SP9aGRXQ,81781
|
|
433
|
+
angr/engines/vex/claripy/datalayer.py,sha256=TrtcQT48QtWSfXckHdkyVlRkFrobVUfW2inS3_GzaYg,5031
|
|
434
|
+
angr/engines/vex/claripy/irop.py,sha256=Y1zmrbI3NVbmoOfcuhTyz_b-HE7HnaY-z4rnrCljlTQ,45601
|
|
435
|
+
angr/engines/vex/heavy/__init__.py,sha256=TmSLq5iGfcKH3lGyZXK961eVN9jU8jqHpyVM1ifAIKw,236
|
|
436
|
+
angr/engines/vex/heavy/actions.py,sha256=63OTi6r-7cD0MUg3D3NugdBf1ioDrsp1LLmE9UX6WIU,8906
|
|
437
|
+
angr/engines/vex/heavy/concretizers.py,sha256=ADGhnwu4_SscqllBwMHff8C50l_UEekFQJ1SpWuivEY,14668
|
|
438
|
+
angr/engines/vex/heavy/dirty.py,sha256=8DSw6Wz_9gFYpph2tBvvhePhyQcUzaJGLbwhN7WBydU,18622
|
|
439
|
+
angr/engines/vex/heavy/heavy.py,sha256=A8BV6JgMPVBUmY6wboyB8GEWlvUmEsfr2O4AXeXWFX4,15667
|
|
440
|
+
angr/engines/vex/heavy/inspect.py,sha256=wqeiRSBwvP-ZYDzYI5bfkjc8tyULG0SZLufkekfMO10,2352
|
|
441
|
+
angr/engines/vex/heavy/resilience.py,sha256=_jz0OpgCASmyeTBZjTtccyL7vmTgI5xh6_JAOUJe0xk,3754
|
|
442
|
+
angr/engines/vex/heavy/super_fastpath.py,sha256=bJu-tn4WuMo0yXud8M0MPaeX54AHn_4koHGeovqTRkg,1193
|
|
443
|
+
angr/engines/vex/light/__init__.py,sha256=ZAAMq2Qx3ojxSA6VWzzm1J_F3hhbd2bZ8qDCo9Y5m0Y,143
|
|
444
|
+
angr/engines/vex/light/light.py,sha256=JaeTSqYgH4O3daiJE-1h0USAFB_hB2di86TOtPUxeng,21686
|
|
445
|
+
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
446
|
+
angr/engines/vex/light/slicing.py,sha256=F9JAnlXeeuWzbVeuL63sIFJA5PKDsRFxRMC_RYG_qvQ,2058
|
|
447
|
+
angr/exploration_techniques/__init__.py,sha256=Lid_rJtuPRpO80233p-OKMDBonIxRCzcfRLuVnaNmbE,7074
|
|
448
|
+
angr/exploration_techniques/bucketizer.py,sha256=v7co27fAWKsGOQkMEM6LvGhGMod1J2Hud0ihXYzSIZE,2587
|
|
449
|
+
angr/exploration_techniques/common.py,sha256=PwtAuUu2WdIKv7pKZ9DUj15zA8nOl1gnddKZAsY33GY,2272
|
|
450
|
+
angr/exploration_techniques/dfs.py,sha256=vSlZoyoMSxDMd0hBlxpxMhW93UXlUMxgBSksD5myBAk,1202
|
|
451
|
+
angr/exploration_techniques/director.py,sha256=6OX2X9kEMIq5nHpSAgUg6_l730kjLTvpFxoXLqwSwys,17844
|
|
452
|
+
angr/exploration_techniques/driller_core.py,sha256=KWOMNlkT5dAHNkQQkS1zAfnKi_VJbFbQYxC9ldHjyqo,3522
|
|
453
|
+
angr/exploration_techniques/explorer.py,sha256=jXNNVaBKl0AhoHOO9egbT5zPVDbTAJRtLOpeNkzVFUY,6230
|
|
454
|
+
angr/exploration_techniques/lengthlimiter.py,sha256=Ac4rd_besO_y6ZKvFunHWkrS-gIX94UUycV1MlisAQM,585
|
|
455
|
+
angr/exploration_techniques/local_loop_seer.py,sha256=GhrOu-OWaBhMLjAccVK8JTLFhL6yQWjOyn0eqs8ENkk,2600
|
|
456
|
+
angr/exploration_techniques/loop_seer.py,sha256=2xhERJQCwg9FxhGSQYnlhLXqzPlD6zIoF8GTko6KM3U,11571
|
|
457
|
+
angr/exploration_techniques/manual_mergepoint.py,sha256=QGlBLoGCC_fy5oB9mXpJ7TjuUxJDLJGp1Gx0P7x30Ck,3133
|
|
458
|
+
angr/exploration_techniques/memory_watcher.py,sha256=qHkI6xO5VRzumK6eSjPX-BklFKmO3kWKccJMNcJOSgs,1306
|
|
459
|
+
angr/exploration_techniques/oppologist.py,sha256=v2bZqTZVaIJwtKJ__KTHpkMEH-8tHmHDXhmBsH6JfYs,3514
|
|
460
|
+
angr/exploration_techniques/slicecutor.py,sha256=eqsobfi27RvNUPx5YiNNTx7d0zQF1H0db0RZ0dvahoU,5161
|
|
461
|
+
angr/exploration_techniques/spiller.py,sha256=LhFJlZuuKeRS_bw7J2uoKFWN71nZUR2-AdzM3KOMeQk,9411
|
|
462
|
+
angr/exploration_techniques/spiller_db.py,sha256=7z-JrDMcGMzn6u4D8EW1y7UtsdW7LcJl5_rm7MgVfFg,853
|
|
463
|
+
angr/exploration_techniques/stochastic.py,sha256=ZHVNKLsMXLaVLu00IQkYSCDqp5imXAwuu9CwW4lOuZo,2032
|
|
464
|
+
angr/exploration_techniques/stub_stasher.py,sha256=c27ebdEJsUjz1ZFYs300edcm415ALNbDZHi_q-QCaLU,494
|
|
465
|
+
angr/exploration_techniques/suggestions.py,sha256=KjUUeijJEI1DBgxVZcXzlpBeIIdveQ0UaDJou9F2TSo,7000
|
|
466
|
+
angr/exploration_techniques/symbion.py,sha256=xdlH0ave8tTx2L29ThZozkmIFGt1zcYJcTnhAppvizU,3157
|
|
467
|
+
angr/exploration_techniques/tech_builder.py,sha256=Kqn7S3Hg-_H9zlAKc4x_Viet3bZas-3ARLjE_8ry7Qk,1621
|
|
468
|
+
angr/exploration_techniques/threading.py,sha256=c3bKjR0-k4R0MCKEnoy9qTmrvaOUk_IQfku2AZaoOB8,3011
|
|
469
|
+
angr/exploration_techniques/timeout.py,sha256=GQBltx_ZKMbiCd9Mcq2-FwhkfwMZVyeAaCYh1wuQP9k,958
|
|
470
|
+
angr/exploration_techniques/tracer.py,sha256=fQLxn07NKGKqCcNKb1M7uF031mcdd7RXa1b5UaXb0Bc,50099
|
|
471
|
+
angr/exploration_techniques/unique.py,sha256=uA-BynLkUw9V1QJGdVGHDMmH020I5LWH8xdBclyXJKo,4448
|
|
472
|
+
angr/exploration_techniques/veritesting.py,sha256=AD2HIO1RIYep2unyxpLfyhMqb9P7CKte0SKSkfuw72U,1385
|
|
473
|
+
angr/flirt/__init__.py,sha256=QoG-i5KCgb8t4Gr6UIGg7xvjDUYABUPA0KB9MTxdW9Y,4448
|
|
474
|
+
angr/flirt/build_sig.py,sha256=3vQl6gZWWcF2HRgTQzFP6G3st8q2vpPHzRa3GfwkBnY,10036
|
|
475
|
+
angr/knowledge_base/__init__.py,sha256=U_gYlx5jHGQW2c9mTeiKJCNKD0A22faQOK1wYCyqFL8,77
|
|
476
|
+
angr/knowledge_base/knowledge_base.py,sha256=FdcyJ75sfXtQNODbVdsk7vqxQSDjgz39RGwmtlQ575w,4598
|
|
477
|
+
angr/knowledge_plugins/__init__.py,sha256=QwDrpEQWJpBZ9txH8qNLBqHpavyx9w2C-o1GET32LIg,732
|
|
478
|
+
angr/knowledge_plugins/callsite_prototypes.py,sha256=w9JI95xs4XUaZfIMjyp3hE_rEu_UF2ZxEx3bgLdIW24,1581
|
|
479
|
+
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
480
|
+
angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipYKJgGH9vxLLA,1037
|
|
481
|
+
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
482
|
+
angr/knowledge_plugins/debug_variables.py,sha256=a2530sF1dvMa0_seEVeMgXi7KpBPeSgJgBaWL9kvSCY,8068
|
|
483
|
+
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
484
|
+
angr/knowledge_plugins/labels.py,sha256=H9_as9RFSKmth-Dxwq-iibXo007ayvS7nFGnYtnN8jE,3146
|
|
485
|
+
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
486
|
+
angr/knowledge_plugins/plugin.py,sha256=8tPrsgo1hsZG3ifXs4mWsKkeyB03ubfZdY5YArWw9-Q,766
|
|
487
|
+
angr/knowledge_plugins/types.py,sha256=aowYQpmnLwZQWX0Qly_WBoG153-J3Sos3CYTZIs2A_Q,2073
|
|
488
|
+
angr/knowledge_plugins/cfg/__init__.py,sha256=Y6sJ3L81gG8oDqewYYuIY27-cxXN3nvcgUg4FRdXqCY,418
|
|
489
|
+
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=rNNAJU8yXQM7hQCXeaYkhPbTXTTiQjoL5hNfjR7LWJM,2635
|
|
490
|
+
angr/knowledge_plugins/cfg/cfg_model.py,sha256=B27PQj1DjAixok1zhNWvmsyRNBpq0Q8IYBqIql0wBc0,41318
|
|
491
|
+
angr/knowledge_plugins/cfg/cfg_node.py,sha256=zP7TwJpTOvJc6HNzPvBSGlDuTji5GHLKhBzG8pYpfI4,17189
|
|
492
|
+
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=QCnRABhVQ2_7yNpCHp9jcesUonNmY3ylmBuHjx7D9Q0,2072
|
|
493
|
+
angr/knowledge_plugins/cfg/memory_data.py,sha256=PX2KTxU4zBH-PLXga_aP5f3pimFXJam1H20D0_c5SqA,5005
|
|
494
|
+
angr/knowledge_plugins/functions/__init__.py,sha256=H7BtOv-7va_VyNeFK4zI5yRgKSA545iBhnkkVqkjWTY,112
|
|
495
|
+
angr/knowledge_plugins/functions/function.py,sha256=3yY-27GKYvfStYCs25hi0XgstGjNVciDp7hneQ9UB4M,66993
|
|
496
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=-Ujdu3Uvk6Wu4QNJbH8nHGX-NGXLyPYa4mvrEsii8hY,18956
|
|
497
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=EqlSUGgPfoJlLmwnytVqQtxnMm0frcFdYdC9yg7FmbA,11815
|
|
498
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OWFiGdgB8Qbgbz31NhjAO1FgJgS_83uGovUYZE2de10,4968
|
|
499
|
+
angr/knowledge_plugins/key_definitions/__init__.py,sha256=fVWRMdY8j2mUWwBKlgcmtnNDGS8WF1UbKjfb6xpeCM8,432
|
|
500
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=6UnIMnmIq9Zl4_yahMZbP3Me2f12XQZW8dgNDxVKrWQ,10841
|
|
501
|
+
angr/knowledge_plugins/key_definitions/constants.py,sha256=i-44XCfMyS2pK8AwW2rL0prhtxvsWB64E9pm4eDSUcY,673
|
|
502
|
+
angr/knowledge_plugins/key_definitions/definition.py,sha256=_7pKjrHlRH9EMZZX3FssWzpuV9RFzkWroBg81QQZJ20,8568
|
|
503
|
+
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
504
|
+
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
505
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=-OVT7-ggXOcpf-64uEeVMXkgDcCGvIGqRhRzrvbgys4,3288
|
|
506
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=CzGqtwsxgI0Dnirzu8s-yooZTHYo3na1gu5Il7LDfc4,40229
|
|
507
|
+
angr/knowledge_plugins/key_definitions/liveness.py,sha256=yq_-ztA1jjCSOZlYBjM3HPDs7Nhbml1F2q1MeFGj15w,6958
|
|
508
|
+
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
509
|
+
angr/knowledge_plugins/key_definitions/tag.py,sha256=QWtBe5yuMei6t2NRPwolVyUa1XyY2khMeU6pQwb66iQ,1710
|
|
510
|
+
angr/knowledge_plugins/key_definitions/undefined.py,sha256=9_lhbftnUqPGBc1boOoZtUQnNFn0eXsl3Xty0y79z2A,1273
|
|
511
|
+
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=i8n31KYwD044UlJ2qswIPUWYr_tutnBQOy6pT_ZsBU4,1547
|
|
512
|
+
angr/knowledge_plugins/key_definitions/uses.py,sha256=mVLxLcX1kXhHaj0rKvoUuIIgTuM9EcUnGoNIc6ppXSU,7352
|
|
513
|
+
angr/knowledge_plugins/propagations/__init__.py,sha256=i7cAkmFFf6AYXJxQGREVCGRbwVWbJedpYRipxF9irBw,135
|
|
514
|
+
angr/knowledge_plugins/propagations/prop_value.py,sha256=IMNN2pDh6OFIazBdA8sEDfYWMC2KPls0SpyoXM5DAVM,7579
|
|
515
|
+
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
516
|
+
angr/knowledge_plugins/propagations/propagation_model.py,sha256=7V58tWvKKWHIfp2aTKy4U8fhbWCbtU-3peZn8TRUvLw,2757
|
|
517
|
+
angr/knowledge_plugins/propagations/states.py,sha256=N83buwSj21YYLPpMB5MutvQta5teK9LBhI4ZGrRVcQk,40072
|
|
518
|
+
angr/knowledge_plugins/structured_code/__init__.py,sha256=sisvu86lcGWaGdVGTXBe5RunB4iGucE9Y7cEA8rhL5A,78
|
|
519
|
+
angr/knowledge_plugins/structured_code/manager.py,sha256=4yiSc0G8B8aZnTIuT-aTmfq9ovOU_T7Hgnmls1-Gwwo,2079
|
|
520
|
+
angr/knowledge_plugins/sync/__init__.py,sha256=Xt02F57oDnp9EZFRhD8w0czT-_aKNTcbVRPQ58pWcRo,79
|
|
521
|
+
angr/knowledge_plugins/sync/sync_controller.py,sha256=H8jgr2oFuIIxIoj6GEs7qynP2_-AomWtiJoKT3y1jbY,9134
|
|
522
|
+
angr/knowledge_plugins/variables/__init__.py,sha256=xt2P3IWzwGWF2xXeGhyMLy2gnrrL7LAZHN9or0q_hkc,95
|
|
523
|
+
angr/knowledge_plugins/variables/variable_access.py,sha256=htUrF-AP1aHHtmKRj-hlv2cVMEUTiGmJTb1kUscIrOU,3713
|
|
524
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=TIN1FEv5d5qcw3YUfZepXR_n8d6DbvA4GD-9GPoXV4s,48925
|
|
525
|
+
angr/knowledge_plugins/xrefs/__init__.py,sha256=55fxWjU_hHDdcVoOGBB0SI7np8rn0NR-xbQhtm47dnI,129
|
|
526
|
+
angr/knowledge_plugins/xrefs/xref.py,sha256=qQdi-g-rUwtkYAhp0Q31SSyTCHkpZjdwm9LpXJfnjvg,4854
|
|
527
|
+
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=z7FKHR7RVbrmi2bxGx46IVcOyxc-Q0l6dubjpUo4mxE,4015
|
|
528
|
+
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
529
|
+
angr/lib/angr_native.dll,sha256=66JfW6EA9IpVdgEGu_1_0cWC_Exr009i-APQlJoW-XY,19257344
|
|
530
|
+
angr/misc/__init__.py,sha256=ejPi-COLIyWo4ipKJQLydw5xC96hGyAvcfRNHckvWsA,272
|
|
531
|
+
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
532
|
+
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
533
|
+
angr/misc/bug_report.py,sha256=ij7XdCiW5hADjmfw758OPQ16p6-FNCeRDcOJLbn570s,3954
|
|
534
|
+
angr/misc/hookset.py,sha256=NR-Lmnh456XC2qATQhdGZOhdeobNPLF48JIr0sqv_jw,4504
|
|
535
|
+
angr/misc/loggers.py,sha256=k5pckhOzGARqjlbUL9gmjIaIbqC3ezrNZNbgHtpxpZU,4242
|
|
536
|
+
angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1311
|
|
537
|
+
angr/misc/plugins.py,sha256=1NzhTd0rSY9oPElCeMGMZXLHEclOWVIEgdq0JvxpUMc,9385
|
|
538
|
+
angr/misc/range.py,sha256=qxQAzHhMPdow-x-VnzZFOOS1PQfKAI6MPl_8pB36p70,546
|
|
539
|
+
angr/misc/testing.py,sha256=b3CWR7bv38RP-IjGKKjZmvCLyYvvSNPSdZu5MgniJ50,626
|
|
540
|
+
angr/misc/ux.py,sha256=52G7MJgULeZKsBlTlk4_qDHcG2hhBRJ10SM8HLn8uL0,742
|
|
541
|
+
angr/misc/weakpatch.py,sha256=j0BUwmv7IukHlnGqmLWxq4ZnqtyGeDvI4n7RCWhT0UQ,1488
|
|
542
|
+
angr/procedures/__init__.py,sha256=UrYuVQG9k_hngrzHYSODjNWx7G2gJoHa6UqP6YPfFgc,154
|
|
543
|
+
angr/procedures/procedure_dict.py,sha256=wRe55jaslbY-_5fOoLVil3g2emQCV9NbJrXdbGGgr5c,1900
|
|
544
|
+
angr/procedures/advapi32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
545
|
+
angr/procedures/cgc/__init__.py,sha256=GFTI1FuWVFmdqaBoNSFREIw6JiGKw6ajJVBbTgu9j28,76
|
|
546
|
+
angr/procedures/cgc/_terminate.py,sha256=PjYwBy475tXOEnxv9oPXIxndCgU94L2_KsgP0fxUhtI,259
|
|
547
|
+
angr/procedures/cgc/allocate.py,sha256=te23YiFch2SyJZ7PxhAHFDg1Kl7UJCDIv59I_NZahlw,3288
|
|
548
|
+
angr/procedures/cgc/deallocate.py,sha256=xX6HLeiCmyLXa3sTrsiQ6Yipln34zelHrZyFoGgEZHc,2200
|
|
549
|
+
angr/procedures/cgc/fdwait.py,sha256=ALUPukixYhEIa32xd5uSrBBpwnFrHsKTS6KQihigA-I,2723
|
|
550
|
+
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
551
|
+
angr/procedures/cgc/receive.py,sha256=p9JETUIVNDkyXuSbv1ig3nc_qDK7FAzV1myBhGJ-KeE,3665
|
|
552
|
+
angr/procedures/cgc/transmit.py,sha256=7LQ7lOmxaNRLFav25gGunzpV5e-uAoBE0VJioVdICVI,2388
|
|
553
|
+
angr/procedures/definitions/__init__.py,sha256=Ves2svLsi3HMoGLMBnyndHa6CPdA2TQJKP__c_CTzoY,31974
|
|
554
|
+
angr/procedures/definitions/cgc.py,sha256=BKfb4PRT870ZYi343JmZxHRXUf0FiwamcznYt7_aWlc,495
|
|
555
|
+
angr/procedures/definitions/glibc.py,sha256=14oHAmlUpCEt7joWYBSTJO2lVJBfkbrqb1qjjAuO9xc,394226
|
|
556
|
+
angr/procedures/definitions/gnulib.py,sha256=l8n6ea2Ea8cgyDVQXK8Ooy0IngWZQaMIfe9Qv33gyxA,1116
|
|
557
|
+
angr/procedures/definitions/libstdcpp.py,sha256=bx4MAJeZKUgP9dF3HCgiAlp1lZBt4aHO8k9kpbYo-S8,735
|
|
558
|
+
angr/procedures/definitions/linux_kernel.py,sha256=jKLr8gduj5mDAySH2O7osHs_ZMk5M0FvfTkym89xth8,238922
|
|
559
|
+
angr/procedures/definitions/linux_loader.py,sha256=8QCIYyKSmFFmWOHXpT9zSXd4NOItogPiMiPpVDMQXTA,254
|
|
560
|
+
angr/procedures/definitions/msvcr.py,sha256=JzlpJBaFBbbSgN5moN-FffbfTp-KMgJToT9xo-DOu7E,636
|
|
561
|
+
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=lON1hncNDZrblzUM5W7CF5GA2bOQe5jIPSfkEfBhzE0,1829
|
|
562
|
+
angr/procedures/definitions/parse_win32json.py,sha256=8CywtK5yQZq9D9W3yalUypkISO3CT4M1Y8FAX8IDz0U,110460
|
|
563
|
+
angr/procedures/definitions/types_win32.py,sha256=Iv1JT_JwzhfUpnxcKMgAwSw_huuwhi_rKkD7NMO8sow,9998099
|
|
564
|
+
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=S8VpKNg13xMUuKeH8OzZ00aKZ5fdnxwDKtdjSR76yIE,1493
|
|
565
|
+
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=x5F0811JQu1Pz6eOM_JihyhleuK3A5T_3_mE76D9PCg,1035
|
|
566
|
+
angr/procedures/definitions/wdk_clfs.py,sha256=X5ncPoSffTc0-nydLtO84v-Qc8ipZt4Lb3bOjzIJYis,22887
|
|
567
|
+
angr/procedures/definitions/wdk_fltmgr.py,sha256=bPeiyArupsPwIGdhRR3mUFv5lkUfKt57U3D4La2CRug,112016
|
|
568
|
+
angr/procedures/definitions/wdk_fwpkclnt.py,sha256=DN1GnebCg3QfoSAtWw0EGWt5iAHw6wtKQNrAcR7qAbU,1765
|
|
569
|
+
angr/procedures/definitions/wdk_fwpuclnt.py,sha256=7ue-d1icxdg7T2fHA2aEcWeu91Mv7lhRE0mvWd-J9vY,68481
|
|
570
|
+
angr/procedures/definitions/wdk_gdi32.py,sha256=OZ_hyGcWRMEjAY9e5nnGqYNOUYM1V363ymw5xNDhMsg,37342
|
|
571
|
+
angr/procedures/definitions/wdk_hal.py,sha256=GfROVr1lGcLCaIlRwlCFhZpx4_ujfT-jJzsUfULSMOc,11450
|
|
572
|
+
angr/procedures/definitions/wdk_ksecdd.py,sha256=luChBbna0hjTBQot42yNvPtjCvt-NpaJxJZkhq689hQ,12562
|
|
573
|
+
angr/procedures/definitions/wdk_ndis.py,sha256=YL95tepShtVXZhAR7LlvRJbuPZXUROBtgA2nX4ANXKo,33983
|
|
574
|
+
angr/procedures/definitions/wdk_ntoskrnl.py,sha256=C-R_M5SRYisEWCLmf48rtL9faNtt3psMso7-Rba5FNo,593085
|
|
575
|
+
angr/procedures/definitions/wdk_offreg.py,sha256=ejxUlQYRgsv7JC4WYtVBOU_QbZa-6rWACVkyYTVXVLE,9897
|
|
576
|
+
angr/procedures/definitions/wdk_pshed.py,sha256=OUwv5CkZ4T2OwVBQenwtDLMdUFHZ9jP8As4FeYln0Y4,2015
|
|
577
|
+
angr/procedures/definitions/wdk_secur32.py,sha256=fHa-TCNydjCjJjsD31yiiXP9lvjHps55BEL2_D1yoDY,3513
|
|
578
|
+
angr/procedures/definitions/wdk_vhfum.py,sha256=6JrnaJiQC1DDxsQ2j4nd5DI4_j7JhCRzVNy1pRGE-Io,1977
|
|
579
|
+
angr/procedures/definitions/win32_aclui.py,sha256=tQnR2KRDxhNuy6FiZ5hHRThznmxX2j0yL2bFVnyKRKw,1588
|
|
580
|
+
angr/procedures/definitions/win32_activeds.py,sha256=NxW6vlPM0fE4y8frS7E7ED18CLocHAyO4L29sOhSBVw,7912
|
|
581
|
+
angr/procedures/definitions/win32_advapi32.py,sha256=iksJEuLI1V6mp2nmOxU10s1y2RQilxZWO_CQzocLo-M,310964
|
|
582
|
+
angr/procedures/definitions/win32_advpack.py,sha256=lBnHr2bmZPyg-yovZ5-Wn2EgCzjVyKQqoWuy3DV1XSw,22349
|
|
583
|
+
angr/procedures/definitions/win32_amsi.py,sha256=BSAsp9qRIZkAtLJ0VLXcnuVnSk5-emYANhALVeBoluE,3465
|
|
584
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py,sha256=az9qMjhFqcq-Vqli43k1veax4p5mlFsrPmHmOBABS34,3804
|
|
585
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py,sha256=JarQaBQxv8gIEZifX8c5Q5ZPDQUDNvobew1VwUWaqu0,3086
|
|
586
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py,sha256=5g6B8OZvcVwqMdfaWqHZcs7W6WCBe7wlsx0wZLk-k40,957
|
|
587
|
+
angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py,sha256=NMCHyHnefOIQclH9F-ufQGqMRzbUfO-5N1BEb--I1N4,1021
|
|
588
|
+
angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py,sha256=IN--1Ag804KqFoc_yK568Rzyn9rn8BonuoTWxhRkX9w,1095
|
|
589
|
+
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py,sha256=CfqCEatiCirgzNW5qwXdpbX5-Q7ZrvtlREXNzE5-MpM,1169
|
|
590
|
+
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py,sha256=gA4AfqLTQAZ20E22nc3nHeH-mTBOHvpt_vTZBO_1oN4,1202
|
|
591
|
+
angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py,sha256=lo9HL_RVSlxahuW6F9eQg0SCOxTIOUDsBUadlIumNWg,1523
|
|
592
|
+
angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py,sha256=JXNZeV4nOhGrtJ6NnWgKLj-PSY1gI1JoHOYCMWzR-z4,1072
|
|
593
|
+
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py,sha256=CunZehD6mh9AyldH6oUL9oqd9naaLftRblrAGrYhJkg,2352
|
|
594
|
+
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py,sha256=zSSqZWvHFEyVFNDCq4jIGjlQPdJ2vEtolKDEbAMP8D8,1252
|
|
595
|
+
angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py,sha256=6bOroBPDNNyhePI1L2nMESSjvsIU2WXEj50C8EQ3iK8,4909
|
|
596
|
+
angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py,sha256=PJht5flwtHTX2dBOTE4dTzXYXfQoy6kQO1OCDAkrH3g,1160
|
|
597
|
+
angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py,sha256=bMqFySjJGOzh7dAOMGn_IN5FfIqNKe-F5n-va8B5m0s,5199
|
|
598
|
+
angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py,sha256=9ezhbkAcEM-7EMAynU76v_NwE1prQiMw1qDO9l1zivI,2254
|
|
599
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py,sha256=Cb4iBVCjOb8HXk18Mu_MAW86FBNMZWSqbce0_AVfxfE,2563
|
|
600
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py,sha256=055V4YUb3K1XxA7lJESPkuxQWCb-h0mux31Ky4Ad7Gs,1527
|
|
601
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py,sha256=HsMtRPifYhb5vDU5uvS1N5xWa3FkZEGmESf-Gl1JH4s,2263
|
|
602
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py,sha256=QCVJzrcGj3H_CKlSNESYt1IX0LAWCbaXsItSDkrKrZo,3902
|
|
603
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py,sha256=Tg06Zl8Mi8zbknKMAMlTclWyRMlyakRaAtwoombqSMc,2397
|
|
604
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py,sha256=gNPYBAuICCDsR8DaBS7X55_g2qm261G1EfuS6x_8MKg,2413
|
|
605
|
+
angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py,sha256=ZJbm1LS_5l703VTabTRDjGlfBve9zByBlzMWtZiBTRc,8441
|
|
606
|
+
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py,sha256=jaTD4sxfo0ujRozE0URq_0dCvMME0zEB_d4mwDXF0V4,1582
|
|
607
|
+
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py,sha256=4GDteph3lOcuahE_VSJ0_D8R303MaDAMDs7GyjtYQVA,1597
|
|
608
|
+
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py,sha256=UyoIjZ7wekiAQT-owBoSJF626pkjlpI7_S3iX1aO4Rg,1464
|
|
609
|
+
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py,sha256=OJRtCTxxGT2C1ZT86EdkBhsFqun9AjG29pOZCnaWI80,1885
|
|
610
|
+
angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py,sha256=NxEuj0Bg7aqh9oQcq-aiP6LDmIFhmF2Ti4lMLDb2da0,1316
|
|
611
|
+
angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py,sha256=pw58f7a6dDBJMf1TJOy3s__Rsw5T0heYMDU1CzSDvcs,1717
|
|
612
|
+
angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py,sha256=ts1LOJqRXkbAPaj9tQV70l8esbe6ZklgEM91z1h5WzA,1575
|
|
613
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py,sha256=AIk1Yn0p-qjpDUbfkAKJcrc37_GZSQITbdy9BtspBlk,1030
|
|
614
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py,sha256=0qRZAp0M3ZWaDu0D5Rgav42xoGb-TaaE3e0zb-wRsp0,1219
|
|
615
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py,sha256=lrsEK_p9N1G5jRAdTKBhfzjosG_fbBm7Fd7Hg7ph9Dk,1502
|
|
616
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py,sha256=bEWF4vhvdZYnr5nEn0cZeBPkiKxVo6zE9XGHVsXYKI4,986
|
|
617
|
+
angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py,sha256=UbN-OS2tB5dsfNvhZHaWdopqGybB1dvGZMWmF63AK1E,1572
|
|
618
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py,sha256=oqgRUoy2nLHLH69-s5iLc1RGYZf3BUoZiBoHNSGO0Rs,3303
|
|
619
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py,sha256=tebiUHxLzFGNH6lvuVIMapQugJmG20EOzrPxrd1xudY,3812
|
|
620
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py,sha256=IKX4uXIzGRN4Hqedoe6k2_CcaS0AeXZoSI4EUNj7klM,3263
|
|
621
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py,sha256=bPbE5SATQDwHHANY3h7sCfRTochJFX_shiu-cKUpYrE,1197
|
|
622
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py,sha256=rSytt9tRy7WA0YPtI29nPz7_A-fKgx-uMN5XbBSJHVY,936
|
|
623
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py,sha256=vE3JBBthOa8St7Gafs76mvnRmMKusSoHSd9Cek1GMBY,1729
|
|
624
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py,sha256=-jE9OzdFLvsi0uSDzbaZifK0ehZjS33aG-v_EJLZiU8,11021
|
|
625
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py,sha256=h_4f4WbFjZ48HmXZjdtaARwGVSC1IiWbxZIEm_iG_1A,1585
|
|
626
|
+
angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py,sha256=KaQvXhaREFJJqOITK3EGxlx_FHDEKD5eC3_brn-YdZE,1688
|
|
627
|
+
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py,sha256=HcsO9T01ghG2esul5mXeF-icEy-hBCzCae4cdzyUESg,6984
|
|
628
|
+
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py,sha256=akzbMncxpDXeckqdTTI9DVPHlrnZqfzcmmwv8Mr5vfI,6715
|
|
629
|
+
angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py,sha256=D5vn644DxZtkywqEQdpNHPTjIh_G-XXcDvanETHgDJA,935
|
|
630
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py,sha256=ohBSbkMxwl5B2sxNWJ6prEQ8hyIvog9KxcAEtanNiG8,1078
|
|
631
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py,sha256=c3MWKvGA6DFk7dS7F3M9lr6ppFfquTZp1lQRqt7aPk4,1382
|
|
632
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py,sha256=VbG2_8L9x5TDaRvuDBGMnBhJXid8ION5Ucyfb56eHiI,4018
|
|
633
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py,sha256=xAG_AXLJbzvN6GwnHtUcVhpoOOTTsJSjIByJ1e1vH_0,1788
|
|
634
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py,sha256=eOWJo_lHhsQ139QXTSHGTPLiDsUDXrK7bSQqJWqT8DI,5049
|
|
635
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py,sha256=C8bv583nLRXPJSWzMLwRwg0qndVJeVgqifAVp_FrNag,2268
|
|
636
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py,sha256=uAfAmG3A_dVBFzCJQAWW8IcSXZT4fTnQFUiS1ZREXT8,4394
|
|
637
|
+
angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py,sha256=CtjPyQGLXVEU-TzrmH9XXRQkKeftaZ-TG-izomZpe08,1242
|
|
638
|
+
angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py,sha256=7HvdYr1XJPEeh2law-2I4rsRPdev9sKXKb1dyAbTifs,3947
|
|
639
|
+
angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py,sha256=EaZ1JX_DLCi7mMyd-Q7OScI5NDpU893JEKhFXJClK8Q,1469
|
|
640
|
+
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py,sha256=xcNpTvMUAe70vU0G9Ci_CIhRtaUHANT1nBODVnnI88M,1076
|
|
641
|
+
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py,sha256=tEwHuem7YEwAkGu5QvnJzZtKdZbx-fa6Y84JRmd5wnI,1135
|
|
642
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py,sha256=sI-C8w-gNyGmzMJUyX8q0jJhUcv3nrpP3pwdoIOxaGQ,1324
|
|
643
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py,sha256=mZkF8vf5TbSpqGMkLzOnAU91VAUjK7RESNqcqvNvGZ4,1379
|
|
644
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py,sha256=bNDKs5x_mrQRdSmD4ebXxn6-dwCXntSBQQzighCel2s,1868
|
|
645
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py,sha256=RPE0Bva3MLUgT_0iWv690KRSQ3JJ_c_ZrCAacnDFHBc,1722
|
|
646
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py,sha256=JSqOZDAX52W3ORk67ZqxF95gBeC8vLi1rbX8PBwif5Q,2580
|
|
647
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py,sha256=JQ1-LVqLM2w6t4udASk8QjKawJsR3AHmaxaJVanrUzM,1029
|
|
648
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py,sha256=2YgQeMBZlqAqFs1aC68We4xVPHXJG-1460RJEn287gg,1852
|
|
649
|
+
angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py,sha256=Itqjk--2ZHT2RytT8Ru6s1ONxZeeQ5ShCwhmJ0MowGo,3621
|
|
650
|
+
angr/procedures/definitions/win32_apphelp.py,sha256=hZ1W9JCMWpZv78O63S1T439_vTdLw1YSGGpR-wKPdto,1152
|
|
651
|
+
angr/procedures/definitions/win32_authz.py,sha256=QVCv7xmDOcMg0ql1bQ4ZcpCa_ecSUsUFJPP33lYUZio,17624
|
|
652
|
+
angr/procedures/definitions/win32_avicap32.py,sha256=JI_vA2_b56TA-4aM0pmhfxKhIcWAhm4aKlFR9SUPMMc,2919
|
|
653
|
+
angr/procedures/definitions/win32_avifil32.py,sha256=itKsPqlxKdUPxjagJEXeMiAmxgf0YBygrplvGWI8a2A,18973
|
|
654
|
+
angr/procedures/definitions/win32_avrt.py,sha256=bCQkiOsA_O3jxL9u4Iocp23UE8dmLp4Ttjvt1G8RLZQ,5564
|
|
655
|
+
angr/procedures/definitions/win32_bcp47mrm.py,sha256=-hfX4g7RomTiCmZPYDZdhUs9hRCr3Xvg8uvNeyWmS0s,1363
|
|
656
|
+
angr/procedures/definitions/win32_bcrypt.py,sha256=lfL7C5CZO1Q65HYstEbeZPcp45j5JkGCiiAt_mNVcNo,24368
|
|
657
|
+
angr/procedures/definitions/win32_bcryptprimitives.py,sha256=oGyC_i8GLSoReqIqyohye6P_JKfmsTsdb6xq6x5Ue7U,1360
|
|
658
|
+
angr/procedures/definitions/win32_bluetoothapis.py,sha256=2x6nLUMKB02j5yR47o8OOv3768tlDBdsNRiN5AcZTBs,17676
|
|
659
|
+
angr/procedures/definitions/win32_bthprops.py,sha256=bA7VMAQgvNQGbCykd3wLcYdEROT9D116nf7bLTrRANo,10985
|
|
660
|
+
angr/procedures/definitions/win32_bthprops_cpl.py,sha256=St171-EqW6gOYi3TNU0AG1Mvk-bwHmpuudAiW8Hi5bM,3129
|
|
661
|
+
angr/procedures/definitions/win32_cabinet.py,sha256=vK4IgaXCcUROBIxvKw2BVsjolZYFhG5Ik_mntml61pU,16677
|
|
662
|
+
angr/procedures/definitions/win32_certadm.py,sha256=DHFQc0Zpb2WGork8cFqa4CGj0vbFmuaaFal33vrgUGY,6855
|
|
663
|
+
angr/procedures/definitions/win32_certpoleng.py,sha256=2DQiG02L4FJ2-refHsc-RdZhCKmr0A27eHTUbrEtvGo,4380
|
|
664
|
+
angr/procedures/definitions/win32_cfgmgr32.py,sha256=2rdQr13fJGZTG53RMDihYHHgPXgW2G7KQp71YWoCasQ,101595
|
|
665
|
+
angr/procedures/definitions/win32_chakra.py,sha256=oY5W3CO7nUPH9c5sYufmUBVMkBQBmpdQ_OYmAJRWUMQ,26442
|
|
666
|
+
angr/procedures/definitions/win32_cldapi.py,sha256=h0cVieur5T_GKL-2YRXb4tyI-d_DHLRf1u0_xbXqvA0,14306
|
|
667
|
+
angr/procedures/definitions/win32_clfsw32.py,sha256=X93QIj9G_bz86A72m_vAcvsCLWehgJZNZiwyHBEmKyM,24173
|
|
668
|
+
angr/procedures/definitions/win32_clusapi.py,sha256=8-Nl_qjPXVO9BcX3SlHC8u_SOssYxZnB1wJJzaIWAuw,111776
|
|
669
|
+
angr/procedures/definitions/win32_comctl32.py,sha256=FwCaW2wVJrP1UCzPhloYoeDcVf7Hw4uh0ielmjmGbSM,43400
|
|
670
|
+
angr/procedures/definitions/win32_comdlg32.py,sha256=gV8Dizlye-zQFAexfZ23gjahZ1kBz9Zib8HCVzFIBIE,4929
|
|
671
|
+
angr/procedures/definitions/win32_compstui.py,sha256=yHihppxummb35d7mR_gzLoBNy7NMyjK78ODsKfzMeAM,2686
|
|
672
|
+
angr/procedures/definitions/win32_computecore.py,sha256=JXKjdYVXl9gN6ye2mYKPwacBZl52hbrh0K5253egupE,19509
|
|
673
|
+
angr/procedures/definitions/win32_computenetwork.py,sha256=7ML7ydUebDK1ZiJc29mbkv8niTWKVhqVENj3OXS6J0U,16067
|
|
674
|
+
angr/procedures/definitions/win32_computestorage.py,sha256=LZMkl5JXcucIWwVicun_AmNJ2qTE0FJkQsBy4Ul1zfY,4440
|
|
675
|
+
angr/procedures/definitions/win32_comsvcs.py,sha256=2Df0pByPem6hnZlNRAddc17Y9yLSmlHPBzMPa0v67cI,2276
|
|
676
|
+
angr/procedures/definitions/win32_coremessaging.py,sha256=QknGGhhtrrRnkOBVtAhtxTwNdgPWdNXP78nWpuJk0ig,1236
|
|
677
|
+
angr/procedures/definitions/win32_credui.py,sha256=cJsuQ4O2X1VfgkbxDp7DMlnvK3YzjuO8F_VmQ721ZW0,11858
|
|
678
|
+
angr/procedures/definitions/win32_crypt32.py,sha256=wFNdWlKCkVSo0HWSQzeA-Br8UkbGlJpSnsjZ9094ReY,105594
|
|
679
|
+
angr/procedures/definitions/win32_cryptnet.py,sha256=5gl2RDaFAdXYy8-lsoYmCSA4KG2m2HSIg0e3M4TyMng,3899
|
|
680
|
+
angr/procedures/definitions/win32_cryptui.py,sha256=krtE9j8AoLkdjsK7wgIr7LCpWhlIBiLnA2kSjiOe9-c,4970
|
|
681
|
+
angr/procedures/definitions/win32_cryptxml.py,sha256=EIT0HOX-55KU94T2p8i9SYTJIEYfQ2C1slL9UJgxg_g,9100
|
|
682
|
+
angr/procedures/definitions/win32_cscapi.py,sha256=S6L0WK2F0TURftF0KGT3v3cUO71VoLGUqnaMKypuZHA,1804
|
|
683
|
+
angr/procedures/definitions/win32_d2d1.py,sha256=IT9QZQkxhApqTpuyrye2nbwvKPrCQl2N_24SR4gxC_k,5288
|
|
684
|
+
angr/procedures/definitions/win32_d3d10.py,sha256=skhVKoAZ3WOIa50bdLVOOlgZ97J1uF-H7J65gSBb28M,11581
|
|
685
|
+
angr/procedures/definitions/win32_d3d10_1.py,sha256=I7w0h7FhIRAuC32AwtURrHcPSzVio9638TUWNS51sg0,2153
|
|
686
|
+
angr/procedures/definitions/win32_d3d11.py,sha256=PBQbc8-imAPU-vh3wILMEGyYElwP6f6b5_l0rCnXnaY,3610
|
|
687
|
+
angr/procedures/definitions/win32_d3d12.py,sha256=kKVyqRF8Fckhufa9wPPAD7TRJkghK7gtlNXV9_ByDic,4113
|
|
688
|
+
angr/procedures/definitions/win32_d3d9.py,sha256=xAzy_AK9ta0OTECw4N3xv1VgH1fYMA9xlnUWtkYlyeM,3037
|
|
689
|
+
angr/procedures/definitions/win32_d3dcompiler_47.py,sha256=aqazcNYrH5J_R7MbCgSwhxOtnfR_fMTYxOPgLGHChfw,13467
|
|
690
|
+
angr/procedures/definitions/win32_d3dcsx.py,sha256=8DVcnSOMzlWHD7tlMjxJD0bgb60JaAzSj98kz77NNEM,4862
|
|
691
|
+
angr/procedures/definitions/win32_davclnt.py,sha256=X-RPibP_YZObTtDAZlW-YlHi-OZ30hsDlAigKeHS2fw,7301
|
|
692
|
+
angr/procedures/definitions/win32_dbgeng.py,sha256=ZaUoLq9FGLvLIpjoLBnPOtcZwu72diSEX1TogGn7qp4,2098
|
|
693
|
+
angr/procedures/definitions/win32_dbghelp.py,sha256=Xhh64755GtTKSBxH4bzNoS4yLiluhTYaboVPjsXfQv4,109077
|
|
694
|
+
angr/procedures/definitions/win32_dbgmodel.py,sha256=M3tgrlMsJTJZ9a1Dc99EnUP0KqjieC63VlhGMOynJR4,1063
|
|
695
|
+
angr/procedures/definitions/win32_dciman32.py,sha256=r8_KNJt2DRMotbNpY4m52DqplfY3B39yqSK1ymh3578,7186
|
|
696
|
+
angr/procedures/definitions/win32_dcomp.py,sha256=KfQRSkWyh9ZPLPOCCdUr4V2aFS_pjde8tR1lumgeapY,4872
|
|
697
|
+
angr/procedures/definitions/win32_ddraw.py,sha256=HQLOhJxB2zoOqyrydpjO2QxdXx0z1uF6g1x9nr0fdho,4268
|
|
698
|
+
angr/procedures/definitions/win32_deviceaccess.py,sha256=A-mgwzXP2sIokq5XHz2f1b6MwFbrBk9E9dveAtn2x_U,1169
|
|
699
|
+
angr/procedures/definitions/win32_dflayout.py,sha256=Tc95WNR47pKx7ofUWHq_Kx_vfV6ryshRSeCqJRjTtX8,1180
|
|
700
|
+
angr/procedures/definitions/win32_dhcpcsvc.py,sha256=sVaK180slqAZRlQtJCFz_9YPCJfTYPIZlKLAcPZO6Z0,5605
|
|
701
|
+
angr/procedures/definitions/win32_dhcpcsvc6.py,sha256=eSyrqZtIdji74e44tE3NhPisEI1a-HGp4GM3gymI2EE,3002
|
|
702
|
+
angr/procedures/definitions/win32_dhcpsapi.py,sha256=jJkW1psVS_EexTfkAeBmPzShVggRJhUUihxqNXRyUTM,81445
|
|
703
|
+
angr/procedures/definitions/win32_diagnosticdataquery.py,sha256=tqugIFhy-V7LenBG5f3aHINHmrYjNwY2SxEzTHHP4Ds,13732
|
|
704
|
+
angr/procedures/definitions/win32_dinput8.py,sha256=tVqn6CN__EeeU6a4OrDCgDc3aW9bH8znknOa2hH-yh8,1278
|
|
705
|
+
angr/procedures/definitions/win32_directml.py,sha256=ARSI50Y3no_4TD0P9BMqioxj9ZjtF3h9nMXSRcxNKkc,1656
|
|
706
|
+
angr/procedures/definitions/win32_dmprocessxmlfiltered.py,sha256=xNybJJkkircM8fltTM4XHzQZ0a9gsQcNUvvtObVZ0C8,1296
|
|
707
|
+
angr/procedures/definitions/win32_dnsapi.py,sha256=m_ATmthyQMInIdryJU8Cvvf2o7DWqwfUNDOsVUoSe-I,22850
|
|
708
|
+
angr/procedures/definitions/win32_drt.py,sha256=LF80kOyUEQ8ZWWkTKLOMDcoHCFRwCSL4vJb82eRR1vg,5614
|
|
709
|
+
angr/procedures/definitions/win32_drtprov.py,sha256=a4tIqr3HSAZYy0KBDtEWOivebQo-_L12VPk1POnEC-4,3408
|
|
710
|
+
angr/procedures/definitions/win32_drttransport.py,sha256=O1FjdTprFLrV0C0HuUHnLIWyMFL3f54Z-JEFo8--LL4,1480
|
|
711
|
+
angr/procedures/definitions/win32_dsound.py,sha256=4K5ULSAk-klmR6hf-4GJEMDj0T4EqBzCm_6NZzxbA8M,5402
|
|
712
|
+
angr/procedures/definitions/win32_dsparse.py,sha256=VYumyzdGrjGZvk4XU5o1ppOVQoo6YqrOtSkZD6RI04w,11617
|
|
713
|
+
angr/procedures/definitions/win32_dsprop.py,sha256=q_O48X-3mBuB-tCwBCKTNlCEUQyhoSolTETG87-PruY,2970
|
|
714
|
+
angr/procedures/definitions/win32_dssec.py,sha256=B4AIZKez1gIp8IsdjOOBceBNY7J1AELUVB8ieFw-RFQ,6224
|
|
715
|
+
angr/procedures/definitions/win32_dsuiext.py,sha256=6bTYcR4Rooe54y877xT5FYLNZVMF-4IEUCyF458eUAQ,1890
|
|
716
|
+
angr/procedures/definitions/win32_dwmapi.py,sha256=OBbNMWl9ATtUZNzoLhlBTtPoxjBsWrTy7jZ-UwZxiqs,9750
|
|
717
|
+
angr/procedures/definitions/win32_dwrite.py,sha256=XFVhBABepb-zF4tmYroYsqVMqCBmOixSWBBR7jLII5k,1155
|
|
718
|
+
angr/procedures/definitions/win32_dxcompiler.py,sha256=r5VV2Zk25U3aOSvgxSJm0j7dvqKkdv4rCYeK1jaNrGE,1519
|
|
719
|
+
angr/procedures/definitions/win32_dxcore.py,sha256=HLxbP_9jg2_VDMOi-LMWjFmHLynHe9BZQzB5SNdUUEc,1096
|
|
720
|
+
angr/procedures/definitions/win32_dxgi.py,sha256=Vb6oI_AwzTA7aAv2PFuyboxcvf6C8xliBLqdORilbxM,2220
|
|
721
|
+
angr/procedures/definitions/win32_dxva2.py,sha256=raokkt8maQ1fszI86qB7q3TYYVTxJC-eA_8DViGl1Es,14589
|
|
722
|
+
angr/procedures/definitions/win32_eappcfg.py,sha256=XxVzWNwMv4TqKnbHBNgMOBVq6CwPAlVxAXr9p6RU-NI,10152
|
|
723
|
+
angr/procedures/definitions/win32_eappprxy.py,sha256=-ewL81-_18g13s4iCA0sDkU1kVBCNCrc4FrkArHhkPU,9213
|
|
724
|
+
angr/procedures/definitions/win32_efswrt.py,sha256=DCI9WnrE04De86D5zgLC40am1X8qvlaUAfq7C1hMWP0,1346
|
|
725
|
+
angr/procedures/definitions/win32_elscore.py,sha256=wiB4FC2rgtEOARqPPDJXQaxx-_QKZr24p3ySdbYsxac,2481
|
|
726
|
+
angr/procedures/definitions/win32_esent.py,sha256=cdmHR_mGxOYRHdRblvMZ_MHx1bKn-kbOVuLmUZTJIJ0,105962
|
|
727
|
+
angr/procedures/definitions/win32_evr.py,sha256=rgpjxI7afslpI70ZBJVRShKhXdCKAEMvIzU9qEEXBxc,3181
|
|
728
|
+
angr/procedures/definitions/win32_faultrep.py,sha256=IX_rbHASFU8LCqm69o5H3nGm1jf8igax-uMz0Hkag7A,1722
|
|
729
|
+
angr/procedures/definitions/win32_fhsvcctl.py,sha256=rI0RKiOPgTq0PR4g7NZjOVKveg6ejitUe8OznXopug4,2436
|
|
730
|
+
angr/procedures/definitions/win32_firewallapi.py,sha256=hIB7vSi522lo1Bais_9d_1WV_7s66X4gv3_t3Alocjs,2046
|
|
731
|
+
angr/procedures/definitions/win32_fltlib.py,sha256=hboqZF9QT9SW7rv4TXA_TRTF4T1zKAlkM3e2-HSRmPI,12055
|
|
732
|
+
angr/procedures/definitions/win32_fontsub.py,sha256=Ohnxb_jG89G4HhXHyjYLWYmIR7Q-AcM2CbdxWgmZgPc,4140
|
|
733
|
+
angr/procedures/definitions/win32_forceinline.py,sha256=H1SBc6y4qfS8Oa0LqiAQsyBKUGieoazfspaTxllaOYQ,1262
|
|
734
|
+
angr/procedures/definitions/win32_fwpuclnt.py,sha256=MtalERXfs3Zwc7hrS7hh1mFBz9HOz61DsMjJ5-zEUcs,93583
|
|
735
|
+
angr/procedures/definitions/win32_fxsutility.py,sha256=fTHCGxNVBYPvtOsg9IyyWMfckDm-QCrRbAq-kR93Ttg,1164
|
|
736
|
+
angr/procedures/definitions/win32_gdi32.py,sha256=FVXHmlPUzXmRuBqFTmSnAfOh9j2HX70Ip1_9xx-ok18,148209
|
|
737
|
+
angr/procedures/definitions/win32_gdiplus.py,sha256=-MfyKbJ7_gSdTvRAPw3n-HN1dQ-voQ950JKyoIJIpVk,247518
|
|
738
|
+
angr/procedures/definitions/win32_glu32.py,sha256=mjpnkxv1lPaexWKL50ur43NjY56Xrseyj4EO4yYsyss,16806
|
|
739
|
+
angr/procedures/definitions/win32_gpedit.py,sha256=kIbMT-OkaQ90vAvByAy1XKJOjD7yQopwObtvav0l4rc,2197
|
|
740
|
+
angr/procedures/definitions/win32_hhctrl_ocx.py,sha256=Fk5DImGlQ9wyFw4RkiMXCMdXXyDH46eqEiCUdsRNH9A,1713
|
|
741
|
+
angr/procedures/definitions/win32_hid.py,sha256=l5rzkCIToj-Y0qURr3SCjHoIAEjlDkSp9jFa9o2Zibs,21832
|
|
742
|
+
angr/procedures/definitions/win32_hlink.py,sha256=iAykXK0KTzD6IoK9IgFolwGFIOqa3kpeKFWkJqVyUls,12547
|
|
743
|
+
angr/procedures/definitions/win32_hrtfapo.py,sha256=NcS9-l9SjsDn3CcluvHycPId18NXcScKX27IwEeeKwo,1062
|
|
744
|
+
angr/procedures/definitions/win32_httpapi.py,sha256=1c04WOC3BbIJs8cQz6BxHp5kUnCTS_Ag98osDtluGls,19768
|
|
745
|
+
angr/procedures/definitions/win32_icm32.py,sha256=r5sQKXaGipLbYjig2R0yh7kLKoDtrCIpavMUg7kiA0s,12568
|
|
746
|
+
angr/procedures/definitions/win32_icmui.py,sha256=tZqfkF5IVaf9CKtk0T-wZiTTAhNO7LjJMtQRHydUQF4,1196
|
|
747
|
+
angr/procedures/definitions/win32_icu.py,sha256=BjlCXpqzMtWSn4_RLLhaRGF8NrgMM0lhrlbv1d_s4w8,373794
|
|
748
|
+
angr/procedures/definitions/win32_ieframe.py,sha256=mTYnqIoUSOnYYVRSZqfofeIEyKu-0G2r7CP_UBiIVJk,10164
|
|
749
|
+
angr/procedures/definitions/win32_imagehlp.py,sha256=kpf_wqvkADyUxVdfJOFtq9gVdVcfO9oEJieBLyK4KQE,11594
|
|
750
|
+
angr/procedures/definitions/win32_imgutil.py,sha256=TIz3DDrmPs-baSo7mxnqqcHCkB74j00Jjwu9NnuOWuI,3919
|
|
751
|
+
angr/procedures/definitions/win32_imm32.py,sha256=eroq6u01OAFvSh91ii3iSopJCCfVB4yWT5fI-nIoo1E,28281
|
|
752
|
+
angr/procedures/definitions/win32_infocardapi.py,sha256=xKXKTLfFjQPMTwROo__UZPR6sb5DLG09E9ormIyxneQ,8135
|
|
753
|
+
angr/procedures/definitions/win32_inkobjcore.py,sha256=ZBHIt6M8EGK8ts7qHt3EGzTcHf0wajriUzMvG55Pk_w,8978
|
|
754
|
+
angr/procedures/definitions/win32_iphlpapi.py,sha256=hDvuSKS700UnxO92jfl-BoaQ8J_rVIDlL-jkCNRiyAw,65764
|
|
755
|
+
angr/procedures/definitions/win32_iscsidsc.py,sha256=xWmK8e_ZzxypAo1DqEXK9rXxJDVdQ2pD17kO-hLGOi0,28634
|
|
756
|
+
angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py,sha256=sFiMOMXG1SAuVFa9mcda7moSkLuhNmKY5kEEUlPDHIo,1328
|
|
757
|
+
angr/procedures/definitions/win32_kernel32.py,sha256=wgzHEmfXxcuWo8r7UL7QgGi7SbAgs1Vu-Y1DMKGZ-vE,505088
|
|
758
|
+
angr/procedures/definitions/win32_kernelbase.py,sha256=mvYVrPFpMEW-4Uepw3FQ_rILfsFRLkrKB3YOjNEpan0,3193
|
|
759
|
+
angr/procedures/definitions/win32_keycredmgr.py,sha256=GTTzx_yNCNd4JavKgJQcIPCx1kfNVfuIyXBlN9SQEjA,2095
|
|
760
|
+
angr/procedures/definitions/win32_ksproxy_ax.py,sha256=OhJ1aqvSvEnlLX15uELUZy0UUCcdhoncxh9y9sJyyH8,3724
|
|
761
|
+
angr/procedures/definitions/win32_ksuser.py,sha256=slL59nzQFEbHH8QBtrhMMKDFXsUn9NypswzeZjGZl60,4363
|
|
762
|
+
angr/procedures/definitions/win32_ktmw32.py,sha256=awf0bBtL5_qlCOOsSa69lQAoJjwRRTqr4JsUFe8i8UQ,14642
|
|
763
|
+
angr/procedures/definitions/win32_licenseprotection.py,sha256=91NvUuQM-SroNtxPw-KJ-lFEFa8GFFCf2ZY6rTILDp8,1617
|
|
764
|
+
angr/procedures/definitions/win32_loadperf.py,sha256=7gr49o19W-WklfPR-RQMcUBRK3KMVuEYs5AkpWS-2xI,4369
|
|
765
|
+
angr/procedures/definitions/win32_magnification.py,sha256=NnLiKP6qK7ZFL_dnXV3pO3RY3ymIIictqPhADuM8qJE,6913
|
|
766
|
+
angr/procedures/definitions/win32_mapi32.py,sha256=dF4A112rozMZ_kff6cP7rIxSPET-gKY54h8EA0IoGBw,25204
|
|
767
|
+
angr/procedures/definitions/win32_mdmlocalmanagement.py,sha256=5fqaX2J67QlZwbTnRvc5Jt613sC1e7w-5LEAMEvspt4,1446
|
|
768
|
+
angr/procedures/definitions/win32_mdmregistration.py,sha256=sNTHBpbTYM56YMlB8kaArPUDb96i96zzZQiofBVoSUU,4800
|
|
769
|
+
angr/procedures/definitions/win32_mf.py,sha256=y5FNdZUZJ0BdHhW4FDk0lfnNRvMPWG3EBMOjM7trnu4,17542
|
|
770
|
+
angr/procedures/definitions/win32_mfcore.py,sha256=KPoYQZlxJ-yfF_eBTJ_xB9wSVjJcbc_z1Gg-KD6pl94,1393
|
|
771
|
+
angr/procedures/definitions/win32_mfplat.py,sha256=vMyULWHUn29mSeLIhA7DwkPPH6FOH7v_jCFhToIY6lQ,45720
|
|
772
|
+
angr/procedures/definitions/win32_mfplay.py,sha256=-HYS7gZdaKyLQYcpvgWTCkVcMSgB01Ze3IZufrsc7sY,1361
|
|
773
|
+
angr/procedures/definitions/win32_mfreadwrite.py,sha256=wMJm63PhCpbkBmXoMJyoUyKDc0DISQaeTQjFZ2ZrsBs,2464
|
|
774
|
+
angr/procedures/definitions/win32_mfsensorgroup.py,sha256=yn67y7zp7s7gET9lzHiUNvREmrVj5qIC2YTBSA39EuM,4398
|
|
775
|
+
angr/procedures/definitions/win32_mfsrcsnk.py,sha256=TQztTvAKytPXFWCiRMLlAwNR9BchYv6f52DIg9sRoZU,1486
|
|
776
|
+
angr/procedures/definitions/win32_mgmtapi.py,sha256=dqQzVZgP9-xvak7CgnKgVDx1GgIWYAzJVasKy3x2_Pk,4566
|
|
777
|
+
angr/procedures/definitions/win32_mi.py,sha256=PDA9QAHeNpZVXyk9NRHtUBp5QBMD1kZj0qEjXywCzhw,1267
|
|
778
|
+
angr/procedures/definitions/win32_mmdevapi.py,sha256=jm3-IZreu6O_FVJHEL4uhIznpwTq0aHKoPUtdVLlIdM,1361
|
|
779
|
+
angr/procedures/definitions/win32_mpr.py,sha256=HoGXKaghz6bho8nZdUCT-vwduueNNkj1LdL_QN5bIyI,19276
|
|
780
|
+
angr/procedures/definitions/win32_mprapi.py,sha256=sr-3UXj6y6rA9NPej0Fir3NGKv4SiwPWzKFOzcNeWxo,47701
|
|
781
|
+
angr/procedures/definitions/win32_mqrt.py,sha256=iRmmNejnWz2o3we32bgKvI-lzZCyhbRK5kOt4bKh8YU,13072
|
|
782
|
+
angr/procedures/definitions/win32_mrmsupport.py,sha256=KdukGb0Ex0JF7EwrRv8sT3o3a0IcvGKLxa9fL6gK1bc,11771
|
|
783
|
+
angr/procedures/definitions/win32_msacm32.py,sha256=i6jkydQhdrHQpbKx05jNk09LwtjaZsqGuQM510xcRJo,19465
|
|
784
|
+
angr/procedures/definitions/win32_msajapi.py,sha256=3X9qDBVQqSADA3p66d6V6lbiHMclO8N8jdG7Xzz3rdQ,183459
|
|
785
|
+
angr/procedures/definitions/win32_mscms.py,sha256=IqS8Y1p1AfO3sUhLgoxkao2vzrFiT9CUgrFYkYh8oJg,34930
|
|
786
|
+
angr/procedures/definitions/win32_mscoree.py,sha256=duqltzZcxZsPaZjuWqdo0P_2s-Y1brWHNlRKoVgAVhE,12010
|
|
787
|
+
angr/procedures/definitions/win32_msctfmonitor.py,sha256=UmEfhTW6KCopUOjn0s1xfKacmJbMtemWN4GFtOf-pcQ,1362
|
|
788
|
+
angr/procedures/definitions/win32_msdelta.py,sha256=_3smWaDYbDdTt-mkaUUoczTpivmEIrKJD0fJ30U97ks,7722
|
|
789
|
+
angr/procedures/definitions/win32_msdmo.py,sha256=p2JcVnnhClXA_Y8kfwn52MTRDEZZU-2l-bKxX7KkIwE,4624
|
|
790
|
+
angr/procedures/definitions/win32_msdrm.py,sha256=TOHIEtXZlDMkzmLdRRfeGEgUaSHfEmw7NcpYu3Nupo8,39111
|
|
791
|
+
angr/procedures/definitions/win32_msi.py,sha256=Mc-o_6xyaa6XLNiwskc2lERBGztzQsZ-ayW0pE-JUOo,103141
|
|
792
|
+
angr/procedures/definitions/win32_msimg32.py,sha256=EVDfmjjMgxMDwBS3lKrM5RSHF0i26iIPmPgmt_wB1J0,2831
|
|
793
|
+
angr/procedures/definitions/win32_mspatcha.py,sha256=jZ2rwW5s8uFs237i2DDi3nN4GnV8xgzNvQAqfyNxXAY,11216
|
|
794
|
+
angr/procedures/definitions/win32_mspatchc.py,sha256=yLx7WOssSbd5B9UfpdnL24cwEkt8rXPSUQa0zlP78y0,6046
|
|
795
|
+
angr/procedures/definitions/win32_msports.py,sha256=ZPsItnHmGryGUe44BG3bTkYSBFfgQdVb10_7aut6jTU,2879
|
|
796
|
+
angr/procedures/definitions/win32_msrating.py,sha256=njx_it9Sp3PwVZzvZeGg-m2zHfuZDbFihxdqPXvCFjs,7506
|
|
797
|
+
angr/procedures/definitions/win32_mssign32.py,sha256=iarANkj1FCTOC3rkrgzoGpLhwJcfpJwIEsPc5uIPRbs,7629
|
|
798
|
+
angr/procedures/definitions/win32_mstask.py,sha256=xFXnJulFfCu4nQLwoL30C_DCVqcefVLS2UQa-lnuFEs,1487
|
|
799
|
+
angr/procedures/definitions/win32_msvfw32.py,sha256=F9Do5iSrNvhK7ZYp0_kqQEVUri5KOKf6vsZJphucVtE,16784
|
|
800
|
+
angr/procedures/definitions/win32_mswsock.py,sha256=9cdr831HzBK-kBOsH982CwViYIcHZoErhr2pUSIvV3E,9225
|
|
801
|
+
angr/procedures/definitions/win32_mtxdm.py,sha256=2sZ8M9YtpcXz-CiNsiadPHKGrpL_Nt0ke7d88SUHSTc,1008
|
|
802
|
+
angr/procedures/definitions/win32_ncrypt.py,sha256=EtjS0GiiFJeZAEh5KNBIUuNtEzaJPlaCl0EO3hgUntA,19728
|
|
803
|
+
angr/procedures/definitions/win32_ndfapi.py,sha256=l9a5GdBPHaSVN4s9tk_BuP-temJsxWT29LnINQ7TZv8,6235
|
|
804
|
+
angr/procedures/definitions/win32_netapi32.py,sha256=UFDRPm5nHCqI21DefYgw9taA7HsnlQtej04lXhyKx0g,86092
|
|
805
|
+
angr/procedures/definitions/win32_netsh.py,sha256=gcJn7uHRfXZzS-P-llZuc6DGliUFjCrN8LNKXM8TUWQ,3471
|
|
806
|
+
angr/procedures/definitions/win32_netshell.py,sha256=qDFW3-Wo0Hl8EbbD_MWpyNRPJX9tVDHcxl9NVshFdg8,1186
|
|
807
|
+
angr/procedures/definitions/win32_newdev.py,sha256=_1cghjnYuRfna2c-dmZqNZ_FZLN_nN2c9-kylyWCm9o,6136
|
|
808
|
+
angr/procedures/definitions/win32_ninput.py,sha256=t-AcNct5MxHdTJIvlat5e3fYJVANYTQE2Z5Okv0L7U8,11203
|
|
809
|
+
angr/procedures/definitions/win32_normaliz.py,sha256=cYBNPhvsNWejX8fjeq84iwhOdQH5QeP9hH3rU4YNa54,1719
|
|
810
|
+
angr/procedures/definitions/win32_ntdll.py,sha256=ZM-8TVJSI5uLwMfVJN-ginCfYyLkQkzHb5EE1Ba8NYU,27777
|
|
811
|
+
angr/procedures/definitions/win32_ntdllk.py,sha256=jYjrhdLgVItR53X1XpKveiJLquO7th2NQmCAznNS3n8,1122
|
|
812
|
+
angr/procedures/definitions/win32_ntdsapi.py,sha256=pKiyGUaJro5fsZwXqge6y68U5y6Guh-iEOStD0QImnE,35674
|
|
813
|
+
angr/procedures/definitions/win32_ntlanman.py,sha256=DhNgAv7ukWxoLkYIxjuadbQpH3B68ReARWO6ChTOy-w,4442
|
|
814
|
+
angr/procedures/definitions/win32_odbc32.py,sha256=Eq70l6hfGQL-yxqyRg2B-KrJoH69JFKw7wE1k8LsjAQ,94795
|
|
815
|
+
angr/procedures/definitions/win32_odbcbcp.py,sha256=NfGqnulG-PjdPAkWvnsA32o5AB_oHZ2GAlX_ibJFLQo,8544
|
|
816
|
+
angr/procedures/definitions/win32_ole32.py,sha256=j_oJeYjBxwB64eaqtuLHFtH-Wgj352sBi-wKsKkNWV4,103847
|
|
817
|
+
angr/procedures/definitions/win32_oleacc.py,sha256=BalEm2tresAc6cnqtk_lwsGgcerTgAvixiB7DyLYjg8,7042
|
|
818
|
+
angr/procedures/definitions/win32_oleaut32.py,sha256=RTejc3vfuL0eZKLnx5q91MsiUpZacTJ0QJOKplLDzE0,123445
|
|
819
|
+
angr/procedures/definitions/win32_oledlg.py,sha256=wBtpFoxBmj_mQgkYigegWivSiSedJ984WXnoAzeWO0A,6846
|
|
820
|
+
angr/procedures/definitions/win32_ondemandconnroutehelper.py,sha256=RyR4hV9uQFgbcF-tXE1uYuA6DuJA7WL8d8c5nv3OiMg,2644
|
|
821
|
+
angr/procedures/definitions/win32_opengl32.py,sha256=xaai8OdmYtw4_1VOjhfvvJx5OPxt1Cq5JlWUcCkkOuw,75502
|
|
822
|
+
angr/procedures/definitions/win32_opmxbox.py,sha256=cGpNFSMC6txFRFs6RyA9x9RMXSEnxTGlwUhaX_t_KQI,1496
|
|
823
|
+
angr/procedures/definitions/win32_p2p.py,sha256=M71YZw746tlzvmekCX2tsb3yuXj6dn5tLpujlrZRIMg,32558
|
|
824
|
+
angr/procedures/definitions/win32_p2pgraph.py,sha256=7BW1km8Kaflw8CILUlUZhICzgihJB4yeYXPuZ6ktCIg,12490
|
|
825
|
+
angr/procedures/definitions/win32_pdh.py,sha256=1PQ5WXqTzPXir0NWVEvo64U1LY9k1_4jhqPqVv3D0Fs,39450
|
|
826
|
+
angr/procedures/definitions/win32_peerdist.py,sha256=-rqzTRlPXGqjJVQdk8hylO3BaMJl3gQ7wHEsQNqCCac,14328
|
|
827
|
+
angr/procedures/definitions/win32_powrprof.py,sha256=pf8NjEKt0LQq5pI37nps-SUU7l8bVJ0dXbnQYzPyQ8E,32215
|
|
828
|
+
angr/procedures/definitions/win32_prntvpt.py,sha256=6LibKI44544ho6_EzxMDHLHwm-qilrXX-Mtco5MC-MA,5281
|
|
829
|
+
angr/procedures/definitions/win32_projectedfslib.py,sha256=EA_GmsCbs8jUXdw3LZtsKuKeMSaLrtWzCA-z5Fj6oYs,8033
|
|
830
|
+
angr/procedures/definitions/win32_propsys.py,sha256=wAFoiMnXhMZzOSdjVVdac28G9TC8RmHmtu3u0Iu5ULs,69981
|
|
831
|
+
angr/procedures/definitions/win32_psapi.py,sha256=CwGL9i8WAOJU4uItjIt6kuFeWRBfOxkQ5K9Blt3vWNs,10795
|
|
832
|
+
angr/procedures/definitions/win32_quartz.py,sha256=mcDXPVtL1WbgmtCX-Fx9MuGZVp4ExeiEm8yoncE04F0,1397
|
|
833
|
+
angr/procedures/definitions/win32_query.py,sha256=K9WS38c-2PsYc6zoQxgGeEJ2OrC11UzvCIEyz2JBNAE,2086
|
|
834
|
+
angr/procedures/definitions/win32_qwave.py,sha256=wOaH_BcXCC2aYvK8uTPxh5zu7Mr2xwyzoZF0cnPUJJM,5288
|
|
835
|
+
angr/procedures/definitions/win32_rasapi32.py,sha256=2EzbpXZyBpDSPRKj6DGo_CMwYnYkFk0QwZz0pJRLBYY,31024
|
|
836
|
+
angr/procedures/definitions/win32_rasdlg.py,sha256=MUF3QqG44bpv1Rpzu7v0DMcnjgVlezPq40jI9l4Bs-w,2855
|
|
837
|
+
angr/procedures/definitions/win32_resutils.py,sha256=6X0oeQySqBHLP1gmD6zM24UxOwSjVeOF7IjqYXIr5VU,54601
|
|
838
|
+
angr/procedures/definitions/win32_rometadata.py,sha256=c57iaO5WinS0vEamHPMordD9Vo1eiN0QSYF45cvWKQU,1047
|
|
839
|
+
angr/procedures/definitions/win32_rpcns4.py,sha256=pF_MlJSsU-ZsGc4qKazMhtzLCN5cHPwUBX5ytf-xsZw,22482
|
|
840
|
+
angr/procedures/definitions/win32_rpcproxy.py,sha256=KdFVkafaUR-P3zc1ivGEV3-Yx78y6Fn7FMs4pgHID94,1718
|
|
841
|
+
angr/procedures/definitions/win32_rpcrt4.py,sha256=jqfbla9NfazvoyWTRiqvuawaQjc8RAuTYNTfT_LIxzQ,148394
|
|
842
|
+
angr/procedures/definitions/win32_rstrtmgr.py,sha256=skMfymLgv6QTaNDHH7zEx868ZWd97FHRq1q9C4nGEII,5023
|
|
843
|
+
angr/procedures/definitions/win32_rtm.py,sha256=BZae6ywnMS5PPEqbzo-IskLVRY4hkZ1QcSJQU_-hdDs,36078
|
|
844
|
+
angr/procedures/definitions/win32_rtutils.py,sha256=cvx_gxuRZlQbizxJNR_x9MAOuMb6VIKBuukurMdqMmI,15171
|
|
845
|
+
angr/procedures/definitions/win32_rtworkq.py,sha256=hlF8GI7W0mbHmoq0rZusquBjRRSznDSaxrOiQER5wGk,9113
|
|
846
|
+
angr/procedures/definitions/win32_sas.py,sha256=FAxNagpMIr-1eVtxeTRQ_6GfLlZ5OoeSz01iMz3o9h4,955
|
|
847
|
+
angr/procedures/definitions/win32_scarddlg.py,sha256=shsvL3im25YONNbh-z2oI0foASgfunsI64Ov5ccCz9U,1681
|
|
848
|
+
angr/procedures/definitions/win32_schannel.py,sha256=QxOgLONThuxvAtn1ntC6Vb7PwqYdG3eDSpYgdRYidqk,3623
|
|
849
|
+
angr/procedures/definitions/win32_sechost.py,sha256=pEdqe4DluOA5w5s25cEMnqOd8DlBdWqpEiVT01-ehMU,1747
|
|
850
|
+
angr/procedures/definitions/win32_secur32.py,sha256=ddNw5lT-VQHLMd-rYdnI2u6STt_00y2lRSOPNe6VwN4,37585
|
|
851
|
+
angr/procedures/definitions/win32_sensapi.py,sha256=4lYGRwvvNrmpBaM_SgbXL1QZIy-u9cId9R0kPaScdwA,1530
|
|
852
|
+
angr/procedures/definitions/win32_sensorsutilsv2.py,sha256=h4Eo6H9r3OHWPE9rY-OcEo3D5VPhHN8NRfeK9r3OzwI,13319
|
|
853
|
+
angr/procedures/definitions/win32_setupapi.py,sha256=DC0ftIuPXI3-eBeOPc2pxA542aEqALgYmk9ZZVwFE6g,157800
|
|
854
|
+
angr/procedures/definitions/win32_sfc.py,sha256=NpOR6sbbxmrBTdY_wUOSjPsQ30DUDsC4-qL7pwhwhLI,2581
|
|
855
|
+
angr/procedures/definitions/win32_shdocvw.py,sha256=9xQHPDIexUuXpJqoerEOcZgxzp9cgRnLHXo9lFzXYns,1967
|
|
856
|
+
angr/procedures/definitions/win32_shell32.py,sha256=flZDECjnJvAjfCmCSdFvK7tMqwxLT7yAJ_OG2yDIIoM,81176
|
|
857
|
+
angr/procedures/definitions/win32_shlwapi.py,sha256=ljxzPn3akwTNFD5mGBRxtgfxzGz31X9ojpVo-RdjQLA,108144
|
|
858
|
+
angr/procedures/definitions/win32_slc.py,sha256=OM5XjUO5HeIb1RhkNS-zrDoQC3R7MARmsgftJGHpV0c,14385
|
|
859
|
+
angr/procedures/definitions/win32_slcext.py,sha256=2MSlEKmo_srdgIq3UQ0thj0RpTysa_EqUutSLEsnrLY,2885
|
|
860
|
+
angr/procedures/definitions/win32_slwga.py,sha256=Eqaur-YbNbtUoLG-1lZ--y1pCVhxUR2LZlv6G4L3yIY,1178
|
|
861
|
+
angr/procedures/definitions/win32_snmpapi.py,sha256=w8p0y7ywO-fsoCGL8JFea_QQc1iewrdSJ-R9O7-Yz1c,6478
|
|
862
|
+
angr/procedures/definitions/win32_spoolss.py,sha256=i38Z7jKeRQL_ID6vH-pcKh0BEjesGu435cH4skDqLDA,9720
|
|
863
|
+
angr/procedures/definitions/win32_srclient.py,sha256=KDDG1QoTu7WU-IeUQKFv3LZiqh-JLchS0ZVhlOVZg54,989
|
|
864
|
+
angr/procedures/definitions/win32_srpapi.py,sha256=NCASmncfiDRCj3uyirgm2mN6PpCu0_JdU2JPyDOcHXE,3787
|
|
865
|
+
angr/procedures/definitions/win32_sspicli.py,sha256=a1iSXkTMULpsdrhj9e0akkgM47A-ZX2OiTdoJ0Jo_k8,3067
|
|
866
|
+
angr/procedures/definitions/win32_sti.py,sha256=YCSjXDN1EZbpmcRe4kaN6llhCohM3Es7iESW7jL7xlk,1185
|
|
867
|
+
angr/procedures/definitions/win32_t2embed.py,sha256=rOTEMEGIOu_lWl0SAgobcsxi4IUSO1yskbMlUqHTS74,9632
|
|
868
|
+
angr/procedures/definitions/win32_tapi32.py,sha256=rAzlMTa8zXA2_OUfLRYq_vYs_OiLij9k5mSIKSbaZ7w,95001
|
|
869
|
+
angr/procedures/definitions/win32_tbs.py,sha256=BPo87z9XjjaeJ8bUJEs9Od4WOKmTqSQE1wzle4wAJSE,4986
|
|
870
|
+
angr/procedures/definitions/win32_tdh.py,sha256=3MuKODWJpTRRNBJVAsxq6QFPy_wyAX0ckBA1MTrS73w,11424
|
|
871
|
+
angr/procedures/definitions/win32_tokenbinding.py,sha256=PaFZybwqFIFGL9xXSzl_wGwtIRQaqpLGTAdaDXwMS_4,4779
|
|
872
|
+
angr/procedures/definitions/win32_traffic.py,sha256=TN6ezmjzVNg-TqEXQ8QByLllzz9aIgspBIepBCDWNEU,8313
|
|
873
|
+
angr/procedures/definitions/win32_txfw32.py,sha256=RtSSEg218iV99UC8YIjkZNgCsGhx5mU_ncSwavzvNZU,4362
|
|
874
|
+
angr/procedures/definitions/win32_ualapi.py,sha256=VIoqMPPWHJ7KGGpxN_ZXWT9ntO23Bor4yVqKvsqWKgw,1662
|
|
875
|
+
angr/procedures/definitions/win32_uiautomationcore.py,sha256=QVsDWMoC4OJZYax6jRxK5U0sG5fAjZi3B5dRMMSX5q0,31591
|
|
876
|
+
angr/procedures/definitions/win32_urlmon.py,sha256=y4vOlQFCU4av_p-jDPilgMXOi_Nz4mI_MQ-BwSlz0xU,27776
|
|
877
|
+
angr/procedures/definitions/win32_user32.py,sha256=1muQvlfCywxYknlbxWsfRkcr4iEZD-ssagJ4AxNQDpI,252504
|
|
878
|
+
angr/procedures/definitions/win32_userenv.py,sha256=rv3pojAPLqTYpYzMm7oHvaYyYPH_Da4m_QbzeIjpTv0,15873
|
|
879
|
+
angr/procedures/definitions/win32_usp10.py,sha256=d4VDH9cuEW1PvJGMUfpFmlGZqaDYLNNoAtUNP6UMVnQ,23792
|
|
880
|
+
angr/procedures/definitions/win32_uxtheme.py,sha256=d1cMy9ZBpZ_keiaMdD7B8JKbrRRTJGdg5mEVQ3G6ixc,31270
|
|
881
|
+
angr/procedures/definitions/win32_verifier.py,sha256=xZUW87R8glA2kwqVq8cHGHrz_ftyxC3W9OWYGMtiSRk,1602
|
|
882
|
+
angr/procedures/definitions/win32_version.py,sha256=n4Itu-D-U8romgA06D4U98bOezNNqP5fgaRfUiATJKc,7270
|
|
883
|
+
angr/procedures/definitions/win32_vertdll.py,sha256=azBD_kSW78FuMrgnwBrt4Fej2NP4FH2bgZ7wHLvxbVQ,3694
|
|
884
|
+
angr/procedures/definitions/win32_virtdisk.py,sha256=UMvYKhnbrKzwwKZNOVxOjhUyQN9Sa-UM0nKjFxpjgy8,13542
|
|
885
|
+
angr/procedures/definitions/win32_vmdevicehost.py,sha256=Y8kQP9QspJltvgoQukTD4WRZ91TgjNthNdfax4uCclM,6067
|
|
886
|
+
angr/procedures/definitions/win32_vmsavedstatedumpprovider.py,sha256=9GwHYGMbLcNJ8JLgFjVDiDY2wXdM-jBeWHK2-o_OHds,17672
|
|
887
|
+
angr/procedures/definitions/win32_vssapi.py,sha256=76EeQODJvlkjCaIO5ukQW82gcGdF17lt2FH2loyWDWQ,1022
|
|
888
|
+
angr/procedures/definitions/win32_wcmapi.py,sha256=b7IfzjJZVe82n36xt22EmaDnzidFZsKty6aRjaj_i8M,2733
|
|
889
|
+
angr/procedures/definitions/win32_wdsbp.py,sha256=kwfqlLFvebhqUj8NzpmMRwzFvv2FPnMl_SY2d89dDs4,3374
|
|
890
|
+
angr/procedures/definitions/win32_wdsclientapi.py,sha256=_NRNHvozRTELhreCH_4Co8kdjAT5pKwAItk-TgtpvWY,13979
|
|
891
|
+
angr/procedures/definitions/win32_wdsmc.py,sha256=zecX-eH3Jy45baU6YX2cDfBorjIEf1UFiIFVgQMkynk,2881
|
|
892
|
+
angr/procedures/definitions/win32_wdspxe.py,sha256=02kyLf8_63-K5Thpfm2dVmpbNJovgTI9B-oRGViZsOU,13283
|
|
893
|
+
angr/procedures/definitions/win32_wdstptc.py,sha256=Nrn2eYNSTkddQLd4CMkcanotRGb3g7_SW-Ge_0vtMEk,4184
|
|
894
|
+
angr/procedures/definitions/win32_webauthn.py,sha256=mNzhBCjIRpFaCtjXsk7pkx1mofjq-K94IP8EIbnXhi8,4743
|
|
895
|
+
angr/procedures/definitions/win32_webservices.py,sha256=VR8TghJMi-lCzTuvFX08ZkygGBxdvPrDgk6rJiSgEj8,106115
|
|
896
|
+
angr/procedures/definitions/win32_websocket.py,sha256=1fpv0qw8m6UTewcuy3UHcG3J3nGtZ9Y-WQiIH6gm2qo,7468
|
|
897
|
+
angr/procedures/definitions/win32_wecapi.py,sha256=GAzaBClfwFxLA90LEfnBFSoJtfVBxCHqlijOzcLQTco,6454
|
|
898
|
+
angr/procedures/definitions/win32_wer.py,sha256=Piat_vJqYi8HA8TEhRapl483H5geZF7xKJidmcVD69Q,7743
|
|
899
|
+
angr/procedures/definitions/win32_wevtapi.py,sha256=xfLy-6zSyK6rWTNmed0jQQunzlpUTyoWGYXMZZTXyk8,16190
|
|
900
|
+
angr/procedures/definitions/win32_winbio.py,sha256=2UBtaztylD3bhor3JNzkm2f-7pIL6vTEtU9d7aIMWTQ,21514
|
|
901
|
+
angr/procedures/definitions/win32_windows_ai_machinelearning.py,sha256=4b8xbJThstnpypRKh0jyL01InIuxPVdhOatN25miwIE,1038
|
|
902
|
+
angr/procedures/definitions/win32_windows_data_pdf.py,sha256=grjipDTdJiB-0wdI7L-t6TAUTbORbR0G7vUhI840joc,964
|
|
903
|
+
angr/procedures/definitions/win32_windows_media_mediacontrol.py,sha256=wBWOwnF1V7-8MtTnVUz8qDqku8uaFX7awOwKnbjMkhM,3295
|
|
904
|
+
angr/procedures/definitions/win32_windows_networking.py,sha256=JK4AgGFCKcLBZ3XpM-4uz5_q4_Ax15UIKb6AIAHXcvU,1000
|
|
905
|
+
angr/procedures/definitions/win32_windows_ui_xaml.py,sha256=RPfVb2dO3KuPPopFTeoY6qTdg2-1juKZAS8Hv1Pvs-s,1757
|
|
906
|
+
angr/procedures/definitions/win32_windowscodecs.py,sha256=givJ5E5sUW4S4edQqnGkDU7M0hMV29s84ZBCdhuCe3s,4523
|
|
907
|
+
angr/procedures/definitions/win32_winfax.py,sha256=gNo6lKIGYf5DTbKNbGnjBV55VfIdOQlHSTP6E9iARcU,22713
|
|
908
|
+
angr/procedures/definitions/win32_winhttp.py,sha256=J7uNI2-qrJebmbYycQtft-ZJ0Fp4XK1NTnr4vuzb86w,22843
|
|
909
|
+
angr/procedures/definitions/win32_winhvemulation.py,sha256=1LyBi0yDFpWrj9PnSfQJOKOhCkiNmdpPyJDpDR3kIVY,2787
|
|
910
|
+
angr/procedures/definitions/win32_winhvplatform.py,sha256=HyAjBGYx-awBTUN262TnhizN1pdLM2GxeMWILp04Ng0,40977
|
|
911
|
+
angr/procedures/definitions/win32_wininet.py,sha256=JOqMzDKQTCQXDJJfF-k6BPwzTowE54TMKjj0pX0wsDU,116052
|
|
912
|
+
angr/procedures/definitions/win32_winml.py,sha256=Q6JEwlP-PT8C5te-1oa6vreBNvyENTGTlbL2eWZs72M,1004
|
|
913
|
+
angr/procedures/definitions/win32_winmm.py,sha256=hlVlKBaTV-jfF3QmiE271hx7IOp5TzuunrC0psZV7bM,55096
|
|
914
|
+
angr/procedures/definitions/win32_winscard.py,sha256=oE0EZoPcdpryCwlJeZF0T__45jp_rKpzUEVFnONFPEU,29256
|
|
915
|
+
angr/procedures/definitions/win32_winspool.py,sha256=_ooFJEZE05x7pDQfg9L3v2OssMYA4UkscSq-vlh-M6o,114691
|
|
916
|
+
angr/procedures/definitions/win32_winspool_drv.py,sha256=S-cdC8_iQcplfH2MOjHL0OvhwgxRgmCvxL7y43QujcQ,70077
|
|
917
|
+
angr/procedures/definitions/win32_wintrust.py,sha256=35qtuGhv4HAsqLLwGRIaxzrNiKm43bE7qu_z8COuhak,22377
|
|
918
|
+
angr/procedures/definitions/win32_winusb.py,sha256=Vxa4RvRXdd14C1XR86YGb_kUr65vboQMCSOHMhXWgS4,14574
|
|
919
|
+
angr/procedures/definitions/win32_wlanapi.py,sha256=AlXLYlQ7lDSxFEqQ8cNMhikUX7v3Bi1-B2uS88vj4v4,30130
|
|
920
|
+
angr/procedures/definitions/win32_wlanui.py,sha256=z26Mq7Ro_E2sASztao3N81OvQTxfZ3ZdFWjIEg0eyKE,1447
|
|
921
|
+
angr/procedures/definitions/win32_wldap32.py,sha256=EcGAFDuVfJeLId9kblusCe6N6eDrHVz-6nqwreSqs8Y,97466
|
|
922
|
+
angr/procedures/definitions/win32_wldp.py,sha256=yW2mCXIe628kNEmuojYagYvdc4IxnWdZl9aZ1TFFJJw,4237
|
|
923
|
+
angr/procedures/definitions/win32_wmvcore.py,sha256=v8AAxHpPYBxp36acaVL3K_H1c_mZgvcM0unl1--q7Mo,3274
|
|
924
|
+
angr/procedures/definitions/win32_wnvapi.py,sha256=ss4CLlF3NsANFkRjuPWC2RCLLh4XYUM_LObgJxPYA8s,1420
|
|
925
|
+
angr/procedures/definitions/win32_wofutil.py,sha256=wjKXJVZEc9sOiD40zwlU5R0UX130wdNVzGSXN_0Oi-k,5306
|
|
926
|
+
angr/procedures/definitions/win32_ws2_32.py,sha256=00hCwVwII9JYjZgfyIwzIR57_B8fsAP2Roc9hFtSMvI,65644
|
|
927
|
+
angr/procedures/definitions/win32_wscapi.py,sha256=8N_QOWGIJERzQe6Gk5wAEh9GNufg5-WErzheNEqR2fM,2310
|
|
928
|
+
angr/procedures/definitions/win32_wsclient.py,sha256=NeS9Eu24orujPq-2EjMgtUrF7f-UH5adYJDPbOZhxgU,1506
|
|
929
|
+
angr/procedures/definitions/win32_wsdapi.py,sha256=6n1itsydw3oaLw4UX7wKjhilA4uj6bIvItnUDcsOLaw,11235
|
|
930
|
+
angr/procedures/definitions/win32_wsmsvc.py,sha256=r3kFqY0e_NcfuszbWpss0Xi7Fp9kDg5Oeed3FmcQ1KI,16364
|
|
931
|
+
angr/procedures/definitions/win32_wsnmp32.py,sha256=NXOdxB2pK--i6T6QqP4cczX_h8OEwJqpdcOoyU9i8Jg,17750
|
|
932
|
+
angr/procedures/definitions/win32_wtsapi32.py,sha256=cumbpVI9lJKjEBn7ZBdIfyQmkaUQO-PU5XDUk-G85Qg,25899
|
|
933
|
+
angr/procedures/definitions/win32_xaudio2_8.py,sha256=maBGerIMf2eEWrbtOuENzfQ9jamtH4B-XGNSWt1XpzM,1911
|
|
934
|
+
angr/procedures/definitions/win32_xinput1_4.py,sha256=RN3CS_VMtxcFVFs7vfdReZ4SOJ5EpVNG9pjfL8eu3Fg,2951
|
|
935
|
+
angr/procedures/definitions/win32_xinputuap.py,sha256=jnKMsSC_w96dHqMVZRrQpVJ9iEhNuvx23QocNYa_PXA,4609
|
|
936
|
+
angr/procedures/definitions/win32_xmllite.py,sha256=69VGHH2cwTRnQT9tet64x9-WgbjO-xfNVBuQ9sF3sgg,3136
|
|
937
|
+
angr/procedures/definitions/win32_xolehlp.py,sha256=5yBOY-37udib-fKQSTkAtJDnQli6uh9o2tpmumF4rco,3129
|
|
938
|
+
angr/procedures/definitions/win32_xpsprint.py,sha256=CicwScqfRKG1DdA92efV5akC46maUWxbnwkFFyRpKJA,2422
|
|
939
|
+
angr/procedures/glibc/__ctype_b_loc.py,sha256=_TrQI77tcrItX2F56os-4PvWHiPfCQCGeFn3XC1aSW8,770
|
|
940
|
+
angr/procedures/glibc/__ctype_tolower_loc.py,sha256=OrdiNrTKy_4DbWjxTWh_tfkg6dHOMLriT7k2FAe-goE,795
|
|
941
|
+
angr/procedures/glibc/__ctype_toupper_loc.py,sha256=f_7QVgjBwqX0C-J1FLPSVwTcYJy8lnRUrdMAkr984rw,795
|
|
942
|
+
angr/procedures/glibc/__errno_location.py,sha256=2vsI8nPVYcvxGTg4UZ_cEGJT-Xh3Gk_nbV1PSObr-nE,192
|
|
943
|
+
angr/procedures/glibc/__init__.py,sha256=NjNtLNzO6f70tY9_LCv4-QRIC4g7o9y5CELaX1VUMyU,110
|
|
944
|
+
angr/procedures/glibc/__libc_init.py,sha256=xYokoQsAc-eJQPW4sp6EQR9X22mzF3-47-TUb-vGhQQ,1555
|
|
945
|
+
angr/procedures/glibc/__libc_start_main.py,sha256=ow0xMnxG316X82QYGWxVhovq_ZNRpPqrtszgweYH2Rc,11073
|
|
946
|
+
angr/procedures/glibc/dynamic_loading.py,sha256=uainl-wSeREeGbKGXjOlpwTxrQgjFfcJkZ0lnzOWR_s,695
|
|
947
|
+
angr/procedures/glibc/scanf.py,sha256=pE4UB5ln6Dr3c7_6Q7BiuapHymFQzDbWuE5xjiGHMMU,181
|
|
948
|
+
angr/procedures/glibc/sscanf.py,sha256=hf2m--QWlRK4O5E8_f66fXNqT5ZjAM59uMMTnaSbm2U,110
|
|
949
|
+
angr/procedures/gnulib/__init__.py,sha256=LfIHuKNyX42xAML-Y-sjy2gNzf2FoBB8Wf8CJHmZdOM,115
|
|
950
|
+
angr/procedures/gnulib/xalloc_die.py,sha256=j_uDbnhlfnBjhtlSmdOIPLJBCA0fS21TMTaRfTtZpo0,216
|
|
951
|
+
angr/procedures/gnulib/xstrtol_fatal.py,sha256=Bxu2onAIqzHjHdxrTqjr_CbHpXsGkw299jx6GN0QZ2w,274
|
|
952
|
+
angr/procedures/java/__init__.py,sha256=gTnML_o4GJlLtdaAzniWPk16fkeFIYXuCS4NN2TGY2k,1259
|
|
953
|
+
angr/procedures/java/unconstrained.py,sha256=7QBmt5v1FXvDJhy3_GxS-Do7_tq0ej1s11PaomhVFS8,3419
|
|
954
|
+
angr/procedures/java_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
955
|
+
angr/procedures/java_io/read.py,sha256=X-HsbtNjCNs2cSVlrgDc9S9GxbpNzzi9ztNS_9S5eFA,370
|
|
956
|
+
angr/procedures/java_io/write.py,sha256=yrsdnKQAhOijuadmP2Yw1lVsP3XOhwRpu6sH13mqSKU,648
|
|
957
|
+
angr/procedures/java_jni/__init__.py,sha256=5YFkyxVyIVtb9WdT4lgYfrd0TcbPHBWzNEsCTrojP9s,21445
|
|
958
|
+
angr/procedures/java_jni/array_operations.py,sha256=DDCQnbQNevmCWrI2IS_LwUYLzKogRwP_K2Dt4wEwy5o,10400
|
|
959
|
+
angr/procedures/java_jni/class_and_interface_operations.py,sha256=nCTU3E0D6G3PX5NEoxNWWmsT1_mMFJFhHj9RWwCgTEc,1069
|
|
960
|
+
angr/procedures/java_jni/field_access.py,sha256=A5BO6mO2YBVye1_jr2BbKdSGVKtSfD_9PJYHGsmQcXM,4754
|
|
961
|
+
angr/procedures/java_jni/global_and_local_refs.py,sha256=wVc0mmJrvJmjFX_Cp3H3u1XtQsO6-MxznIs-TT0hI0s,1130
|
|
962
|
+
angr/procedures/java_jni/method_calls.py,sha256=TUKcMlXQkdYwxz9D5opKMuHyjagbB8GEWpv1265oNuQ,9599
|
|
963
|
+
angr/procedures/java_jni/not_implemented.py,sha256=Oq7pFKDx-g0xHEatUc5G8O9FaVBxtleV3-Z6FGYxfXA,965
|
|
964
|
+
angr/procedures/java_jni/object_operations.py,sha256=TdZwOHj27D_ub2Hk2BlAr6CnX7GtBJAr3zDI8G_7V14,2724
|
|
965
|
+
angr/procedures/java_jni/string_operations.py,sha256=8gTgQxQaZrCI7CZtgIJ59dFtoST4zYeV14kDsft4yw4,2637
|
|
966
|
+
angr/procedures/java_jni/version_information.py,sha256=FPrOx1h_OIgHhaWklCWMGaNPQJd1pc8RwJsiifxz5z0,264
|
|
967
|
+
angr/procedures/java_lang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
968
|
+
angr/procedures/java_lang/character.py,sha256=GKYuJ1VTxbLK0IHk_9QdFpMPP6zyKso5GAAHXtPs2Wg,985
|
|
969
|
+
angr/procedures/java_lang/double.py,sha256=AIdV24eX2ahIkd7dPXr8Gni74oZ5nLXHJBKuzSnhniM,751
|
|
970
|
+
angr/procedures/java_lang/exit.py,sha256=gWm0LDO_cXSATFVQdLgSrPsxtFHxlF9XjVWPMi_GZUU,290
|
|
971
|
+
angr/procedures/java_lang/getsimplename.py,sha256=CdRoQEg3udndjWYUPhFN0EDhG7jYZrEu_r3FTI7nhM0,516
|
|
972
|
+
angr/procedures/java_lang/integer.py,sha256=pEYTOMVoH9QqXRkcsdektLgx4iz9nnkmVhjLpZMlOnY,1532
|
|
973
|
+
angr/procedures/java_lang/load_library.py,sha256=7LEgo47MRIAz9oJDT_Moj8tLBd-MA1XYMbN3mO4JMek,276
|
|
974
|
+
angr/procedures/java_lang/math.py,sha256=kFhUvv2MBlynGTf1mTfBiywh4ix7MQjZRBi2nQPTmhE,381
|
|
975
|
+
angr/procedures/java_lang/string.py,sha256=rQhTyF1VbCMR63LsAn72v3dbcQCQlvy3bAxWeRAjhmE,3155
|
|
976
|
+
angr/procedures/java_lang/stringbuilder.py,sha256=Yu60XJkVwDcR0-sGP_W668jOekjjszlRJLmqYIEYL7Y,1614
|
|
977
|
+
angr/procedures/java_lang/system.py,sha256=n9si-OO161IHBw6r0Av4UAwF3YyZ1Hd71jc8KtQPMNs,448
|
|
978
|
+
angr/procedures/java_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
979
|
+
angr/procedures/java_util/collection.py,sha256=1Pa-HuZ_PoAVXJUEZYgz673zBLQrLUbyQULPWFV1-eo,1264
|
|
980
|
+
angr/procedures/java_util/iterator.py,sha256=B59dJKmb2zG4hm36SmPLqFe_Qvymm9x2VnrN_Ru777U,1640
|
|
981
|
+
angr/procedures/java_util/list.py,sha256=arDUZipeBZCbhqa8ApdcaiVc4rXzIq7cH2xUefOB1yc,3762
|
|
982
|
+
angr/procedures/java_util/map.py,sha256=A1ISm6YUo7Ww2QxRs9ueALKEbtg9rVvYW4QalQy0Z-Q,4873
|
|
983
|
+
angr/procedures/java_util/random.py,sha256=wAWRXzSIKxvk5wi4wB9l4KVnQLHWf5vnLBTb82yAgF8,414
|
|
984
|
+
angr/procedures/java_util/scanner_nextline.py,sha256=9YGVHihRGwtyxTC88x14dM47FN8qEmmfqn_TG8TlfKo,832
|
|
985
|
+
angr/procedures/libc/__init__.py,sha256=adwOD6zMckO8qKPIUAeJH8hyj3eufWtJrGTG4_PLl0o,95
|
|
986
|
+
angr/procedures/libc/abort.py,sha256=kyleIqhN8yDckJzoshGOurupt4dTkfX942sk4sck1O4,140
|
|
987
|
+
angr/procedures/libc/access.py,sha256=GG3asj6wrd62lplJ3CtY6S0bNMJ8CnF57BgBnGZDURA,316
|
|
988
|
+
angr/procedures/libc/atoi.py,sha256=HUk9831jWyKLuORCWL4WuXs4i_PNq07Gs9-JxoT60cY,382
|
|
989
|
+
angr/procedures/libc/atol.py,sha256=4qIV4quCXWLDrUCsa8IU6tYi9bW09_ZKXxCiNotaHBY,331
|
|
990
|
+
angr/procedures/libc/calloc.py,sha256=pIAaLjbLN9BcUmDz-zFv0o26QIrvdQ9qHEbJSR2vCPg,220
|
|
991
|
+
angr/procedures/libc/closelog.py,sha256=slmNW8G8L1tv938KxN7JW2fPoEwpbbb-pOjXaiyMINo,218
|
|
992
|
+
angr/procedures/libc/err.py,sha256=2xZ3pwTO5IuF6DnNxQkVlZRutIMrcz1JpMTxdPvyr3M,465
|
|
993
|
+
angr/procedures/libc/error.py,sha256=vkpVzlTq_fn-m4r_rRJBskITXSl0pVEws9vUYCyhRpY,2275
|
|
994
|
+
angr/procedures/libc/exit.py,sha256=v-OH6QtanXO7qfvSxXS0QSs89KXHM6kNyUOKJ22bylQ,233
|
|
995
|
+
angr/procedures/libc/fclose.py,sha256=lc7oU_6PR-YTUlJDUP71qXOoWlWgqlld20DgEPN4tDA,600
|
|
996
|
+
angr/procedures/libc/feof.py,sha256=4Kx69CdFcOxkcrS28F5hfhipAVLv1LLeK-dVAkk16yk,602
|
|
997
|
+
angr/procedures/libc/fflush.py,sha256=LODdM1zQmdwVwzUyorgz-Taru6jFCQFpi0YZvr8HB7M,258
|
|
998
|
+
angr/procedures/libc/fgetc.py,sha256=USMoMi2uo7taXhuWtbnKrZ6bKFYAIP28zcmADyJqamE,656
|
|
999
|
+
angr/procedures/libc/fgets.py,sha256=ChYB3tSah9Eg-Cil569dIU_5OktJdSUDVrdh0zufbTs,2746
|
|
1000
|
+
angr/procedures/libc/fopen.py,sha256=mQ1v1Ao0YQy8-g6tplDm7QITTFpBOzxRccMZEJfewWg,2508
|
|
1001
|
+
angr/procedures/libc/fprintf.py,sha256=595hVR2mvmi8E2xQ16ibDibFiPpRP_yHOCOqCjdwPbo,765
|
|
1002
|
+
angr/procedures/libc/fputc.py,sha256=TVRjiT7xsD00svLIPEXdN7yEL6fScd2pUirrBOtGPJg,572
|
|
1003
|
+
angr/procedures/libc/fputs.py,sha256=rybpIpoeX8qPVUoE7w5cfqSasW_weXi9GALBan4GErU,697
|
|
1004
|
+
angr/procedures/libc/fread.py,sha256=Ikzg96-hEv-mCzIp3bXUeiVa-z4dO26Wal54ljT7je4,644
|
|
1005
|
+
angr/procedures/libc/free.py,sha256=fqD5jdmmjetwtNxjpYxAnsZk6Qxa3ho65o672gJPGf4,194
|
|
1006
|
+
angr/procedures/libc/fscanf.py,sha256=f5-ciLPnBy05GOIXlaOUPEXJjdNo3ClQvQx0KwPhPl8,662
|
|
1007
|
+
angr/procedures/libc/fseek.py,sha256=PQ9eyYaH0VS6BxMfRhXsm-BU8KQ-CWniJw9to3p0TXc,1141
|
|
1008
|
+
angr/procedures/libc/ftell.py,sha256=rX74Zx2KADt6reuP6Col0LxgiZ8hAd56bDcjrDtoVn8,550
|
|
1009
|
+
angr/procedures/libc/fwrite.py,sha256=JEqppU5poBDMNVJbnORTB2qVSc28mL69WrVvxnatInk,543
|
|
1010
|
+
angr/procedures/libc/getchar.py,sha256=tYJVhmNEuivvoOfgPj3brAq3PgTBtbzg0tTjGv7MwOs,330
|
|
1011
|
+
angr/procedures/libc/getdelim.py,sha256=W2S_jLznxPkmeSFCai2_AD93kEFJnjerlFgzzQZiZSc,3973
|
|
1012
|
+
angr/procedures/libc/getegid.py,sha256=ok68QvVM2wCSA6vQgg09vdQAVe_OSMBBfnF382Yri_Q,161
|
|
1013
|
+
angr/procedures/libc/geteuid.py,sha256=EiqirO8NAKVQRe5hgBblD9LMYbRWrBrI3hmVkbpfYdE,161
|
|
1014
|
+
angr/procedures/libc/getgid.py,sha256=0J3VGigEbWgbJdET2NyDMhtxwPJcTH8KiHYCiUMfO4U,160
|
|
1015
|
+
angr/procedures/libc/gets.py,sha256=muqVJdsr8Rd0R9NGKFyrEtRJZUQEb9g-Yfwy3f_l2bU,2581
|
|
1016
|
+
angr/procedures/libc/getuid.py,sha256=YrTGtVrcuidAOmwFO_-qLoV64xUA1U3zv0UORHgQsyo,160
|
|
1017
|
+
angr/procedures/libc/malloc.py,sha256=_aN6J5G0UxghKegICD3cMZR6609D_p9DgihKyQvIkl0,256
|
|
1018
|
+
angr/procedures/libc/memcmp.py,sha256=IBEfs-VyuLbyq2SGXfKJPrjo9Opo9NKFi7yqCFrIG-0,3027
|
|
1019
|
+
angr/procedures/libc/memcpy.py,sha256=Me4LUOyLGIx7x5jYWFLQBjWoEYrYwjjA0CaN4nxSu5s,1495
|
|
1020
|
+
angr/procedures/libc/memset.py,sha256=OtTJdDoj3zXv5HPQRZu_9UgMPZPIL46brXpHa3ZBV9I,2396
|
|
1021
|
+
angr/procedures/libc/openlog.py,sha256=gVX_di-vXroR8-L5_e6xYSOXTAF4N2Q_cqFMd8VkJ6Q,241
|
|
1022
|
+
angr/procedures/libc/perror.py,sha256=uhI1D7kmXU2dFBh5PIj8TvjwNToth7RKlSZzOyVgbTg,368
|
|
1023
|
+
angr/procedures/libc/printf.py,sha256=QKFTiASEk1E3HfZaxB3seeyed4wNMuJWN56SeBG3SDs,881
|
|
1024
|
+
angr/procedures/libc/putchar.py,sha256=YC5cJrNjH5I8eft804AMA4GMdjVYmySqarWUYFPZdt0,310
|
|
1025
|
+
angr/procedures/libc/puts.py,sha256=RoYTm0mCR9gzT983B7YcODwHPTnqj_BPGR9d3iGln-A,490
|
|
1026
|
+
angr/procedures/libc/rand.py,sha256=_9FdhE3YnaYDY0KDaeV3zntMsJ6sm0kBEm0vy2M3N5U,231
|
|
1027
|
+
angr/procedures/libc/realloc.py,sha256=a5SifphpH8BuXZ4mX2ebrIoBv75SOg2VlH03bAKRw80,202
|
|
1028
|
+
angr/procedures/libc/rewind.py,sha256=cIu-WjVhHdQBWYpp-tfRz-wB8TRj7ZZyNuVzTGX8mAs,267
|
|
1029
|
+
angr/procedures/libc/scanf.py,sha256=fYYECyq-K_JLyqyzpqNXJ7QRqPMw6BJEZ5bxWDI4sck,526
|
|
1030
|
+
angr/procedures/libc/setbuf.py,sha256=PsnNkUNYD76684CUTVFIKtrlGw9xmAddewIS4-HnZj0,185
|
|
1031
|
+
angr/procedures/libc/setvbuf.py,sha256=9ZPStLhL-GIpXSnP4K-Ttf0CdxpHLjZySbZ6L1qOrGA,145
|
|
1032
|
+
angr/procedures/libc/snprintf.py,sha256=sQGEQdqMlBNQX-9leNYN68q4nnbFtqK4J29nOFM_on4,1206
|
|
1033
|
+
angr/procedures/libc/sprintf.py,sha256=oMDKFZVoI8ZN8l2trxFcLygyaKnDnS8DH4OMutBpTBk,716
|
|
1034
|
+
angr/procedures/libc/srand.py,sha256=KxTedqBOKSr6rmHwMsdJiUwAVvhd_deSPQ6Bq8BWdsY,125
|
|
1035
|
+
angr/procedures/libc/sscanf.py,sha256=enQZVdpN8oYhCoOSpyvMk_Qx73D-RZyd1f-mANew6CM,366
|
|
1036
|
+
angr/procedures/libc/stpcpy.py,sha256=NrC7eEzAPzARZPtdRvJUsuVtiqQRsv0IJwjNM63XrX0,492
|
|
1037
|
+
angr/procedures/libc/strcat.py,sha256=FUGjCop8qmLSjolvI6JJB6GO3nHqaSsg253atXxddnA,480
|
|
1038
|
+
angr/procedures/libc/strchr.py,sha256=7bi4gb4Rn2mAweWs-xPrtJAlMZ1QgXxMeexaq0yHWCA,1803
|
|
1039
|
+
angr/procedures/libc/strcmp.py,sha256=SOLOs261WC3iZeq0tKgk5fS3md8D_eFcssdKQb0AzUY,859
|
|
1040
|
+
angr/procedures/libc/strcpy.py,sha256=XD8X6sR4ylF7qnk2J9zfku0wHKkGjlLp4M806AKKAgo,419
|
|
1041
|
+
angr/procedures/libc/strlen.py,sha256=MNE0e3nNeWObZqciBXl7zSaTcLFBV-TReWhRcfbSRCE,3548
|
|
1042
|
+
angr/procedures/libc/strncat.py,sha256=59NtDDFFJHp7r9YkzD7-v-P9R1upPOIExyjcCO-6OOg,536
|
|
1043
|
+
angr/procedures/libc/strncmp.py,sha256=XbFe8T-tg3-1FTnlpS8EIjy5TKRo-sR7rYgCNzg2oh0,7281
|
|
1044
|
+
angr/procedures/libc/strncpy.py,sha256=IHFmycE1xhohCGbULmnhZ7HRLGbLS2Ts8b_c18ZT7Gs,632
|
|
1045
|
+
angr/procedures/libc/strnlen.py,sha256=IolI9OPHGJhVv4Qzc0Aui-11IqpU5pzGE9B2JPUbB14,395
|
|
1046
|
+
angr/procedures/libc/strstr.py,sha256=Qv3ppkvD78wb4_nSw-dV0SrA_5WGIons2lSgrX-MwJo,3747
|
|
1047
|
+
angr/procedures/libc/strtol.py,sha256=oLb-39c1UBtUxt52MbgdHuJF4UffV-HbqObu_VwGK0U,11558
|
|
1048
|
+
angr/procedures/libc/strtoul.py,sha256=h01oH9HMPiDY4OUOxRMZ5SmODIC0zKA8lZFTS0ZS4hY,284
|
|
1049
|
+
angr/procedures/libc/system.py,sha256=xM13e-rS2kJa9isfX2keqQElN0pPbKy0yC-g3oQOzKY,375
|
|
1050
|
+
angr/procedures/libc/time.py,sha256=Vs5kzCClMMtWjHgwFSc6beAaIGaUBzGr9STtR-XQco4,275
|
|
1051
|
+
angr/procedures/libc/tmpnam.py,sha256=sCLdyhjDnYPFx0jpkFv4zp_zL-uK-mp63LUYamO-cxA,547
|
|
1052
|
+
angr/procedures/libc/tolower.py,sha256=DrEkTd7dQai09_ZQkdplstuQT9RDAZg7CkGOWEDvAiI,237
|
|
1053
|
+
angr/procedures/libc/toupper.py,sha256=TS-t__hU-UkM32Z2GFrgary_UL2_T71jhwt1kgL4wSc,238
|
|
1054
|
+
angr/procedures/libc/ungetc.py,sha256=ui0J60DEcSNFvX85REs4umvC-upXh2dkJt_gbYTBvtg,660
|
|
1055
|
+
angr/procedures/libc/vsnprintf.py,sha256=DiClt1UILRPobBK9VxHOjN_MM2fZSYB-Bi0oFfFFrBs,450
|
|
1056
|
+
angr/procedures/libc/wchar.py,sha256=DMUHGXYrWsVkyCXl36hqBMg9De5Z2BXxbJbpz8QorI0,573
|
|
1057
|
+
angr/procedures/libstdcpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1058
|
+
angr/procedures/libstdcpp/_unwind_resume.py,sha256=V9CdNDKXYVLAWSPNKzZSfyz0SVOW-mEBkzic4J_EqxY,216
|
|
1059
|
+
angr/procedures/libstdcpp/std____throw_bad_alloc.py,sha256=Bh_-pYuVi40UXLe-mBTVFsaO57uOcRK18b80hzrVf_A,356
|
|
1060
|
+
angr/procedures/libstdcpp/std____throw_bad_cast.py,sha256=2YjCeCvzNXjUVHZUwCSug2yYYkcv8i-DmiseOdZl40E,355
|
|
1061
|
+
angr/procedures/libstdcpp/std____throw_length_error.py,sha256=apAKhJl7zeCUy3qUVYAj_AXyjn7VZ-C-gKMm8HHSCJQ,414
|
|
1062
|
+
angr/procedures/libstdcpp/std____throw_logic_error.py,sha256=D_seFwmOf4V0mVvhlCkKUmC8d0uZrc8J0WE3J7UjWx8,413
|
|
1063
|
+
angr/procedures/libstdcpp/std__terminate.py,sha256=T2B62c36bXYw2LZTnTVZR6AUAm0iTRCKZpftNq09p4I,303
|
|
1064
|
+
angr/procedures/linux_kernel/__init__.py,sha256=mxKcfdAKNQqpejNlUlOH6HCz9FhZA2vRsZ3VhX7RwCY,111
|
|
1065
|
+
angr/procedures/linux_kernel/access.py,sha256=Ec8h37Lo8dagpW6zTlip654J2MWKib3PfJbHh_6igkk,604
|
|
1066
|
+
angr/procedures/linux_kernel/arch_prctl.py,sha256=vsePQYqLQyeiCLKDas6MQs5NjtFz3eArOIYlFg2RTII,1080
|
|
1067
|
+
angr/procedures/linux_kernel/arm_user_helpers.py,sha256=nXewrJZullW_H_mq_h_Z-y47IotYNiZs9mocFQ6OMSw,1593
|
|
1068
|
+
angr/procedures/linux_kernel/brk.py,sha256=3bJVpm1TJEA8KwcL_d04uHrS9rpwmt5QqvhSrcDdfAY,364
|
|
1069
|
+
angr/procedures/linux_kernel/cwd.py,sha256=fEwsCtVi9bw_BIpgGKTV3A5OcgQxa5P2dWkPAy8q8zo,754
|
|
1070
|
+
angr/procedures/linux_kernel/fstat.py,sha256=_Zbni4rUoV4QwhN7LJ9vcWFCVzJhS5zpOj_mz_HshLk,5080
|
|
1071
|
+
angr/procedures/linux_kernel/fstat64.py,sha256=1LAeatlQfbMZXIeXyKzMaWndotNLEwIMWaK2bsb15Gs,6275
|
|
1072
|
+
angr/procedures/linux_kernel/futex.py,sha256=6dL-pgRq99kQhWdF4MYzbXVuX0OnMufNnoDAYxYHbEs,537
|
|
1073
|
+
angr/procedures/linux_kernel/getegid.py,sha256=8Izk5w1G-9JZ4Xye4wVqdfs65-JAX9OaOE-CTVr4Khg,410
|
|
1074
|
+
angr/procedures/linux_kernel/geteuid.py,sha256=YoBt-8fwKUCEeNgL2RPeKHzp2xoH1N7eJZmsSEKVcWM,410
|
|
1075
|
+
angr/procedures/linux_kernel/getgid.py,sha256=qy8ti9arKQLsfhVX0eUbmxrq5vJ2JGUoIoP47AaVMkM,408
|
|
1076
|
+
angr/procedures/linux_kernel/getpid.py,sha256=xR2X1oEaeyd7jkK4ARpwbjNjn6nUuK92JpdgyyODiJ0,264
|
|
1077
|
+
angr/procedures/linux_kernel/getrlimit.py,sha256=hqJ-31gEprnEwW_oBvkTv-Mh-LH5_M-507sjterG3ZQ,792
|
|
1078
|
+
angr/procedures/linux_kernel/gettid.py,sha256=2LgnFKGael4PwIMD5OVI5lh318cS2za56ymNkF6C0Y4,176
|
|
1079
|
+
angr/procedures/linux_kernel/getuid.py,sha256=r1FA4Tgf1wbV0u8SxEYrFCaGHKVQcPqklufffnkUqxw,408
|
|
1080
|
+
angr/procedures/linux_kernel/iovec.py,sha256=bV1uC0c-ObMj1g3UIIkFIxOdZ9pDB69BjtM_o21SSpM,1485
|
|
1081
|
+
angr/procedures/linux_kernel/lseek.py,sha256=5BsCQqf5NPzaMHL2E1xBqHQ9IINIObmWDHjZ_vzLH0M,1231
|
|
1082
|
+
angr/procedures/linux_kernel/mmap.py,sha256=0mNo57kL-b-hNr_OuPcq80tY_8Fir6s3eQfAgfa9XTQ,519
|
|
1083
|
+
angr/procedures/linux_kernel/mprotect.py,sha256=VitInJywG3ddPjzLSj5aBdp0rw7AP-Vf125x4Htc-pg,1479
|
|
1084
|
+
angr/procedures/linux_kernel/munmap.py,sha256=JdU63sih2P1TggH-5jJljojtgr3ffb5Y2_N5Wv7SpUI,221
|
|
1085
|
+
angr/procedures/linux_kernel/openat.py,sha256=taur2Lp2Hrc2bCDyoyXRTT1R14ygSlfKelQHyVfdYoc,1068
|
|
1086
|
+
angr/procedures/linux_kernel/set_tid_address.py,sha256=L2Fo3Fm7t_98uUqdxJfNHQw-7MKLcuXxyiOWQfgsExY,240
|
|
1087
|
+
angr/procedures/linux_kernel/sigaction.py,sha256=DULtiR0qLPxAcvXW6L-HJHsrsAW6sq5qTJSslgB8hTM,649
|
|
1088
|
+
angr/procedures/linux_kernel/sigprocmask.py,sha256=m1aI0375WdvQjqhLSszwltLgBu-vu1x5DbGsk9X6Mfs,769
|
|
1089
|
+
angr/procedures/linux_kernel/stat.py,sha256=ReXoWEkHpOMDacJGOrqsx9Yf6wPI_9mTXNZhGEl60y8,705
|
|
1090
|
+
angr/procedures/linux_kernel/sysinfo.py,sha256=GJoDthoRUoTK4mD7poMyDxS54u8OP4-5gZ5nI6ztG3c,2240
|
|
1091
|
+
angr/procedures/linux_kernel/tgkill.py,sha256=OvD9xNz8imc9IbQ4Xh6ojHw9R9p45ljX0NLm_9jZRkU,277
|
|
1092
|
+
angr/procedures/linux_kernel/time.py,sha256=5Y8dchbNt2owwzZ6I1-mcRCaeyGxllHc0qvRZTBSsY0,1046
|
|
1093
|
+
angr/procedures/linux_kernel/uid.py,sha256=u148uA78gR1hCcsIwGdwfQJAjoFvDvJmNJBjnsJlC_0,799
|
|
1094
|
+
angr/procedures/linux_kernel/uname.py,sha256=OhBx4bPrto1qdCvuVfhQCzlX5lYWC8i9VqUCb1-MAWs,1162
|
|
1095
|
+
angr/procedures/linux_kernel/unlink.py,sha256=0eWndqqiqDpkM-C5hHSzvNbw_usOKi0o2RwmNTAVzf0,725
|
|
1096
|
+
angr/procedures/linux_kernel/vsyscall.py,sha256=_VnWKy2FZF1RLbSaK8Kh-5Q2Dc9jTa3CkYM09hhBH40,527
|
|
1097
|
+
angr/procedures/linux_loader/__init__.py,sha256=2hycjSB-GjXuMj1bfp2KuMlKjqVyNs2jPI0uI5S0XZY,115
|
|
1098
|
+
angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py,sha256=888soY-c3XG6f6EroVbieLa4Blcy_CBsNVIIO633bww,164
|
|
1099
|
+
angr/procedures/linux_loader/_dl_rtld_lock.py,sha256=DZASn_X95fmPnGVLzBPIu4GijiWkpi0NP6urpqt__EU,372
|
|
1100
|
+
angr/procedures/linux_loader/sim_loader.py,sha256=5kQCRLf1QMURe7bFrA8yWEkSQs2CSgZNuAD9Zvv8-CM,1911
|
|
1101
|
+
angr/procedures/linux_loader/tls.py,sha256=rHkJGV2y5wLH4dsO2FNtB2AHEK9d0ggXp0ZrIQs2ksI,1565
|
|
1102
|
+
angr/procedures/msvcr/__getmainargs.py,sha256=qSu9jLhpWs032l_cXEYcoG0pE4ccAyiZ91CrJkpcHfA,726
|
|
1103
|
+
angr/procedures/msvcr/__init__.py,sha256=HZKMuGEl_geCewMyOA6IDVE9P1G2gl4SKskj6ZclG8A,116
|
|
1104
|
+
angr/procedures/msvcr/_initterm.py,sha256=wG0oPytYRLrj-aJL_H0fpf622Ep98QxBbt86zou2q3E,1398
|
|
1105
|
+
angr/procedures/msvcr/fmode.py,sha256=1hU-QXEbpHXDP2UMGDe3gibWEx5ZjwdN001gO330_64,793
|
|
1106
|
+
angr/procedures/ntdll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1107
|
+
angr/procedures/ntdll/exceptions.py,sha256=gt2uyniCgkSj1DbkoOrQEvEQ30HdtrelIJOd62qBAfo,2746
|
|
1108
|
+
angr/procedures/posix/__init__.py,sha256=yg0t_r5-yU38GbJmr2QhhNupgoicttNLkuxFfu13_FY,66
|
|
1109
|
+
angr/procedures/posix/accept.py,sha256=e6d9gi3bghM8b2CrLij__Sktn3alzvlRu5yfcFQ-kjo,1265
|
|
1110
|
+
angr/procedures/posix/bind.py,sha256=sADd7VnKRGB7XwpUCyTSKJmfLXwfAbp2brgpsw9gYpA,351
|
|
1111
|
+
angr/procedures/posix/bzero.py,sha256=z56wJOlMjiEUlBHulS5a_XkhGY5x9KQYb7yUnN8evkI,215
|
|
1112
|
+
angr/procedures/posix/chroot.py,sha256=xd3A7YQGPNnUkYkveTvoKQGAaQUk7s2W5oK5D5Yz31E,774
|
|
1113
|
+
angr/procedures/posix/close.py,sha256=irfRm-5gUoG8xB1wSqz5bf2lbtWSx74FTcdAUe-Q47M,217
|
|
1114
|
+
angr/procedures/posix/closedir.py,sha256=aH1LGMNwKPh-qOSjARbmoodC4TxqkfOMzmSI9zjWwn4,99
|
|
1115
|
+
angr/procedures/posix/dup.py,sha256=1VX6E2yG6BowSVhmHeRlWGzK97qLClph_UuOZqAXkB0,1931
|
|
1116
|
+
angr/procedures/posix/fcntl.py,sha256=cfouuQjT63ICNNAZOml-NQroLpSayMNYnSi-PZCpfAg,349
|
|
1117
|
+
angr/procedures/posix/fdopen.py,sha256=1_Cso_igE_0814K6ec6bjLmdG4Pp0em0JVQE1FkEnMU,2753
|
|
1118
|
+
angr/procedures/posix/fileno.py,sha256=_5hXeGZtPksB1mEQHpx8zNxxxhDb6YolwUm2EelNDpM,449
|
|
1119
|
+
angr/procedures/posix/fork.py,sha256=j49y7IVmMvYlex2HRwv21z4nY_m_O_sr-zkOzFM_HNg,303
|
|
1120
|
+
angr/procedures/posix/getenv.py,sha256=CSRfL1rhFZ9wx2SwqfTCZ_s0oeLHKy_L_Z-E5hc9KFg,1418
|
|
1121
|
+
angr/procedures/posix/gethostbyname.py,sha256=Y_6L3sF8Hxds9KHD30M47RO-Sqi3XaCI8dMUgGoBPho,1608
|
|
1122
|
+
angr/procedures/posix/getpass.py,sha256=1hbXV-yRhPnxo8b-eHESg27T3xJw1TetLBMd75G2LOA,519
|
|
1123
|
+
angr/procedures/posix/getsockopt.py,sha256=EM169ORkFGkGyqLKZoLJCJiA2H5_LVVln_KuiL7nWyc,222
|
|
1124
|
+
angr/procedures/posix/htonl.py,sha256=5BnXx_DnTX1v24PuG7JaXJOe_6gWgsRAkX1pXPCW8UM,312
|
|
1125
|
+
angr/procedures/posix/htons.py,sha256=CxcCVHHiTf3nlsEOaopfAUxmG9ZNzRNMgZhXoiZiIaM,312
|
|
1126
|
+
angr/procedures/posix/inet_ntoa.py,sha256=FDXDz0MhmWgZA60kc8bPxpqmdSYBRFLAlidRxjGPpKQ,1888
|
|
1127
|
+
angr/procedures/posix/listen.py,sha256=dAaFMGSOIX0xTW31MhBMbAPKnQpdEzj4CA-6fm7occ8,350
|
|
1128
|
+
angr/procedures/posix/mmap.py,sha256=0qZ3F5ence3GF0FXoX8VmruGi28JABbhaJOewe5kf54,5074
|
|
1129
|
+
angr/procedures/posix/open.py,sha256=F6IqaTPHROwD0FQQRiVffs01tQASH2IAJT6cpQgDb3c,572
|
|
1130
|
+
angr/procedures/posix/opendir.py,sha256=Us9V06V3NhDJf1gwHuKdRQnGHjTRYQPTzBJNn7dfm_c,326
|
|
1131
|
+
angr/procedures/posix/poll.py,sha256=iLreE-OrB_ANJjz10pGyt1TBOGbTpENv-4Tzoo0GLzk,2204
|
|
1132
|
+
angr/procedures/posix/pread64.py,sha256=Ecjn0hV0bT6dyxhMu-lgwRSpAbmi7Gr3Kejd1qER9_Q,1390
|
|
1133
|
+
angr/procedures/posix/pthread.py,sha256=PrSgAx1ygixmEwIaYW-on1EZBSf8hWq3HwLnYLWlXkE,2426
|
|
1134
|
+
angr/procedures/posix/pwrite64.py,sha256=of_VJEvq0_-ONZO3kH3dSNCE4rUvfpCbn2cqdpQAS9E,1397
|
|
1135
|
+
angr/procedures/posix/read.py,sha256=zoKbvZUxKsxENS8O4kt7Go5uVc0xn1dUlTxmzcOBiHc,287
|
|
1136
|
+
angr/procedures/posix/readdir.py,sha256=KFjcwswnRwLRtUP9YrmSPj8HeGOHI0tvTG5YjUrEMqk,2150
|
|
1137
|
+
angr/procedures/posix/recv.py,sha256=LfswsI9c25U41N_3Cq1Z-Gzcm8pa3EazPTIkAg8HZmM,310
|
|
1138
|
+
angr/procedures/posix/recvfrom.py,sha256=3LfbRoNigVnhIUjaz1GU8cQZ0v9dnVT1cNyN0JzGurs,333
|
|
1139
|
+
angr/procedures/posix/select.py,sha256=7byW7q2uGmQN38OF8XZwVH8uGJkjD48-eRCFQm6Q520,1983
|
|
1140
|
+
angr/procedures/posix/send.py,sha256=38QxDIRqMeeN0qDgCxZXJ299Wr4dGdCe25LSxVCuamQ,723
|
|
1141
|
+
angr/procedures/posix/setsockopt.py,sha256=b92Lldrws0UGnKEy-g1ILO1RrZXeZAhoatsqgux4M34,202
|
|
1142
|
+
angr/procedures/posix/sigaction.py,sha256=E3SM6BhpuKufaAityNstPUiigTfAPOtOoT1zTtvuWsI,821
|
|
1143
|
+
angr/procedures/posix/sim_time.py,sha256=71PvgIxfh9xKBkHbvnruaLGFmGP5eJrO4_h7vGnYKJI,1691
|
|
1144
|
+
angr/procedures/posix/sleep.py,sha256=BNJD8yvbm2Ofc9bpP3IHVRoiKIG-bcF0khsSsQsoW_Y,180
|
|
1145
|
+
angr/procedures/posix/socket.py,sha256=OHrgFfNPftl-3SBm-45a70jAkNNSZu0IhiqkL_Ic3Mw,662
|
|
1146
|
+
angr/procedures/posix/strcasecmp.py,sha256=NCViLn9IiIkoqiAYc8pj5PzDbHZ-SbbhYBJjPVHY5VU,719
|
|
1147
|
+
angr/procedures/posix/strdup.py,sha256=diAJVFoPBOD00jtV_1Xh3Q7VLHhON8aOfQeSEdie9_w,526
|
|
1148
|
+
angr/procedures/posix/strtok_r.py,sha256=VcElCXU7emqZXoevscF6bvQun-RkUAgMIHRsAAEp_TY,2586
|
|
1149
|
+
angr/procedures/posix/syslog.py,sha256=F2RJTKS2M9pSU1uA4I_J_bLpAg6GZZTmsXaoFsoHW-s,465
|
|
1150
|
+
angr/procedures/posix/tz.py,sha256=ikk0DD8KYWefbFHG3Ys1vjoLwks1JC7ug2DHDvtRp0c,295
|
|
1151
|
+
angr/procedures/posix/unlink.py,sha256=6NkPUSt3NX0NE7hhvZho6kawlTWIuvZ29ZZ_i-ioUGQ,317
|
|
1152
|
+
angr/procedures/posix/usleep.py,sha256=lXo-DT5YEhD9368n7HRwkjQMrs9zC7gj5MThSNy-wQw,175
|
|
1153
|
+
angr/procedures/posix/write.py,sha256=gLss3oynKO5A5STFMuaNMMz7_wkPZVeQaaOS8UXYp7M,289
|
|
1154
|
+
angr/procedures/stubs/CallReturn.py,sha256=60Eks1gUXaa3wKedyWGVAGxBvp6PSSVwZwuwrz6h2wU,254
|
|
1155
|
+
angr/procedures/stubs/NoReturnUnconstrained.py,sha256=nxKpVLOZQvuXbJ_JnrC4jt-Tt0pkLab-HcSbqd1p9Po,448
|
|
1156
|
+
angr/procedures/stubs/Nop.py,sha256=6ac0ry48Yz9bQV8SPKIr4xV4GF9Yylmoik1OuMUn_LE,111
|
|
1157
|
+
angr/procedures/stubs/PathTerminator.py,sha256=d4WzGNwKtcUZygeub0iaEfD0PW6amYHCZ7G9CRBAAL0,143
|
|
1158
|
+
angr/procedures/stubs/Redirect.py,sha256=hf8SdL7-Ulj7hXCQ3hb_j4h2aHlkBYegeV2BjmTWHU4,480
|
|
1159
|
+
angr/procedures/stubs/ReturnChar.py,sha256=-bBiqJ-dILivNgfvmMpYZdfyrqHpwP8QhigxslMQRwE,357
|
|
1160
|
+
angr/procedures/stubs/ReturnUnconstrained.py,sha256=FFrZAdUViFi-8yzWuUwpmvJapj0qjfrHeJmo6mtadIg,732
|
|
1161
|
+
angr/procedures/stubs/UnresolvableCallTarget.py,sha256=Q8LPW3xiySQjUUVUQyDA6NndyLEdtye1bieC8dm9tZY,188
|
|
1162
|
+
angr/procedures/stubs/UnresolvableJumpTarget.py,sha256=vAeMt7bHzXyS48bMoLW9hxU6F2gKTGGPHk0lfU6-WsM,187
|
|
1163
|
+
angr/procedures/stubs/UserHook.py,sha256=aWVs2dnFz8hALC6VeC7xvm2yRbqb70Tx1p-pDx735Og,602
|
|
1164
|
+
angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bTdXVc,67
|
|
1165
|
+
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
1166
|
+
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
1167
|
+
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
1168
|
+
angr/procedures/stubs/format_parser.py,sha256=BVGvpA1_RTP9dmfSeZyMzEqcFp8urPTw-S8uKxGmX8w,27639
|
|
1169
|
+
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
1170
|
+
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1171
|
+
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
1172
|
+
angr/procedures/testing/retreg.py,sha256=0M0VoWzRzcEPeVHAxniDJ_Gl1Srz8OCAFu8EEKXAH-0,192
|
|
1173
|
+
angr/procedures/tracer/__init__.py,sha256=xItpgtnUe176vAt-Nt-2MjsZcEjCIqkoQjaa1hBR7F8,108
|
|
1174
|
+
angr/procedures/tracer/random.py,sha256=kXvNYVkYI5b5XZMebaHWIbmTZwNCFSY3qjvl0UwavZ4,267
|
|
1175
|
+
angr/procedures/tracer/receive.py,sha256=0ruK--hhu0DvGsqoZ2oc4LbrOrJiyd7kFB-_lipxQb0,594
|
|
1176
|
+
angr/procedures/tracer/transmit.py,sha256=aFUpHAy9aS5gh1fpnF6skeRK0MQ4LGU5GsURwr1D1I8,730
|
|
1177
|
+
angr/procedures/uclibc/__init__.py,sha256=aee4FFAxEUdRWSrXI_BjJbgSEDnM-rmSAX0X_2NRV8s,88
|
|
1178
|
+
angr/procedures/uclibc/__uClibc_main.py,sha256=pY_x-IZkR-0FdoBqD3-Xba2XFQTL5gpsrPNeyqa6vnU,328
|
|
1179
|
+
angr/procedures/win32/EncodePointer.py,sha256=L-vtUDW7kQrs8feTAc2IWxPWnojfvGLZe4Mxr1X7Y6E,132
|
|
1180
|
+
angr/procedures/win32/ExitProcess.py,sha256=WN6td8zkDlCXVzicc4kORhZMpuXhByO8xpNCcev9oRY,169
|
|
1181
|
+
angr/procedures/win32/GetCommandLine.py,sha256=5n2GKgkZF0c7qrRZfZAdGiKIi6ZxWaRcucOc3VZgnjA,263
|
|
1182
|
+
angr/procedures/win32/GetCurrentProcessId.py,sha256=bRa27LzA5eKtEjW73xTl8R-gxN2HkjKAW_HhkyCxxa4,140
|
|
1183
|
+
angr/procedures/win32/GetCurrentThreadId.py,sha256=_hcWgPsLLl84gn_A_GPgrfxxIgdh1vOifsA-xOZYhMg,139
|
|
1184
|
+
angr/procedures/win32/GetLastInputInfo.py,sha256=20ohcwvRA2t7BZoY7-VUosCPTfNpCjmPC-rmrx7Y1to,1127
|
|
1185
|
+
angr/procedures/win32/GetModuleHandle.py,sha256=O4-EgFPKSo0G9B2c_JVaCe_awUPkcXfsZ_iArLEq7Ns,939
|
|
1186
|
+
angr/procedures/win32/GetProcessAffinityMask.py,sha256=eituFNnUKgWRHIetCuPVZHOD1gVXCfZ_1cYbNdu7i2E,1155
|
|
1187
|
+
angr/procedures/win32/InterlockedExchange.py,sha256=XieQWeaxVw7kuepvk1P4BezmYIfEdNloxI9awWf8LEc,590
|
|
1188
|
+
angr/procedures/win32/IsProcessorFeaturePresent.py,sha256=0xJ94Pb7LxmgGESekm4Hz1YoMXm7OeOCdQBAxwWBZA0,236
|
|
1189
|
+
angr/procedures/win32/VirtualAlloc.py,sha256=gZhmQ7c-vHaxv35ge8rvoCZTY6dxEp_ThyVVtyJk5HA,4020
|
|
1190
|
+
angr/procedures/win32/VirtualProtect.py,sha256=s3jMPE6ocI3Jsj3cvK0XHsBhp4GdLYN5KM5lIajR5Rg,2309
|
|
1191
|
+
angr/procedures/win32/__init__.py,sha256=i2g6NRy5D4oId4UJ9TQJ3sDv9EyTdbXORjIwyAyMIwA,86
|
|
1192
|
+
angr/procedures/win32/critical_section.py,sha256=GPCS5WUwbcoUL4P7HpdjeEp99rgC41YmDfSnHH0LzfM,312
|
|
1193
|
+
angr/procedures/win32/dynamic_loading.py,sha256=xPhTI_Y-eYvBdkPQxLxAfyR2_7qHP446Ek3sU6ewG7c,3457
|
|
1194
|
+
angr/procedures/win32/file_handles.py,sha256=JLurfZB_1Kes6Y3T0Brg4yuVMA-REretLYwjkrewqKw,1468
|
|
1195
|
+
angr/procedures/win32/gethostbyname.py,sha256=4QzxOXJClPnNQvmnMo-lstJVsNGMhS_pseKpGSuM-BQ,327
|
|
1196
|
+
angr/procedures/win32/heap.py,sha256=halSL0nSotRrM_NMXOAfExF-k9hKrAWNSkVkiLMnCgY,1582
|
|
1197
|
+
angr/procedures/win32/is_bad_ptr.py,sha256=keK74qbuBNnZ7BTaEcl8ktL4fdiv4oe-6QSG8POB_lQ,792
|
|
1198
|
+
angr/procedures/win32/local_storage.py,sha256=N_aPM54HzoOwYyyOVcPAWad-nhAfFbt_WkoisGW4Zro,2167
|
|
1199
|
+
angr/procedures/win32/mutex.py,sha256=BfqGCEP07VrNDj01fsfHRajGJJTjgvCNjPomsw56TeE,212
|
|
1200
|
+
angr/procedures/win32/sim_time.py,sha256=kybnCxSg3RDf7IWr95KMCznyxnGz2VtAKnS3gZ3eFsY,5332
|
|
1201
|
+
angr/procedures/win32/system_paths.py,sha256=4tAvnu18QX5bVoFhax9hLQXuHm3yilzNEpsSZ6puWCM,1305
|
|
1202
|
+
angr/procedures/win32_kernel/ExAllocatePool.py,sha256=63tXPhk9BhQA6AWgg_lFjt5qIl2CyO7ylJSLfN5626Q,458
|
|
1203
|
+
angr/procedures/win32_kernel/ExFreePoolWithTag.py,sha256=ok_CG6yILlPGZzg-VvBxWMXkWZq-ucDK2WobkZGwx20,260
|
|
1204
|
+
angr/procedures/win32_kernel/__init__.py,sha256=I4WgVVCg4PuqChPe8nayrzLxDYJBFAwHdql8sWAD0Ps,70
|
|
1205
|
+
angr/procedures/win_user32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1206
|
+
angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9pVEG0mo,383
|
|
1207
|
+
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1208
|
+
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1209
|
+
angr/protos/__init__.py,sha256=t97_YdsRx8XG98VVrfIjvvJpp6owypusctxJ-GzEO_I,413
|
|
1210
|
+
angr/protos/cfg_pb2.py,sha256=3xrQf1deMqMGETFF4Sw09n0sx45BZzAdRB86400-85I,2389
|
|
1211
|
+
angr/protos/function_pb2.py,sha256=U55E0nWKAboOntLcI9SPFpJkfnInYzzRW8PbjlPKuz4,2146
|
|
1212
|
+
angr/protos/primitives_pb2.py,sha256=mlZqTH0_OgZbSyzFoBQhWa_wLuZS6l3Kqrhe2Joj_As,8527
|
|
1213
|
+
angr/protos/variables_pb2.py,sha256=Fun42E2lJ7iT0xW_mlG60GJeVa51grG7epWshoT9xMo,8112
|
|
1214
|
+
angr/protos/xrefs_pb2.py,sha256=uze_1xvipKxY7Xrpxl6BJC6OCwp3_-B62S81FlzXl2Q,1247
|
|
1215
|
+
angr/simos/__init__.py,sha256=APyQSfan9pdS1Qoqel0rdHlxTbtLHuRN-4Fjv6Fwni8,792
|
|
1216
|
+
angr/simos/cgc.py,sha256=4A0v4iOoCmLj3DNQPtXCdUDUCovSWo6aY1nkKdelh1w,5595
|
|
1217
|
+
angr/simos/javavm.py,sha256=mSi_sWUFmsLNi-cJVPX2zxzIbtscL_Rx12yZt9VnsWU,21023
|
|
1218
|
+
angr/simos/linux.py,sha256=Tks4QS4bT4HC0m-xU4O9agi5yiQbwQ6tVgEuZQeajfE,23170
|
|
1219
|
+
angr/simos/simos.py,sha256=TaTik8XHAYNt5cu5TQJ3MvPxmCW4XIhBBLGvksmT518,18128
|
|
1220
|
+
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1221
|
+
angr/simos/userland.py,sha256=ARpRZrRTxYWxceumRiWTuftq_HWGT-IridC6lbN1Lc8,7347
|
|
1222
|
+
angr/simos/windows.py,sha256=Qxz1IMjmIoMnNNjV2R2E-lMmcJfYri3lrr-wqq2dk2w,26063
|
|
1223
|
+
angr/state_plugins/__init__.py,sha256=oCwUtfV2k_Pg7KPJ1DJO0ie8f7Qp1RNg9O3xmV7pWvM,770
|
|
1224
|
+
angr/state_plugins/callstack.py,sha256=nOmPKi9QAqrqdxnjWLRRezSesKYNvmrvy-dwc6Wv2ic,12108
|
|
1225
|
+
angr/state_plugins/cgc.py,sha256=epjptGAabNG7AnHW99xC1ie1bT-Eev5zMIS8UcL2Zg4,4279
|
|
1226
|
+
angr/state_plugins/concrete.py,sha256=yxSL8Wa_yyJjFSoA7FLdVU7BbfW0F0bT2HbX0PEQzQ4,13286
|
|
1227
|
+
angr/state_plugins/debug_variables.py,sha256=LR-lsjnn6FVrEr8RCVkhA_gyeeh1jiHC92uP3EZNDEE,6815
|
|
1228
|
+
angr/state_plugins/filesystem.py,sha256=4AuEEPwQoqxw9UqMQIqHRS-F_hfYw_6kfjtm9tyUZIE,15756
|
|
1229
|
+
angr/state_plugins/gdb.py,sha256=JeRDDAjkZ9Ey5tn_f0sdgJTWgW2L7GiZjeCI0Glu25Y,5171
|
|
1230
|
+
angr/state_plugins/globals.py,sha256=IEqdnwW15T61XEaLxt4tO6AF9527uQYquKz_u5aIpi4,1594
|
|
1231
|
+
angr/state_plugins/history.py,sha256=raQpdiHyL0oSEj3Q8HMY2qkk6c8JbCOaFamlYosdM20,19213
|
|
1232
|
+
angr/state_plugins/inspect.py,sha256=DqP5b59IHVtbPORpCNDG1fYZmgSPLiuUp5gdp5OIfyw,11352
|
|
1233
|
+
angr/state_plugins/javavm_classloader.py,sha256=uD1IjQiL-EmVAfVofPQGZBhYPWTRRJ9gW5ubgsHNBxg,5580
|
|
1234
|
+
angr/state_plugins/jni_references.py,sha256=6EparErROnyfnOO0eGki3f0Dk8bCpRy6w9lsiS4JA1A,3436
|
|
1235
|
+
angr/state_plugins/libc.py,sha256=TgdNQj73OnegfiNYeDdp2cI238UtFZU4ZnZ0XeoeDwk,23597
|
|
1236
|
+
angr/state_plugins/light_registers.py,sha256=01GVUg37rZuq7LVMNVmHJNAODS9-xQAz1goOVPl4GQY,6687
|
|
1237
|
+
angr/state_plugins/log.py,sha256=V5m-VQ17kaEr-WwcxnCxLmuLk87iXOfUWAn4tNLsO2Q,2399
|
|
1238
|
+
angr/state_plugins/loop_data.py,sha256=jUZeOYjFyAgCaD3MzwOm2jia60qxMDhQhW_HUP7cFXQ,4244
|
|
1239
|
+
angr/state_plugins/plugin.py,sha256=bQDEm3HdTVG3eoEOuE7omAG695GP6BvxdQQ-HWKomTk,6160
|
|
1240
|
+
angr/state_plugins/posix.py,sha256=cg-UnShMUcKUmSN_T_iWUxGaznXIhGxtQ24bnp31-oY,26766
|
|
1241
|
+
angr/state_plugins/preconstrainer.py,sha256=UHGIdZbREJv4O02TmFCN9uNk4SF9W63fmRBXg2hLqfo,8048
|
|
1242
|
+
angr/state_plugins/scratch.py,sha256=Bp3GJ18k6LeSuyZzmNKyW1hVwhLcM_epacxI6TbBCtk,6243
|
|
1243
|
+
angr/state_plugins/sim_action.py,sha256=tjXmetx3sqePb6Nv-DquZt6MKKYT-8qYecU4L4Lb2bE,9678
|
|
1244
|
+
angr/state_plugins/sim_action_object.py,sha256=osccA0uWx70Cbl8E4B6EefcNoa4v07PnJVQQt_MOZsA,8509
|
|
1245
|
+
angr/state_plugins/sim_event.py,sha256=AgslUn62BGJqLOH7Gcd9C0zB5TabliehRgK3lhjDXdo,2096
|
|
1246
|
+
angr/state_plugins/solver.py,sha256=bHpD7AW2fu-kut8rAtD6T1pX55_-o3U7vJV8JNJc4w8,42471
|
|
1247
|
+
angr/state_plugins/symbolizer.py,sha256=y1Jyn1XTnUxtQEtwBU4ZkPvpWTOzu9XYGgEE_9ZgYw8,11024
|
|
1248
|
+
angr/state_plugins/trace_additions.py,sha256=rbiKBx7NGZJ9rvyluTjU4eOfH6O_mf9LDu6O9sBQH-A,29741
|
|
1249
|
+
angr/state_plugins/uc_manager.py,sha256=5f-9hP7lrX2EISKcXjsSPp8MfNzChVUzxdgj7B2jO4g,2976
|
|
1250
|
+
angr/state_plugins/unicorn_engine.py,sha256=QcpQ-YVse_YGVE2ZbQiCnY24rmvBeR31GGMYliuCn08,77140
|
|
1251
|
+
angr/state_plugins/view.py,sha256=wD6-IfB1GFRGpZWwUlk-qv3xwfX39OFy2EehU-H_ox0,12385
|
|
1252
|
+
angr/state_plugins/heap/__init__.py,sha256=WlwehEbGe_PTEb7RCQN_TI3bUVCA038HP3hCZ5SPr0o,171
|
|
1253
|
+
angr/state_plugins/heap/heap_base.py,sha256=U7MJrZHXp2JIPgndPrRz1T3uHI5HpIW-5zIYZ0sWdQY,6264
|
|
1254
|
+
angr/state_plugins/heap/heap_brk.py,sha256=eQksexHs-q0Yi-Wth8IChRTXAv1LbOIql0q2P1eyA-E,5447
|
|
1255
|
+
angr/state_plugins/heap/heap_freelist.py,sha256=vEyuZWaohGVbDsnc1ytW7K0Ov0lYjingEDPA9jz05AU,7916
|
|
1256
|
+
angr/state_plugins/heap/heap_libc.py,sha256=HzcyHifKGn_acUQJJAWhH4yD8xedzhNp1VMIyEce5a4,1893
|
|
1257
|
+
angr/state_plugins/heap/heap_ptmalloc.py,sha256=hJ8FzDV9ABZQwJ9SQwVmMScIC2fTWBc0DDSYiq6kiUE,28735
|
|
1258
|
+
angr/state_plugins/heap/utils.py,sha256=1m17vS443ARaq-e2dfuSpa5_xW6wuEnCtdUNrDL5mP4,828
|
|
1259
|
+
angr/storage/__init__.py,sha256=x2P2ndQPJzNLTPfOIaTXhWB7cDyMUMLcyRCs10XogjQ,217
|
|
1260
|
+
angr/storage/file.py,sha256=5R98rm6u5WYg6Nny238c4WGcHalFOF8dKWt7fcIg08Q,48045
|
|
1261
|
+
angr/storage/memory_object.py,sha256=S9rmIEPYh9NXe39AfVtubBeIrJ3pCdxia7uwigk_eUE,6163
|
|
1262
|
+
angr/storage/pcap.py,sha256=DaUENUK3W6AYNNs67OaEEF3WfzGTpfC0F3rD_A8U2Q0,1968
|
|
1263
|
+
angr/storage/memory_mixins/__init__.py,sha256=NoridWzqUQpEyE4D7lcnX3dMLyKAJp4B-zrpoUHV9Os,11905
|
|
1264
|
+
angr/storage/memory_mixins/__init__.pyi,sha256=937j60XMozvVAkjhMS7eORFTRnze8KDbRUo2gWiVt6c,1865
|
|
1265
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=3LawEyyo6dXQVeXV8l2rQcGiH2yXeLaM0hHxXeomzks,3401
|
|
1266
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=hvllYKq3wI3G0qWCn61IkoPCMrYd0bI_l8nsMP2eAZE,16479
|
|
1267
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=nRwrgldXTSbAwvKjmDhAAHXx4pa0dIbzzGJRZNVDsg4,2870
|
|
1268
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=-vzMvw15qmfNW2lEBDvHNOBakUOzAzisXLimmyVRx8I,5531
|
|
1269
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=dQo7puSIHfg50oDtGryz5_Dy2sIiX4V79thSvwhkEew,964
|
|
1270
|
+
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=ZTZY3CMYOmSo6yTKMjFb1wC8jYwdqO9g2alt_avNiG8,10298
|
|
1271
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=vDK2t7SzzQnLOwm5XZggGTE7a_OowNJWos-nma_QRus,5962
|
|
1272
|
+
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=_cXwAG1Me-oJAz0xce8AuGVlQG1ipHVPyyNFrG9nGEA,352
|
|
1273
|
+
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=2i21wXFxyIrUWjRw7DRBnXeYgHowfj7ytptlzIRTMEI,3638
|
|
1274
|
+
angr/storage/memory_mixins/label_merger_mixin.py,sha256=GdVwihsbyCX3WNajSvczk77sCEVMugYikz-5HzasZNk,859
|
|
1275
|
+
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=bfuSot6gDwUINdUfjkwcdL-3R4VmLOJaUBZejFJGR7U,3267
|
|
1276
|
+
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=Wa7ld8dzpgw372QNqdZo08UJx7bFFzQP_HpgV-_pzqE,3355
|
|
1277
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=s5jbdW1QVMKIkIuiQ7-QXScj8N9PfiJH2q59GklU1fA,2529
|
|
1278
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=tR83r30RWyrDYpP0w6eWH90VLT8gTpBs49tqI0NU6xo,537
|
|
1279
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=No5jtP1ch9PecoIRN49Yn3V6e5gttyhaQ2Fzw1WajDc,5683
|
|
1280
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=eHf_ogJzkg4hhgRAjsqvbuKxY3yN8j9pLTs5TqhCuCQ,4890
|
|
1281
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=OLwXnWGmzkcizLk4NqPCfoS_CuYDR90d3sRBisF38V8,5670
|
|
1282
|
+
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=71-evNRosVEVbcVAqYADGLWERYp1Xbd4Rr70Kwnu7fc,462
|
|
1283
|
+
angr/storage/memory_mixins/top_merger_mixin.py,sha256=rZJY__8Vs7pab09sj5WDoljmDGInaEu4OJrpNojSYh4,682
|
|
1284
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=uIj6LHKPHSZ1Z29s9zQ-YtNZHEbzwee3SoDu_T_yt_s,2563
|
|
1285
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=yGAad1qcKFrYTLX10n79CU_lIoYLgjgazB4qpdhWkyU,1062
|
|
1286
|
+
angr/storage/memory_mixins/javavm_memory/__init__.py,sha256=ha6JDepJt-st_uyRYAjnuaQo3QOkn0qQEdB-avNTttk,86
|
|
1287
|
+
angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py,sha256=ZXo_6XnTOVdZfL5l40Cgx40CWqw_kOMUGxy7GJg-qHA,15230
|
|
1288
|
+
angr/storage/memory_mixins/keyvalue_memory/__init__.py,sha256=aDiCDQfPYG0tkJEy499Ehk3JwyuLF8AwSOhP-VvAaa8,90
|
|
1289
|
+
angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py,sha256=3v8YoRJ8namBIHs5UFw8JoKOnFPHX8QW2JJG25Bs6OM,939
|
|
1290
|
+
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1291
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=3U9RFKnZbz8_AIx4YI73zAyEv2ENzvwziGntZhuZ36A,10261
|
|
1292
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=zQqUhk9IhPdYxHfOnUxUNQh4sZaDuD30svQvPsXEwj8,28899
|
|
1293
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=JbGoUMwMhPn6u8NrBte42l6y28BO5okr2wzvW9xlhOI,2227
|
|
1294
|
+
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Q5SMKgywnkG1p5j5SGK43ZA1EEUPA0UH-ejtVWcyQsQ,1576
|
|
1295
|
+
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=uoyuk21gfK0JIFJkDgwZzvM0S36psCCDMX9sqod8Hlc,3318
|
|
1296
|
+
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=CdaadBh9y6eXZVIWQAcCh0gnLzsyV_gLobR_O_Fu2L0,1494
|
|
1297
|
+
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=50fIqhL8Vabj7vO4S99gLUXPeo9uCumEm-FDqCvD38c,12783
|
|
1298
|
+
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=5wbOgaEndlBN8bLFLIT9C6AGvIYqVl6V-tr8jngA0Ig,3024
|
|
1299
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=EeigTak2ZAXvnjpdQgU0j59eJIi8mpL4b2zhK6zdMUk,2085
|
|
1300
|
+
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=uqxaCFMqo0XlMQGN-iqUYm_IqMTOXOnnp_vCtWL4Yug,14413
|
|
1301
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=Dr4BKwfYzul9fpc_nexWONCoXukDev56f6jYcY84ywY,11159
|
|
1302
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=uGrNdTdr4PbX2qkXz3AvvqfrH_XU74yIue5V0uMCDes,17525
|
|
1303
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=qh5wQZZvi81LjtzaD7hd5eAG3uJmx_ZaQDm5wEKm7ys,865
|
|
1304
|
+
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=9KPSff92O4N_Hym7bLf4FvKNlU1krxRxTUBxA35PesM,1714
|
|
1305
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=0-ohuIlSRrXegP5uPGrBw-B-loChBfYUKelyLnYxha4,19912
|
|
1306
|
+
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=m1eLIZylx0TftwAYLp48ON384LehyIC5rj6ks-sY31s,386
|
|
1307
|
+
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
1308
|
+
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=HnRhC7WKvfKvQDRRgAu4CLacKeLF6ox_obnhynsyRnE,821
|
|
1309
|
+
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=viIZN_l6NXSq9d-UaEgA7qlMwTXEc7H8-szaTVp3adk,163
|
|
1310
|
+
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=F5fsDNQf2uwbK_rUhcFRX9cIuuZSwZtaLmaHDzT6IUE,9175
|
|
1311
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=75MX0O68jwCE2_y1mHi-72CQnVzzu9QuvEp3Ez4TZ5c,7715
|
|
1312
|
+
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=8DTN9ifMHE02KAnReCDJD36VUWZiPohE2B9_cpjAPfs,4907
|
|
1313
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=dEXjR81tZXcKHnvjdpBBWu67Td-L0zRp-fDF-lpNTDI,18064
|
|
1314
|
+
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=SwbQVHI5oZ6dMiKxLOJxO7OtBbmYpNF8iKLxt7RGb34,2137
|
|
1315
|
+
angr/utils/__init__.py,sha256=7bf6XPEUWzSHg6oIijQcGZknmS10F7FRT--sHdeBGqw,1015
|
|
1316
|
+
angr/utils/ail.py,sha256=8_FloZ6cP89D2Nfc_2wCPcuVv7ny-aP-OKS3syCSMLk,1054
|
|
1317
|
+
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1318
|
+
angr/utils/bits.py,sha256=-yXIHPsJ3nYNNdnAnqLCmjAm_beAfZdbWHVQGWuAGd8,294
|
|
1319
|
+
angr/utils/constants.py,sha256=4eZ6yXRfKkHDdgdEXT_LTZDFQuwiPK73ddaid3TuXd8,245
|
|
1320
|
+
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1321
|
+
angr/utils/dynamic_dictlist.py,sha256=n-HlT1H8yk4KowLTJ6II5ioJr5qn66DW3t4hhesx1Vs,3048
|
|
1322
|
+
angr/utils/endness.py,sha256=wBcek3rwRQCYdMVFOV5h5q16Ahgjn2x_zZdPeZQEui0,501
|
|
1323
|
+
angr/utils/enums_conv.py,sha256=doSRTjErDIedkyjQxk-rpo_7bbfrl9s7xwR5KEm7v_k,2126
|
|
1324
|
+
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1325
|
+
angr/utils/formatting.py,sha256=6szFjm3RtlD3G_csDmRgEB8JFNGC3GfZC8YdGYa1ZHg,4242
|
|
1326
|
+
angr/utils/funcid.py,sha256=dSGbKUWpTzy48374lJqHyRefJ6K7B7jRVhYHmpGmD3I,5256
|
|
1327
|
+
angr/utils/graph.py,sha256=SqYZbVeqvewlLM7U9daShFcY1K_xtaMvEGhprQMVOxM,29701
|
|
1328
|
+
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1329
|
+
angr/utils/library.py,sha256=nIz1PA5AwcAO4n1B2d98g4Zra3hvY6-z2veDIHV3n2w,7134
|
|
1330
|
+
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
1331
|
+
angr/utils/mp.py,sha256=nyWOZC9xYAYTHcxCnGA8Udtao7lMyU3Xq9_DZlQb2IQ,1900
|
|
1332
|
+
angr/utils/orderedset.py,sha256=K5PKeDqy4xUeq47k7SdZ7E3K9M1AMXJ9-veTOo5DQIE,1978
|
|
1333
|
+
angr/utils/segment_list.py,sha256=ayUMIeaFp61AhTuxsf_go4XoXRqGi8cxTeP0OyuhEk4,20369
|
|
1334
|
+
angr/utils/timing.py,sha256=aOXqYx4ag7BD6jVAJxH61pDg9ie2mT8nv4cQFp66ffM,1351
|
|
1335
|
+
angr/utils/typing.py,sha256=qmQs3x6tIBj7fLfwuIs66M-ufa_1865bbyxC7rlWb9I,466
|
|
1336
|
+
angr/utils/ssa/__init__.py,sha256=Z7yXY0xe4X-T4bfdK0YtL9ZFnYF-JhQuJ16ZW-wpSZI,7886
|
|
1337
|
+
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1338
|
+
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1339
|
+
angr-9.2.118.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1340
|
+
angr-9.2.118.dist-info/METADATA,sha256=OdvVJHvHDvPFj48_R0eefSpYpHbgm9rAbOV-kSa0aMI,4768
|
|
1341
|
+
angr-9.2.118.dist-info/WHEEL,sha256=37evyuMEjsyAveQX40iT43Lz7iWGYiYX5J9a6lEUCNg,97
|
|
1342
|
+
angr-9.2.118.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1343
|
+
angr-9.2.118.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1344
|
+
angr-9.2.118.dist-info/RECORD,,
|