angr 9.2.117__py3-none-manylinux2014_x86_64.whl → 9.2.119__py3-none-manylinux2014_x86_64.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 +88 -46
- 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 +60 -92
- angr/analyses/cfg/cfg_fast.py +406 -335
- 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 +97 -112
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +26 -32
- 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 +371 -184
- angr/analyses/decompiler/condition_processor.py +127 -116
- 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 +50 -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 +2 -1
- 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 +503 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +1215 -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 +102 -37
- 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 +172 -160
- 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 +27 -43
- angr/analyses/decompiler/structuring/phoenix.py +201 -201
- 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 +3 -5
- 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 +35 -54
- angr/analyses/identifier/runner.py +6 -5
- 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 +161 -166
- 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 +38 -35
- 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 +106 -98
- 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 +26 -16
- angr/analyses/typehoon/typeconsts.py +22 -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 +17 -21
- 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 +102 -148
- 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 +147 -147
- 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 +1 -0
- angr/concretization_strategies/controlled_data.py +1 -0
- 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 +5 -4
- angr/concretization_strategies/norepeats_range.py +1 -0
- angr/concretization_strategies/range.py +1 -0
- angr/concretization_strategies/signed_add.py +13 -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 +2 -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 +72 -85
- angr/engines/pcode/__init__.py +1 -0
- angr/engines/pcode/behavior.py +3 -3
- angr/engines/pcode/cc.py +1 -0
- angr/engines/pcode/emulate.py +13 -16
- angr/engines/pcode/engine.py +7 -5
- 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 +46 -52
- 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 +2 -1
- angr/engines/soot/expressions/constants.py +1 -0
- 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 +1 -0
- angr/engines/soot/expressions/newMultiArray.py +3 -3
- 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 +2 -1
- angr/engines/soot/statements/identity.py +1 -0
- angr/engines/soot/statements/if_.py +2 -1
- angr/engines/soot/statements/invoke.py +1 -0
- angr/engines/soot/statements/return_.py +1 -0
- angr/engines/soot/statements/switch.py +1 -0
- angr/engines/soot/statements/throw.py +2 -1
- angr/engines/soot/values/__init__.py +4 -2
- angr/engines/soot/values/arrayref.py +8 -10
- 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 +21 -24
- angr/engines/syscall.py +9 -9
- angr/engines/unicorn.py +14 -9
- 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 +8 -9
- angr/engines/vex/heavy/dirty.py +6 -5
- angr/engines/vex/heavy/heavy.py +15 -14
- 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 +6 -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 +17 -19
- angr/exploration_techniques/driller_core.py +3 -7
- 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 +5 -4
- 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 +34 -39
- 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 +27 -43
- 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 +4 -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/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/telemetry.py +54 -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 +1 -0
- angr/procedures/cgc/deallocate.py +1 -0
- angr/procedures/cgc/fdwait.py +1 -0
- angr/procedures/cgc/random.py +1 -0
- angr/procedures/cgc/receive.py +26 -26
- angr/procedures/cgc/transmit.py +1 -0
- 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 +2 -3
- 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 +4 -3
- angr/procedures/java_io/read.py +1 -0
- angr/procedures/java_io/write.py +1 -0
- angr/procedures/java_jni/__init__.py +25 -18
- angr/procedures/java_jni/array_operations.py +1 -0
- 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 +2 -1
- 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 +1 -0
- angr/procedures/java_util/scanner_nextline.py +2 -1
- angr/procedures/libc/abort.py +1 -0
- angr/procedures/libc/access.py +1 -0
- 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 +1 -0
- angr/procedures/libc/fflush.py +1 -0
- angr/procedures/libc/fgetc.py +1 -0
- angr/procedures/libc/fgets.py +19 -19
- angr/procedures/libc/fopen.py +6 -8
- 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 +1 -0
- angr/procedures/libc/free.py +1 -0
- angr/procedures/libc/fscanf.py +2 -2
- angr/procedures/libc/fseek.py +3 -2
- 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 +25 -25
- 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 +18 -18
- angr/procedures/libc/getuid.py +1 -0
- angr/procedures/libc/malloc.py +1 -0
- angr/procedures/libc/memcmp.py +3 -6
- angr/procedures/libc/memcpy.py +1 -0
- angr/procedures/libc/memset.py +1 -0
- 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 +1 -0
- 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 +1 -0
- angr/procedures/libc/sprintf.py +1 -0
- 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 +1 -0
- angr/procedures/libc/strcmp.py +1 -0
- angr/procedures/libc/strcpy.py +2 -2
- angr/procedures/libc/strlen.py +35 -31
- angr/procedures/libc/strncat.py +1 -0
- angr/procedures/libc/strncmp.py +9 -11
- angr/procedures/libc/strncpy.py +1 -0
- angr/procedures/libc/strnlen.py +2 -2
- angr/procedures/libc/strstr.py +8 -4
- angr/procedures/libc/strtol.py +9 -9
- 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 +1 -0
- angr/procedures/libc/toupper.py +1 -0
- 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 +2 -1
- angr/procedures/linux_kernel/fstat64.py +2 -1
- 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 +1 -0
- 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 +1 -0
- angr/procedures/linux_kernel/sigprocmask.py +1 -0
- angr/procedures/linux_kernel/stat.py +3 -2
- angr/procedures/linux_kernel/sysinfo.py +1 -0
- angr/procedures/linux_kernel/tgkill.py +1 -0
- angr/procedures/linux_kernel/time.py +2 -1
- 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 +2 -1
- 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 +1 -0
- angr/procedures/ntdll/exceptions.py +4 -3
- angr/procedures/posix/accept.py +2 -2
- angr/procedures/posix/bind.py +1 -0
- angr/procedures/posix/bzero.py +1 -0
- 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 +16 -19
- angr/procedures/posix/fileno.py +1 -0
- angr/procedures/posix/fork.py +1 -0
- 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 +2 -1
- angr/procedures/posix/open.py +1 -0
- angr/procedures/posix/opendir.py +1 -0
- angr/procedures/posix/poll.py +3 -3
- 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 +1 -1
- angr/procedures/posix/recv.py +1 -0
- angr/procedures/posix/recvfrom.py +1 -0
- angr/procedures/posix/select.py +7 -7
- angr/procedures/posix/send.py +2 -2
- angr/procedures/posix/setsockopt.py +1 -0
- angr/procedures/posix/sigaction.py +1 -0
- angr/procedures/posix/sim_time.py +1 -0
- angr/procedures/posix/sleep.py +1 -0
- angr/procedures/posix/socket.py +2 -2
- angr/procedures/posix/strcasecmp.py +1 -0
- angr/procedures/posix/strdup.py +1 -0
- angr/procedures/posix/strtok_r.py +32 -36
- 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 +3 -2
- angr/procedures/stubs/ReturnChar.py +1 -0
- 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 +2 -1
- angr/procedures/stubs/b64_decode.py +1 -0
- angr/procedures/stubs/caller.py +1 -0
- angr/procedures/stubs/crazy_scanf.py +1 -0
- angr/procedures/stubs/format_parser.py +12 -16
- 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 +4 -4
- angr/procedures/tracer/transmit.py +4 -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 +1 -0
- angr/procedures/win32/GetModuleHandle.py +3 -4
- angr/procedures/win32/GetProcessAffinityMask.py +1 -0
- 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 +2 -2
- angr/procedures/win32/heap.py +1 -0
- angr/procedures/win32/is_bad_ptr.py +1 -0
- angr/procedures/win32/local_storage.py +7 -6
- angr/procedures/win32/mutex.py +1 -0
- angr/procedures/win32/sim_time.py +7 -10
- 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 +1 -0
- angr/procedures/win_user32/keyboard.py +1 -0
- angr/procedures/win_user32/messagebox.py +2 -4
- 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 +16 -15
- angr/sim_state.py +61 -88
- angr/sim_state_options.py +9 -15
- angr/sim_type.py +135 -123
- angr/sim_variable.py +23 -38
- angr/simos/__init__.py +3 -1
- angr/simos/cgc.py +2 -1
- angr/simos/javavm.py +84 -95
- angr/simos/linux.py +54 -64
- angr/simos/simos.py +14 -23
- angr/simos/snimmuc_nxp.py +3 -6
- angr/simos/userland.py +6 -6
- angr/simos/windows.py +14 -11
- angr/slicer.py +13 -11
- angr/state_hierarchy.py +4 -4
- 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 +9 -6
- 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 +27 -36
- angr/state_plugins/heap/utils.py +1 -0
- angr/state_plugins/history.py +7 -10
- 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 +6 -8
- angr/state_plugins/log.py +1 -0
- angr/state_plugins/loop_data.py +1 -0
- angr/state_plugins/plugin.py +7 -8
- angr/state_plugins/posix.py +14 -22
- angr/state_plugins/preconstrainer.py +4 -3
- angr/state_plugins/scratch.py +6 -5
- 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 +65 -93
- angr/state_plugins/symbolizer.py +5 -6
- angr/state_plugins/trace_additions.py +32 -42
- angr/state_plugins/uc_manager.py +16 -9
- angr/state_plugins/unicorn_engine.py +21 -37
- angr/state_plugins/view.py +20 -19
- angr/storage/__init__.py +1 -0
- angr/storage/file.py +31 -33
- angr/storage/memory_mixins/__init__.py +12 -15
- angr/storage/memory_mixins/__init__.pyi +13 -14
- angr/storage/memory_mixins/actions_mixin.py +2 -1
- angr/storage/memory_mixins/address_concretization_mixin.py +11 -15
- 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 +7 -8
- angr/storage/memory_mixins/default_filler_mixin.py +12 -14
- 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 +16 -23
- 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 +6 -5
- 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 +22 -36
- 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 +38 -42
- 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 +4 -5
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +129 -13
- angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +2 -1
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +34 -44
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +7 -9
- angr/storage/memory_mixins/simple_interface_mixin.py +8 -11
- angr/storage/memory_mixins/simplification_mixin.py +1 -0
- angr/storage/memory_mixins/size_resolution_mixin.py +5 -4
- angr/storage/memory_mixins/slotted_memory.py +3 -3
- angr/storage/memory_mixins/smart_find_mixin.py +3 -2
- angr/storage/memory_mixins/symbolic_merger_mixin.py +1 -0
- 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 +35 -35
- angr/storage/pcap.py +3 -3
- angr/tablespecs.py +1 -0
- 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 +32 -20
- angr/utils/typing.py +1 -0
- angr/vaults.py +7 -8
- {angr-9.2.117.dist-info → angr-9.2.119.dist-info}/METADATA +9 -8
- angr-9.2.119.dist-info/RECORD +1345 -0
- {angr-9.2.117.dist-info → angr-9.2.119.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.117.dist-info/RECORD +0 -1310
- {angr-9.2.117.dist-info → angr-9.2.119.dist-info}/LICENSE +0 -0
- {angr-9.2.117.dist-info → angr-9.2.119.dist-info}/entry_points.txt +0 -0
- {angr-9.2.117.dist-info → angr-9.2.119.dist-info}/top_level.txt +0 -0
angr-9.2.117.dist-info/RECORD
DELETED
|
@@ -1,1310 +0,0 @@
|
|
|
1
|
-
angr/__init__.py,sha256=yd29NVDgOybJL1pSzu5Z8w0CyvQWDVlzjVxGENincYI,3708
|
|
2
|
-
angr/__main__.py,sha256=r_0MUFPLo4SOr0ejkF194aKdfRFivsbB9EIOiqVaIHQ,1921
|
|
3
|
-
angr/annocfg.py,sha256=1tnBfxgLJh9I6Brm1JDdsWLHGmCQYdD6PTC_bFTOMrg,10775
|
|
4
|
-
angr/blade.py,sha256=B8QXVQ93jz1YCIlb-dZLeBqYmVFdMXI5GleP1Wnxjrw,15519
|
|
5
|
-
angr/block.py,sha256=tHxXlBBFrPZbp5phhTn63K55khjDIIUSNJgFn4lPd9I,14761
|
|
6
|
-
angr/callable.py,sha256=-E9HelavtRY1xPAxCVXl120H8Rb7Myd2IcrXtWZFAOU,6034
|
|
7
|
-
angr/calling_conventions.py,sha256=LM3IthltVTpttov6Bo7xvyAGFVg2Xbhyk2VOCXX9nac,91670
|
|
8
|
-
angr/code_location.py,sha256=ToSlZdmpVU8x1_neFpc-vBnjDQCHsCdV-hlpc9-tQlE,5465
|
|
9
|
-
angr/codenode.py,sha256=Di6ZxGqf-e6tKL49Zr0sq4vqpy_-nUDYkBdLj2Tg2Po,3760
|
|
10
|
-
angr/errors.py,sha256=Yh_qSz7FjMSqqK9P3CVJHQZUzvTELLg6dRGYyINVZSM,8348
|
|
11
|
-
angr/factory.py,sha256=C6HlSkBcl9T8y8s7EvFwj5JCV2OMyKrd317fqOjKcYQ,17305
|
|
12
|
-
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
angr/keyed_region.py,sha256=aJzy9-iXxIdJdmrH3fhaM3_KFrGHJUO7YzswjRlrsO0,18109
|
|
14
|
-
angr/project.py,sha256=-1VjiXyaqokF_J4fJ_ZWB3alko7dkx0JBV9AK6dZvcM,37254
|
|
15
|
-
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
16
|
-
angr/serializable.py,sha256=6cljvzAqFwsLqFu9ouCno7hMpgstha5-8C7RyWNCRXc,1502
|
|
17
|
-
angr/service.py,sha256=9R50bFaCf6zjxybiEIVIkODSVCsE2VcTul_KjjsjaGU,1102
|
|
18
|
-
angr/sim_manager.py,sha256=YN7WwjAyGEdnTaj3tBSQt-3I9aYn3aEfgxT5RRm4HbQ,39374
|
|
19
|
-
angr/sim_options.py,sha256=OuT01xS_F3ifBD9MAfZmNCnfjtTg0HulZlrKcs1LNSY,18057
|
|
20
|
-
angr/sim_procedure.py,sha256=qScqvmJT92TogLfMkbmcuPD80Fga460TT2brqZcmD5E,26181
|
|
21
|
-
angr/sim_state.py,sha256=TGzk1Cl0kAFBSDQvw5cpsn0TC9ykvRNl9gMb08Uh-fE,37858
|
|
22
|
-
angr/sim_state_options.py,sha256=lfP7ygngjGe0AGV5rkE24tvBazJBZG-RTdrKj4rL9XE,12530
|
|
23
|
-
angr/sim_type.py,sha256=WNIeIqApQQNuHpyZ1pgE7jnmqp1MNXisLEFpr81b898,130955
|
|
24
|
-
angr/sim_variable.py,sha256=NOhNiFKApu7umseP-Lzde8uTo-NXSkU0h-qELmOUjwY,16597
|
|
25
|
-
angr/slicer.py,sha256=kbLKMAjf2kC6ov-OiGb95BqLmgV0QRl5mmEANcvzuAk,10640
|
|
26
|
-
angr/state_hierarchy.py,sha256=w_5Tl-7h9xUXBsIKZRAWw8Xh0we8GIAaN6nbKgYH_Qo,8467
|
|
27
|
-
angr/tablespecs.py,sha256=NP_DcBlhZh7gHX1mNtIc5OSCdmpDsdV1rojlZaTI900,3224
|
|
28
|
-
angr/vaults.py,sha256=qtSdOBpgQ2Qopkh1y0QgEvPtqpbBj-gRq_2Xxc2Q1PM,9672
|
|
29
|
-
angr/analyses/__init__.py,sha256=lYtaal5RD-EWBW4oScD3Yob1Jk1ZYYqUUCBeTxH7IpE,1773
|
|
30
|
-
angr/analyses/analysis.py,sha256=BNpBoQOkgbtV9cmMiO8e0WcTgIJKraikYISLDQ-cC6w,12301
|
|
31
|
-
angr/analyses/backward_slice.py,sha256=grgjobcuTGq-rporwoBLNWf6aEoemCB7BvwE0dDeMp0,27287
|
|
32
|
-
angr/analyses/binary_optimizer.py,sha256=uXrvQ1pVKev9o0aqnuqz7Mbo20vMoZogJpvrjdjxXkQ,26267
|
|
33
|
-
angr/analyses/bindiff.py,sha256=aFFfp4zHJqYGFp2ge-MBt7q2k1DFZb9VD1zC_cxFMmE,51815
|
|
34
|
-
angr/analyses/boyscout.py,sha256=BFlxz4o8mpFXDiObd_x_9ObGvgBeh-zlxcC-_YT2wHs,2448
|
|
35
|
-
angr/analyses/callee_cleanup_finder.py,sha256=gWeXZNM1wFYz6v2Fgy_0DlJSx53Zkf2M5lgvIGARCm8,2835
|
|
36
|
-
angr/analyses/calling_convention.py,sha256=mb4lilzz2DaRf6OQ1zH-TF_U9KB29dTSbC2c1gK_klU,39935
|
|
37
|
-
angr/analyses/cdg.py,sha256=78clkjTpPSAo0HlL-ucK8U8hYyPIsDxB_1IEUFEqLNk,6326
|
|
38
|
-
angr/analyses/class_identifier.py,sha256=lA_r-AUoP8nFCKMbyCuca-AfV7rOdj0g-XCFdbS5G0w,2969
|
|
39
|
-
angr/analyses/code_tagging.py,sha256=_SnJd0FkE1ZXvv6uzxaoIACJANKCrGtK3nLWcuS7Lb0,3641
|
|
40
|
-
angr/analyses/complete_calling_conventions.py,sha256=alAAA51TfGUAZu13-lqQl2uGawBMZfiKPsKuy9Q5CxM,18474
|
|
41
|
-
angr/analyses/congruency_check.py,sha256=U3xBVim4pNSrnURqsFysipVIuGFWbqtxZ6nfRBfWaLY,16456
|
|
42
|
-
angr/analyses/datagraph_meta.py,sha256=75AVKJ8LIL4Id0nlz3Gf6XlruqarYyBX1WylxRvcAeQ,3386
|
|
43
|
-
angr/analyses/ddg.py,sha256=C2Mr_RX95-Dz4y6LsPIhrRAQm-c8aAmQJPp4IpE0Wrc,63402
|
|
44
|
-
angr/analyses/disassembly.py,sha256=ZBVtHUt2TBDuIz_mIFY_6thJrIxCEucOSoBfbOQVwIs,45936
|
|
45
|
-
angr/analyses/disassembly_utils.py,sha256=4Np0PCPjr0h0jIVzUUG6KzrEKl9--IpTE3sgmmsmhcg,2989
|
|
46
|
-
angr/analyses/dominance_frontier.py,sha256=XRfC_LUUetE8t1Cc9bwvWS9sl63Fx9sp8KFqN_Y9IDg,1245
|
|
47
|
-
angr/analyses/find_objects_static.py,sha256=woA3Fc45jbYMmSps-gOO5DqgPohQbx3LhicfrA6bb34,10158
|
|
48
|
-
angr/analyses/flirt.py,sha256=fhSUWcNG8c0Pkg4_H0zRh10aM3jaWVPRyC-ZrFbViXk,7841
|
|
49
|
-
angr/analyses/init_finder.py,sha256=hFHPsHipF4QkWzVqcDeTgL6YIaYi8bAyaURZBksS4KI,8531
|
|
50
|
-
angr/analyses/loop_analysis.py,sha256=nIbDIzvys-FRtJYnoZYNbMWH5V88qrhoMtrMRCTbkLY,9412
|
|
51
|
-
angr/analyses/loopfinder.py,sha256=X8F4Dcu2UHDXt6JifK6EfROAeeczyca6V7zxx9z7GpQ,7122
|
|
52
|
-
angr/analyses/proximity_graph.py,sha256=TEgEYMnZgjV9oWUS3mIteftrGeFJCqMkeDUHy38NBq8,16260
|
|
53
|
-
angr/analyses/reassembler.py,sha256=U1suz3TwZI2jopzPXNenxa1uFD2aB3JVS-M8yIWX-lc,100413
|
|
54
|
-
angr/analyses/soot_class_hierarchy.py,sha256=Cs_LRV1RLXH6sF_E49tJWg9Inxvv_o5mB-VaIBcbQJg,8941
|
|
55
|
-
angr/analyses/stack_pointer_tracker.py,sha256=9TOGwz5Rx4jXxoGbdtrBrMca6mJi3SXn4MS4Gx-vrmk,30207
|
|
56
|
-
angr/analyses/static_hooker.py,sha256=g57k_fwxgS4oTzslyCpOf4faG17E685a4-4SpEz8Ges,1711
|
|
57
|
-
angr/analyses/veritesting.py,sha256=2ATcoDtZT_iGbIdMwcTRhSbYHWNxDkHZBo2r1H1xuEA,25199
|
|
58
|
-
angr/analyses/vfg.py,sha256=3ot-YAaMtOyYdAE3DZYJSqKI2tmb6qLWiRBrATN0c28,75074
|
|
59
|
-
angr/analyses/vsa_ddg.py,sha256=7c7sTwMqNsian9rVRijqsHQ2797XF5XsfbJ7AvtXwvI,16173
|
|
60
|
-
angr/analyses/vtable.py,sha256=MzSFDAbGTNYH4-rtnrN1v2HSNR3nbVIWQi2Suim0Af4,3874
|
|
61
|
-
angr/analyses/xrefs.py,sha256=6OSgC3UQDbyTSvz5qZtOfRQ6Bqj-OwD39ZZp-HFOlIY,9683
|
|
62
|
-
angr/analyses/cfg/__init__.py,sha256=DRCry4KO2k5VJLyfxD_O6dWAdi21IUoaN5TqCnukJJs,321
|
|
63
|
-
angr/analyses/cfg/cfb.py,sha256=e-Jlf9B7gkx0GpKl2TvK8VdTWZU8s-A9U9id5MP-R10,15456
|
|
64
|
-
angr/analyses/cfg/cfg.py,sha256=1JpPGlqXXRFwE0tk26xjabT_-dq-kqAxMv7o6-DUhp4,3146
|
|
65
|
-
angr/analyses/cfg/cfg_arch_options.py,sha256=YONHg6y-h6BCsBkJK9tuxb94DDfeOoy9CUS-LVyyDyg,3112
|
|
66
|
-
angr/analyses/cfg/cfg_base.py,sha256=tFjNjjIzmbM40daHKqitF21P8P4vfNFdZ0RFJ0QDNKk,123132
|
|
67
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=aKncCgeVGR2QIzydZwkmLIuapLXfD0CQ39YvqwdHhhI,152786
|
|
68
|
-
angr/analyses/cfg/cfg_fast.py,sha256=T-jFnOrBRTRizu3Vg3reU62JOGKCN5OOJcxGwb2cLOc,218168
|
|
69
|
-
angr/analyses/cfg/cfg_fast_soot.py,sha256=dQglRl4h10i8DNd5oCSJ4umpSotMthjKc5E03bd3BJI,26023
|
|
70
|
-
angr/analyses/cfg/cfg_job_base.py,sha256=vmezyE1gOCWtJKk8P6qWCXz2sn-jQJ42fP8xNjSoBow,5976
|
|
71
|
-
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=T2rCpXy_fIoW_kHwZAVZupoj2UljitHvpI2uWJZ8NwU,361
|
|
72
|
-
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=BgJyv5V2yEI2-CtvTP_8BxN-uVdT0Jz6B08MlZHSpdQ,2083
|
|
73
|
-
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=mMLQ5cUDjpGXD38Q4IAJW1VvsWSZOoyTR0Vv694zjc4,1777
|
|
74
|
-
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=VhgIEDBSN6K_1pNHW1O23bOvc_gbi7bPpmlTGE7_5Uw,5231
|
|
75
|
-
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=9ctRVLyVUMhkBV0y-Iy48usHBodGfkaWK1C7Dim2fgE,5273
|
|
76
|
-
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=TyRIBvH8St1eHktpRrErD4zp8HKP3ppglfPuCEE0wg0,1441
|
|
77
|
-
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=AmKBScV9LifJLWyOGnwv7efEtTRnv36zT_xDqQkWOCQ,101970
|
|
78
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=t7qtQvT1TROZv_IF5rulEpSwBT8QUqCaUVZLAWpMtAM,19328
|
|
79
|
-
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=z77LC9YyQjNEr8ncVwIXVVqPyUjL2x2pGvqAax6QlYo,957
|
|
80
|
-
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=2YyKPaXuWVbPwUQZcn0CKuba3ydYGIMT0Vxhy09kcV0,3019
|
|
81
|
-
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=suPJkHzib8JGQpIrB0K5_AC6FgMOUe0iLnLLLhWVCM0,2971
|
|
82
|
-
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=tGDb2dpgHATY5AlBExtD3mvIEMqqV6fxKOHNTn8uohU,1621
|
|
83
|
-
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=9f1EAg5ZwEgwBZqymEvDErEh5jhD3bHQBiPBH_ONnH4,120
|
|
84
|
-
angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py,sha256=_lriAVxsyjHbi8-zzL7UZSV4fBCgxXS5oB3shxMcTv4,3958
|
|
85
|
-
angr/analyses/cfg_slice_to_sink/graph.py,sha256=-xHCkXBJtD74uYA27On59NZfBgPw-fXYGQtT6rfbB7Y,3560
|
|
86
|
-
angr/analyses/cfg_slice_to_sink/transitions.py,sha256=QSrGmYOvc5NMiWs4XV78GUeru7d9Dqsq3MxtI5xPtmw,870
|
|
87
|
-
angr/analyses/data_dep/__init__.py,sha256=0lw_UQtE5ukbWzpCiO8sFGEu4XxuPYqBB1nEjUwijsQ,180
|
|
88
|
-
angr/analyses/data_dep/data_dependency_analysis.py,sha256=077fujhixS7fb-AUzS_CRWHzkLCxrf5u4tNjI7XIXBM,25224
|
|
89
|
-
angr/analyses/data_dep/dep_nodes.py,sha256=TMp4xOXbOCqjIrmDeP3cef29GexH5WwX2ZKV9yMqoX8,4640
|
|
90
|
-
angr/analyses/data_dep/sim_act_location.py,sha256=4f8jp-ahitxoHCCOSSFGJ1olvNWuHyiE6iOLa5DA0k4,1527
|
|
91
|
-
angr/analyses/decompiler/__init__.py,sha256=RkTvvTwAGpaLdGSTgXxVrKmGEDRxqLCNSB-b8fM6fBM,540
|
|
92
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=laIPyvY0dCx4CQmo0NFA5Wrr5b_PhrBXyPQonXcnAXs,61625
|
|
93
|
-
angr/analyses/decompiler/ailgraph_walker.py,sha256=sBz9Cn0GtdpuFt7R9y3oX6NFvETQTZRh6N80eM9ZdJQ,1595
|
|
94
|
-
angr/analyses/decompiler/block_io_finder.py,sha256=1-u6h4KUPsX-dkXlXz6hN5ntslhEfV7fKQqjkAZcDO8,10490
|
|
95
|
-
angr/analyses/decompiler/block_similarity.py,sha256=mTpELRDw_qXxjq7B0SzXlBVm3i417Oqu7EzPWx85aUM,6461
|
|
96
|
-
angr/analyses/decompiler/block_simplifier.py,sha256=78vfpaG13JWCxijDrp3Q4wyiEw7hQXngb8itd9y39Os,17227
|
|
97
|
-
angr/analyses/decompiler/call_counter.py,sha256=V3TIaSvLUy9vLEWErnvlCS--_ubGWQAeU0tqq6XYeOU,1205
|
|
98
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=GUgUkSsOznUaTIB9PUoBFyWJp9WkH4T8jf5xBIE5p9M,15909
|
|
99
|
-
angr/analyses/decompiler/clinic.py,sha256=81gi7DBCaZy-xK_TZGrApUEz00y756V4ZKVAHtugmwk,95748
|
|
100
|
-
angr/analyses/decompiler/condition_processor.py,sha256=71ryhINcX3-RNPwShjy62fvzj1HDTevco8GhmwqMrkQ,50009
|
|
101
|
-
angr/analyses/decompiler/decompilation_cache.py,sha256=NKbvKYZOe7791udwdf70tq9hJe79GMS6M1jaDJC8lSQ,1130
|
|
102
|
-
angr/analyses/decompiler/decompilation_options.py,sha256=LBlmMP5rxTXFeI4X_bCIqOrrKChDOcyuacAJrv8xNyU,7922
|
|
103
|
-
angr/analyses/decompiler/decompiler.py,sha256=CVeLmy6SQpfAcxi2lJFKY2CrKSPsxMwmKuh6H1bhTm8,22874
|
|
104
|
-
angr/analyses/decompiler/empty_node_remover.py,sha256=KhH88_x3A1nR22H3wrdp1gznLuFH12IBLaay4Xa3Law,7368
|
|
105
|
-
angr/analyses/decompiler/expression_counters.py,sha256=wtFX4fFl_8cfJCZ8r9PEe5J_J1IClhSBO9vpBakld6c,2832
|
|
106
|
-
angr/analyses/decompiler/expression_narrower.py,sha256=64VR1xdPVVoCLHOYRPacV9ecQb33rP7nC1l8rpFxTkg,3545
|
|
107
|
-
angr/analyses/decompiler/goto_manager.py,sha256=MI0uUZSxr55BmSz6QjSgnhthyuKdxNCEGG_tNVmufnQ,2461
|
|
108
|
-
angr/analyses/decompiler/graph_region.py,sha256=-bPM3JqMA4ZnFhPi6QLGw_M1zPWK_yh0bFHFily_vEE,16913
|
|
109
|
-
angr/analyses/decompiler/jump_target_collector.py,sha256=NP-TgRPEkhBkEx4uZwvFLuUjgrvOIfYI3zP5b4WSfco,1138
|
|
110
|
-
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=dcgnXt3oKa8Qm_KtT-Rl7XDmLetvOj_UFALxC2HGLac,2139
|
|
111
|
-
angr/analyses/decompiler/redundant_label_remover.py,sha256=yxYg-0NQtbK87GRdmWiJ-b1SahzWKimqthBoHST3Wcw,5878
|
|
112
|
-
angr/analyses/decompiler/region_identifier.py,sha256=fcS0jYJmpt3hXE-E8o31lDOKF-ozOMIkSnUOCSAKbM4,45482
|
|
113
|
-
angr/analyses/decompiler/region_walker.py,sha256=lTfweYbY4_a2f2yGztTKG6JtU1jXf-kaz-NHbX9nkXE,717
|
|
114
|
-
angr/analyses/decompiler/return_maker.py,sha256=CztTpm6e3TF0ijdiZDl0HeObxTtOz0TOQd_uIqL0xMM,2467
|
|
115
|
-
angr/analyses/decompiler/seq_cf_structure_counter.py,sha256=JQ3iY5RXdyggVKXes--38g_EpNOuwM6CsVOqicYu2gQ,1245
|
|
116
|
-
angr/analyses/decompiler/seq_to_blocks.py,sha256=2KINMEgaXMG3XIiFDMRkbn10dggy7a9AHgwV383huRM,529
|
|
117
|
-
angr/analyses/decompiler/sequence_walker.py,sha256=mw4RG-Act5_no_RyQcsxWZwva-n7FdH2a7w_uItGUpI,8428
|
|
118
|
-
angr/analyses/decompiler/utils.py,sha256=--d8hymqB_22j3NjmXjqIPfi12klF1de36Xli53a5HM,28170
|
|
119
|
-
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=wbWqZ8xG6ZvzEApkAwMsNQFC-iwF3swG1YJsaf1cIrQ,102
|
|
120
|
-
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=qcr8a-83pY8nqwsYY27gc9ev8XtBxpdGPrmaULr6XuU,21519
|
|
121
|
-
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=9-O-m4OB4DsAMAyAH_0sZg1FdhUUQQbENy8yhsJ7PJo,463
|
|
122
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=mu8cqtQo4458zAdyWbS9_IsFRCA59gqVIW5tIhq1zKQ,4163
|
|
123
|
-
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=bjpEMW-Lqj5XW9NWUikGPcRn5scKNc8VvEjVMXxAuq8,5289
|
|
124
|
-
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=RoOVC1IyziUh_N6quZzRmBwkSNLSzvc8A3-EGAUsETU,15263
|
|
125
|
-
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=n2JKyEymGDMhIoXc2zsn6pAxxx9T5eu-jxyO3Cg8Fts,10658
|
|
126
|
-
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=B2ca-_X3GJsoLGI3BxN-xoiBs1SjMz6HdIvObgvRQQk,13162
|
|
127
|
-
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=J4Zh3WZCW7Pts-ULeMejPv_eGVHGWgoycrMpZwPBh9M,3964
|
|
128
|
-
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=Km7nX7hNDVZGgEg7wmXAIiiA5edhpo7Bxqc13iyjiEk,2330
|
|
129
|
-
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=J7LRc3-DKfToxKVejnkHbNel9_56-7xsGyJJiTCwqsQ,17442
|
|
130
|
-
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=BkBZqDGQH-_9bVVOvrbEQbZmkr63Oh9OZvHbY0-yJmg,10974
|
|
131
|
-
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=5tf8mrwYXAPQGZfL7AkzYOcRdiKYC3mLyN9I2bQnhgM,4700
|
|
132
|
-
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=4r6nVFuXHu0KfJyS2Aq133IJgISGU8OpW8NkqmnSTvA,3933
|
|
133
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=jebdKHbkFDRdz50SiDbwPYuh0u8yWYEEOafZcwa8q7I,16385
|
|
134
|
-
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=mTguIblic1kqvQYgcKs8awGAiFSqL6YbcqWzUB2pRfQ,7750
|
|
135
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=vjDRO-Rh5LVIlxGRCuggjcz12CIxQuISB0LCC-vF6ZM,7207
|
|
136
|
-
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=czsRMgGRTBYQvTCTXIL9h8Br-6GzaAjqhi3LnbrsqZk,39208
|
|
137
|
-
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=o2AZIpj4NpOAaWOGbudDUfGJJAD2exu-HvNbwph3mi8,3124
|
|
138
|
-
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=_63Y2vMNLSXYM6_Grfs89Nu63i5YLxTPmxTR_Z6fwLY,10420
|
|
139
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=u1MZszwdCyVkknzGf0_8VxYYRYPf8XjxwL0J3kW0njI,17760
|
|
140
|
-
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=wzTeZtvneW-hETkwMw7fVRqLG7ey9cs4Im_sQBqUN14,7590
|
|
141
|
-
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=NIzv8I4iK5GDd-dMmWgt6m8TgTwaQ-HMtnh6cRHr6ps,6441
|
|
142
|
-
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=VeA2VpjPLL6NN3qf1iqBKZh2FbohybM4e8WkjVqX9Dg,7919
|
|
143
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=NjeEbLh62qmMiBC9tlIsRleFBLIqGKEtxaOSuYe-jbo,19356
|
|
144
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=Cc7AA_Yi-zghlvJO90zZZjTkEo3o0jsAEhHthaOT1gY,1925
|
|
145
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=3RRwzrekCnGJjf5lv7OBajHVb5zo9HNuIVFTEIkSkBg,9783
|
|
146
|
-
angr/analyses/decompiler/optimization_passes/spilled_register_finder.py,sha256=YTRlIfcooZnTaYRN6FNJ60uBqRNH4rFcgkp1_QJCdXY,552
|
|
147
|
-
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=cXnKp8Of3q6GxvSpBGRcadrvs00j0NDRFtTEWPCYc0Q,12615
|
|
148
|
-
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=U9XIMXWYI_UHTamKHdjdXP4QVBvi386SSI0f2KoHu3I,4523
|
|
149
|
-
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=NVQH6WRUqVRLLDtu8gxgxmEI7Ro1Y6VD0hjFufsK4Aw,12275
|
|
150
|
-
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=7Dc-RtZZiK-jCrcjAMtZhqB9b8pHS0vtRAx-k5u3u1M,3054
|
|
151
|
-
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=T_TU1ucypEjc4QBwg4DbikwZXny2LazsqkS99CTAWrI,3296
|
|
152
|
-
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=Whptbt1qujPPRsNX8kJaobHTwgvym7SPu-tC2wBynBs,1727
|
|
153
|
-
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=xuLPEVN1QdQT_5U9K4-WIdVdHTogCBOmJPWlnDW8Cz8,1365
|
|
154
|
-
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=tEr_XcYoOXcFm5paY_CEzgSOjrksz20utMZa6smF9TU,988
|
|
155
|
-
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py,sha256=ocLn_4eLtyokv_baABUWDZIBTkoMDGESbrvvdc-srdM,953
|
|
156
|
-
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py,sha256=gvPg4KkQcammW4sviu272RLf7S0ASmcYfa5GAXGQX30,2050
|
|
157
|
-
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=KajKgL00mHXpEZewbwKgnZKLbZTnSB00-CGbed12uNU,619
|
|
158
|
-
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=ShdDtwrhqxUzPW2MwM98xufHo7OSL8GfNYQQCGYXrVQ,9333
|
|
159
|
-
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=Z6zSZ701cE_LFUjULJeybB6GS_GNnVzF9dyovzfLNjQ,3446
|
|
160
|
-
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha256=OzchLk1a0CV2ggHm6-TLpa6f_b7fj7K3Z3l6gFCUEJc,1056
|
|
161
|
-
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=eiUgxcBVAL6PiI3ZuR6xZMNrWGDHKXO6SZSjUbM_BVw,1065
|
|
162
|
-
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=oocs8xmntUNzI7UUG8UFPCDheda3xAb99REPAkD7ins,1298
|
|
163
|
-
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=QANf71L2nDvQJQ2opXVDI8kkZvVPfMmmQcjHlqqPYP8,991
|
|
164
|
-
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=su4UeKcfklIIckwzkRmhkZkUQX97iRWRnJ1Z1oDY72Y,6199
|
|
165
|
-
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=kY8DRStO3SVm4oP_OaU_zfGDa1IOt-fMjBb7wc0arkI,2639
|
|
166
|
-
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=9ogHTcP4vhFfwDzxccnjfhkizKGvM_7tK3y6PqyG5Hg,1020
|
|
167
|
-
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=kLp-KqcD1cCih8Xrf74WzfQClQnlryyugua7BvwV380,3660
|
|
168
|
-
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=tLZ04IkbVKlm1HYNhj7pytmLC3YDpIJ7FG0p4Vz99bk,1666
|
|
169
|
-
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=vzROAUvKUrQQmwUXJ-0WyFr1v5f8EPBgjeXIpWhtDak,2578
|
|
170
|
-
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=0IHIk7uxIC70140k3VcXlnx4QcunAeoETXF1ZgJi2Pk,2070
|
|
171
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=3Ak_Xb5r9DhYFKPPE1pIOtpnxNOsDsWgI_ld7g0N8H4,10207
|
|
172
|
-
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=ymP9tDU4NipGOdFWsmLHrR6dKVcEFiaTgM1-L_dfmOM,2015
|
|
173
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=31xruAOQ0gtySg6xQiuZCPeBoH9JaIxLv3aeyXyB6wY,5772
|
|
174
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=xyiXyjOJ0NWgnTcN8ij3i7w997LGmw1ECnKh1z6F73k,4632
|
|
175
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=FyxnWgM3EW2Zy7JXTMUS9fturIxlwk6zV5-OrY6VO2A,6304
|
|
176
|
-
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=a0IDp0kKBrPwhDVejPFhcNseZdprF_5EZRZs7KTR4gA,2084
|
|
177
|
-
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=kW8AbWfMqFzI1CVFp79TFX60IZxaQhRG8XUckuc-vGI,1136
|
|
178
|
-
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=3a1ZoTq66HTU68y5DCC2sLvItPmqF_Kv05uvOacxsRM,591
|
|
179
|
-
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=IgyXPMWFKMi6WuWj5fr2NbiFEjhVWPN8zVs_Cy6M9So,1560
|
|
180
|
-
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=9wwsYfKmGWgVAqqIK9wzmOOeGxso47_1KsVw60DKm5E,739
|
|
181
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=4-ph2LLvhWZPjyIq2e4idWQvcxE0GETQblktXeqx55w,1635
|
|
182
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=GXgR6-Bh44N-jcBIaLFE-Ae6tN5kdZXSHIbH2m946_c,6583
|
|
183
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=gBZX7VrbJPPqW_H5fsOhvXXBM9hKbVe2srHe5w4uwlk,1189
|
|
184
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=NWPV89KktcYp4N9oQSnN2XLL6TGgCo3jzFqu68od51c,1869
|
|
185
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=-sEhH18dQ97L9wgx4eodKLHKOGPQfkYKN0PIy3SMzOo,503
|
|
186
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=cUMfcDDoffyK2hiv290XPmgDRgShPb1rncrFniwgaxk,1394
|
|
187
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=Cz98sbNJyiXoK3J39uRZIMY8U6WmMZsMIGO2W6YpjRY,1665
|
|
188
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=YHqlh6FVdviVWAe4NX6FycZSXad9OP2VTUhRK53QDMo,1578
|
|
189
|
-
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=Jr_NaXlkKjLwXcnCgoU47Xq3ZVLwSMyIBVAsn28NFP0,3280
|
|
190
|
-
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=Q37TkiKs_ojNXao5nqRebihEw55LaOxiVXWZn0Tv2F4,1809
|
|
191
|
-
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=vuOW9EyinQDvOLIivSG22yUj0Z8zHJ-EJlAh7ooZIcY,2814
|
|
192
|
-
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=03kvGRRFMnjxwdQYEmW_cwrGxPrC-K7gzEsumPWkv0I,5244
|
|
193
|
-
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=oa0am54hR4kVY1-1c9UfG-noMHsHM_eePWruKL_R-ak,1477
|
|
194
|
-
angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py,sha256=mZ84a1N3aHOfPPdI--BJfqfP8LIddPFcswSHFY1kdDY,1837
|
|
195
|
-
angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py,sha256=vqIw5ewmvbNtj86sB2eG_JLvya0bZOKFktyiWNkGyn8,940
|
|
196
|
-
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=CVNGZPN4YSu7169-UXR6mlm8yf5VSajoB4yksgfIa6E,4820
|
|
197
|
-
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=ZeURg5mKbKRpwo8-SqxJ0jy_A6nNpZMxiKpjZJ0_RS0,48
|
|
198
|
-
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=PQTkQg_-NSR-0dLAjDdwNHs5b82cmsM15m3OStXg-dg,3734
|
|
199
|
-
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=dbAn1fde1-kiF6A9060wEqPKcE3DeBd2Ltt_2UAEdo4,2490
|
|
200
|
-
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=gBFr98420bdkmlPMypwU28V2c9PRtBKiRkDv10ne4Ag,24075
|
|
201
|
-
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=08f-7tVw6w-1Kqaf0py7wdNrfEGTB0uhzTJyBaQVVcw,5996
|
|
202
|
-
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=qDkZTrRjDzI4CX6vwEcaddmaPvG4sWHn373VVwmf0e0,5034
|
|
203
|
-
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=nWUow7p_TOgFQuUgWXQcH2qSFfxUWJBgkslvajhTbn0,3681
|
|
204
|
-
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=crWqkXno1kTHk1a5keIzP2lrt8TbeVW4E85WWMhtqJA,5831
|
|
205
|
-
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=0JIerDBQ37mumowl2SRZ2GOUlwzPzZskz9-zM1lUl5s,542
|
|
206
|
-
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=_lf-Xfl-k_VDELeAVCpQ0P9ZlH3AxYSbN0_naWJRfN4,8177
|
|
207
|
-
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=s8lThEYSKYdXBbKcbpDpawLllaj052ohIFPPUfHt7cU,24791
|
|
208
|
-
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
|
|
209
|
-
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=NLEvs8xnJwJiUgX8AmgS7rtFFW4SxtQcA1AjzE-GryA,313
|
|
210
|
-
angr/analyses/decompiler/structured_codegen/base.py,sha256=TdghqAsAkjZpPfzFarh8Wn1zfBYMFcMsBZhRqXgoPNo,3778
|
|
211
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=ruJFOkWX8OOHbjGsJK9WAMNm-ySJHsAImVXulgiBICM,135250
|
|
212
|
-
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
|
|
213
|
-
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
|
|
214
|
-
angr/analyses/decompiler/structuring/__init__.py,sha256=-Gwtu4VQQZpt-SSQwVQzMCOYcYYT-ofaMAvBWtEpsrI,510
|
|
215
|
-
angr/analyses/decompiler/structuring/dream.py,sha256=29vU_n7biP45xRS1RkjbLG5Q4KOWEGmBwJf60Mk1lT8,48347
|
|
216
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=wCbsLiPPqZIy6PDF1uZ_0ZefDcr1Uplsu2f_hMfXbNE,120724
|
|
217
|
-
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=XhQltVVA0Ljq2zzrPdO8ea8p9Fb1Guj__NGtiycGoXs,6913
|
|
218
|
-
angr/analyses/decompiler/structuring/sailr.py,sha256=oNxug0StTZyN8dERczpW0hIAYHhSaHCosI0shmks9Uw,5661
|
|
219
|
-
angr/analyses/decompiler/structuring/structurer_base.py,sha256=GAIUCA8vbOhqZgIiJqkzTtCiDkRvieWdCcu2QuRP3JI,41134
|
|
220
|
-
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=3O-lZ2y7Wr-_ZqlNqAE7xr3CjF9OLDacz8YpRjx1rOo,11933
|
|
221
|
-
angr/analyses/forward_analysis/__init__.py,sha256=0TNlM4hbX1KRMyUduqU_zEwbnVcuNX2A1mtVuM3KexY,144
|
|
222
|
-
angr/analyses/forward_analysis/forward_analysis.py,sha256=lNbW4MPitXrudNOV-qWHwMGwMyUJ_u0Y6qq21eoXBO0,19914
|
|
223
|
-
angr/analyses/forward_analysis/job_info.py,sha256=5TkrqLwNWzx0ckxYm1QTV2SXzJXrP2QHcpDWl1_eCmM,1579
|
|
224
|
-
angr/analyses/forward_analysis/visitors/__init__.py,sha256=JNaPZqJfrkx6mkiM9tKm1gge-7DA_ObkuHS2D5wLVY8,174
|
|
225
|
-
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=ShxUtVN5mWSnvhfaYh3sTqtwdWL-w6lQPK48C7WoEnc,713
|
|
226
|
-
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=y1WTfRCGH87vDv83eYhWm9QX1zjbN25BUlTdrmCXs_o,2708
|
|
227
|
-
angr/analyses/forward_analysis/visitors/graph.py,sha256=Muk-IzupNF4XbNgd-D1BxkvRrs_tAe_aCRx9wPn9RfI,8048
|
|
228
|
-
angr/analyses/forward_analysis/visitors/loop.py,sha256=uRBX865bXxNsIZGbGxiBvWTthKQ8j6DAm-6GJUwaZs0,711
|
|
229
|
-
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=uNVQYK3u5azDoRe7AML2VWKVWSH-_IqwgidqstrQ-Ww,768
|
|
230
|
-
angr/analyses/identifier/__init__.py,sha256=VmwxzgylRV-02MGkhRV456ROzFBmx1w3-gIU3hGpKv8,33
|
|
231
|
-
angr/analyses/identifier/custom_callable.py,sha256=WWlaB1Z-dJ5dBGK3yifgeVOu8bAOWxvAvlVuSoi71YA,4757
|
|
232
|
-
angr/analyses/identifier/errors.py,sha256=aFkPGFZ-scGDIqkLwx77IJ2yGcMPNLiWlUuIc0EHAIE,157
|
|
233
|
-
angr/analyses/identifier/func.py,sha256=eeMkOfaDLDibG8tmMsLHqG5KNkCkYYW6oBdfTOLbmXM,1749
|
|
234
|
-
angr/analyses/identifier/identify.py,sha256=GVqXRgQTGxcN6Ec3O3ysHST5FN8WfzjtJM3HmUrlkkA,33194
|
|
235
|
-
angr/analyses/identifier/runner.py,sha256=f7Tw9lNYUxhMZmbvP6dETjphS1vAbAGi5oGoMyp8XqI,13723
|
|
236
|
-
angr/analyses/identifier/functions/__init__.py,sha256=edK-yNjB7Ml1N_whlxkpWaZ6uYEM1OepkywYlIt0kzQ,1059
|
|
237
|
-
angr/analyses/identifier/functions/atoi.py,sha256=VCjGHg-qvRH_Klv5oit-PHlYOC3Pqd7CIxgWpVXtDyk,2110
|
|
238
|
-
angr/analyses/identifier/functions/based_atoi.py,sha256=cHSW84DeTMbaQnJM97sj4KaT8spn2P-v9EGnEgCvMRI,3294
|
|
239
|
-
angr/analyses/identifier/functions/fdprintf.py,sha256=wxUX5SwZNSrmpyvoDYsfZHBIq8nGy672GvnaPVM0ZFY,4353
|
|
240
|
-
angr/analyses/identifier/functions/free.py,sha256=duJZJQAgYmqATh2nAcfdZLkXf8bsAINz4hRlla8aoHE,1952
|
|
241
|
-
angr/analyses/identifier/functions/int2str.py,sha256=21T6LZWG3_eSg0Cl_D9fXrly_tML7wh0O1QSZOYUNbQ,8665
|
|
242
|
-
angr/analyses/identifier/functions/malloc.py,sha256=FbRopOHYxBEasByTU64GdfcWG_9lVm78vrnWiYRRZt4,3845
|
|
243
|
-
angr/analyses/identifier/functions/memcmp.py,sha256=NDfwjhZu7Q1N2E2lYDc_8EiXnNUJuaPnmLrBO2Li6uI,1953
|
|
244
|
-
angr/analyses/identifier/functions/memcpy.py,sha256=u28vhgprQHXaE3j_bLz4NhEgA7EJPBbBJYyk0yHtqdQ,3166
|
|
245
|
-
angr/analyses/identifier/functions/memset.py,sha256=0-tlqWmqTIxGLpLVd_-yoKP7O8d4R64Lev4KVI6aUPs,1188
|
|
246
|
-
angr/analyses/identifier/functions/printf.py,sha256=DQJ4N0opJwK4IlCz8gCRhR-AyIhJHK4y1m1sA7Ffg4I,4307
|
|
247
|
-
angr/analyses/identifier/functions/recv_until.py,sha256=G004qJ4AC6nEEUj5GPQceSi37sJr2vmH1DxXLrq8ZgM,11564
|
|
248
|
-
angr/analyses/identifier/functions/skip_calloc.py,sha256=sUy4hyeFkeT_yMJxUMtz0qLJrfOf_cpBJN3LzkOFdrQ,2356
|
|
249
|
-
angr/analyses/identifier/functions/skip_realloc.py,sha256=poKtobQ7di1aWL63XwNXtSLtW96QdXt6F9PPAFbKvOw,3186
|
|
250
|
-
angr/analyses/identifier/functions/skip_recv_n.py,sha256=G0PrrhaUVe2Wk1xLRkWhp4BmN_1GY7Pib2gFwV0YlWY,2886
|
|
251
|
-
angr/analyses/identifier/functions/snprintf.py,sha256=B8TkOGZHe2l0pNXl6-OfNpkTUDtWIwvfKIQ--rJR1KA,4179
|
|
252
|
-
angr/analyses/identifier/functions/sprintf.py,sha256=nFT1CQVwkcUgTFZDwjYL_UaJEEeQYaHylWmbwon4LvA,4119
|
|
253
|
-
angr/analyses/identifier/functions/strcasecmp.py,sha256=NqTxFPkOC2HgaSIH6VWfbPsLgeFVml8pFnhIBU5VSjM,806
|
|
254
|
-
angr/analyses/identifier/functions/strcmp.py,sha256=FP-KVqINZtjnUghNq5q6zTuPuS3XKl8QtRg2EHk0DF4,3459
|
|
255
|
-
angr/analyses/identifier/functions/strcpy.py,sha256=HoaYZc04iowd2A_JQvnABM6Lx0523Z1KrtxIio7VGv0,1187
|
|
256
|
-
angr/analyses/identifier/functions/strlen.py,sha256=EV1OnBxjLn7UuS4oIc0c5zP0mePLzLhlJv01Ai_2yeg,753
|
|
257
|
-
angr/analyses/identifier/functions/strncmp.py,sha256=XlqTTLjfPRj7LSw3-xHoH4SJyNiQ6w79BTjfcenxOE4,3297
|
|
258
|
-
angr/analyses/identifier/functions/strncpy.py,sha256=1WUrhXMS5Sd5rfgBJbChZD_BZ_D47Z_H4AZwriyqDO0,2008
|
|
259
|
-
angr/analyses/identifier/functions/strtol.py,sha256=Py_6Y9rR5dfy53LX8w9WktSBaxdyPlbrcLEiV6cWfHs,2426
|
|
260
|
-
angr/analyses/propagator/__init__.py,sha256=5-UKSiAtYocLzmQWXPzxyBnPui_c8P_r617KDwtRnNw,43
|
|
261
|
-
angr/analyses/propagator/engine_ail.py,sha256=yXi8WqdCo9FbWQBIf3_khjT8sZhPft0bt4MVlUL7lfM,68992
|
|
262
|
-
angr/analyses/propagator/engine_base.py,sha256=0j5NzJ9jArF4KeysBeiPoo_RKyCvlgn-i3inSZt1cyc,1735
|
|
263
|
-
angr/analyses/propagator/engine_vex.py,sha256=mbFkn1LTmhL0H_etG4JLdOSBoH6Z2TG6qJJ4W5Oq_0c,12900
|
|
264
|
-
angr/analyses/propagator/outdated_definition_walker.py,sha256=pLe3mvfNgy_RuaQ_BbtRDdXXwdAs9IYNEsF8GqS9qeA,6886
|
|
265
|
-
angr/analyses/propagator/propagator.py,sha256=XXG3bSHBZH5FbqyMLfvvdyjNh4AQhVOHBC0nQhCwx9A,16065
|
|
266
|
-
angr/analyses/propagator/tmpvar_finder.py,sha256=GqP1lm-_ez4AvXraDt1BQ1o7GvdjLI7j-TUL5k-lKbU,442
|
|
267
|
-
angr/analyses/propagator/top_checker_mixin.py,sha256=8NujgeNTiaSb6JQ3J01P5QJSnQ_mnF88m7rXlATIruQ,359
|
|
268
|
-
angr/analyses/propagator/values.py,sha256=b8zg2VIPJoZj4qtF3_XRfoxA7LjXxO9OIkqZ3y0Wc_M,1991
|
|
269
|
-
angr/analyses/propagator/vex_vars.py,sha256=O0W7GekEZIVwiNiOdyu-BuxCZmHFZPh_ho7jmbnYAwk,1433
|
|
270
|
-
angr/analyses/reaching_definitions/__init__.py,sha256=RDKtWljJCGI8dJd7d1Cz71c1d8z1y1LOxUjkbikR3SM,1986
|
|
271
|
-
angr/analyses/reaching_definitions/call_trace.py,sha256=YtARhVge7scV86niB8OvNDlv_HTOijHKVZWdl43FYG0,2175
|
|
272
|
-
angr/analyses/reaching_definitions/dep_graph.py,sha256=FCqv8zEXcfAEg00BFB0m8UDNvFL3nm7QAO-hEgtwTV4,16070
|
|
273
|
-
angr/analyses/reaching_definitions/engine_ail.py,sha256=ttWBhRhu5b3emY-0zLgNGlRd4p2Q9Tf8ZiWgsZfWeIo,46190
|
|
274
|
-
angr/analyses/reaching_definitions/engine_vex.py,sha256=v9nxvAnmjpwtancu0b-i_vwmOdl4zmjHGGMQv3rgros,43115
|
|
275
|
-
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
276
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=cH1kCdwpJ2KlHmUGTPtg6TomZcTm6YL3ntIMSeMCY2A,28114
|
|
277
|
-
angr/analyses/reaching_definitions/heap_allocator.py,sha256=DkzDT8_YIE0m9CBFsC3GRxNQM5GCBAYXZpnDRZtezSo,2591
|
|
278
|
-
angr/analyses/reaching_definitions/rd_initializer.py,sha256=zWjK7RZ4EJlIs-6dqZR7OY18TynfA0lOd1ipEi4kSe4,11183
|
|
279
|
-
angr/analyses/reaching_definitions/rd_state.py,sha256=B3KGPZWzl1GhQrwN_6v5ms40OdawuVq493A-9elUEj4,24012
|
|
280
|
-
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=u0ZOHh2yBZckMbIMyJTlMsoIBchb0iU_kVphyUHkZCc,24352
|
|
281
|
-
angr/analyses/reaching_definitions/subject.py,sha256=f3Gjg6Q0qCwtL443ctdVB_F1_sbGchftdjTqX6qsnbo,1958
|
|
282
|
-
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=Ha7Ygiv_BhwT2ipNc3KaejqC5ZiKw7c-VzeH9qEa4eQ,423
|
|
283
|
-
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=8Rl7jiLd6C10t3m5qqGLVj-LrZ9Beuo2Au9R8e-Thlc,11122
|
|
284
|
-
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=c41rgr6BmTUYkg91AuyIxfBdFA_xmAeJghFXjP3yscA,6444
|
|
285
|
-
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=PFwAivLrpcERRQtZun43tZmBpsIc5D0OOo9US9TMEN0,5060
|
|
286
|
-
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=KXpgC9fVl43T-CoIvhOmwbySuQLHc76v2MmHQgRqSmc,1203
|
|
287
|
-
angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
|
|
288
|
-
angr/analyses/typehoon/dfa.py,sha256=Q1sR1RDmt7pmMJjFByco9grbr2qm92HihnB9qJmerSo,3488
|
|
289
|
-
angr/analyses/typehoon/lifter.py,sha256=3RogUtd8O6txb7_UAjbI7Bn1hc38oP_LsRYyBsPsEzg,2805
|
|
290
|
-
angr/analyses/typehoon/simple_solver.py,sha256=JWtFIWT6Wlm7kM6KH28dfwm4kvni-PHJjnPRWLmzLr4,48377
|
|
291
|
-
angr/analyses/typehoon/translator.py,sha256=HLPNDkkl8daZy_mLXvDm3AoBD8auLze3MnkbhRxIMZc,8559
|
|
292
|
-
angr/analyses/typehoon/typeconsts.py,sha256=yrPpW-EFNwI0vsO9ipVp2wIHsWPoZjXug1sdFHq1R6g,6973
|
|
293
|
-
angr/analyses/typehoon/typehoon.py,sha256=Ak0T9DL8kMl__YdJkJUoiN92cRzpUSuyjalKQk3Jbww,9368
|
|
294
|
-
angr/analyses/typehoon/typevars.py,sha256=2MNNyTSjmKXGIcLqwbO5qKIef5EHoWttjFPFGTfhfGw,15777
|
|
295
|
-
angr/analyses/typehoon/variance.py,sha256=VPuBrPmbw5RgNG5SUTNFEd5rr4v3V_qD1vgilqWvdrs,158
|
|
296
|
-
angr/analyses/variable_recovery/__init__.py,sha256=j2SZyfzCAagqNTj0IcYJtOx4b3oAvhEY9GR3hb0bx4o,105
|
|
297
|
-
angr/analyses/variable_recovery/annotations.py,sha256=eAifcWVmb1xUmEGtpiy8PzIupSuZtmEDEiUav-3_z20,1403
|
|
298
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=F1vC5xuXfe_tGI0a3zDwGEbjPimVGitoUQ031AWDzXg,25694
|
|
299
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=HVCtyY4tgx8cjHyP1aPoCCgW5771L_vpCAf83qF9qFY,41707
|
|
300
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=hUcunLk8YazEUQlAFuF3VOmsJgjbBPQM95s8F47NNq8,18907
|
|
301
|
-
angr/analyses/variable_recovery/irsb_scanner.py,sha256=IZVaL_axfPBcM_MvjIOXwICK3otK3B5AIbwjhVscylc,4878
|
|
302
|
-
angr/analyses/variable_recovery/variable_recovery.py,sha256=-chYezAPEMrgwu_w3pBv_uzGnJb1wi3zsa1DLPdTya8,21777
|
|
303
|
-
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=EhqACAQwd6qKWC19-kbTvXEio3k9JNc3cyYg4MLHebw,14962
|
|
304
|
-
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=_eOpy1qppTti2P7Sn0MK3IMLQfYw1-V7AoZkmSizYjc,24070
|
|
305
|
-
angr/angrdb/__init__.py,sha256=df9W7J7c4rD5oYx6fZGf0BIBwOqVVJlIJTDrAtQChqY,231
|
|
306
|
-
angr/angrdb/db.py,sha256=tVrjdgEWZC0HeBVdOQ1nG0lKPwsvlITk2u4eCPMfG-4,6416
|
|
307
|
-
angr/angrdb/models.py,sha256=iFEouZNGa5gJK8U5-vy98CErrgeM5E3CGbSKOXjoMfU,4750
|
|
308
|
-
angr/angrdb/serializers/__init__.py,sha256=nzEbgc6ta4yKDut46eXzitu3U-h4UyJy_ne5FaL9wuk,77
|
|
309
|
-
angr/angrdb/serializers/cfg_model.py,sha256=NLPEuzNsTNqp81VkBO-qTHsQ7S2Q0M9IwXIkNNa3Jyk,1297
|
|
310
|
-
angr/angrdb/serializers/comments.py,sha256=ygfH_4HkJ1Es013UyNk7iGumyoc6Edn7P99qWJOcONA,1531
|
|
311
|
-
angr/angrdb/serializers/funcs.py,sha256=SeR3TwRiWFE9h_FSmdc51GB6nkFolCg4Ucb6dsJIx9M,1696
|
|
312
|
-
angr/angrdb/serializers/kb.py,sha256=R1aiYN39CrPlsnCYNfM7O4nFM7LvPONONBAYU1g9j1k,3827
|
|
313
|
-
angr/angrdb/serializers/labels.py,sha256=Sc6LDcyJiZ9gMDno1fbp_96RYv5D4UZirTbzPcJGAY0,1425
|
|
314
|
-
angr/angrdb/serializers/loader.py,sha256=Kuo_j1DFtdJHDbBNfpNdnUL_qWblRhxBVgcBlfhE4UM,5236
|
|
315
|
-
angr/angrdb/serializers/structured_code.py,sha256=1y1uz6K7bYurEcQK5q7Diba-b-XUFvGVqpFj80pmgOU,4184
|
|
316
|
-
angr/angrdb/serializers/variables.py,sha256=5o_wgf45hWE7bqJes1QDdlaYaF4Eh_cqg7gUrJdfbQk,2383
|
|
317
|
-
angr/angrdb/serializers/xrefs.py,sha256=PWoBqu7aTMDaxA_PB68B7zm4b_fnWbAt8u_K5HN11pI,1180
|
|
318
|
-
angr/concretization_strategies/__init__.py,sha256=WZOU_ueAhMu67enP1d2LZJ51PIYu5IiDPi0R62HpFag,3727
|
|
319
|
-
angr/concretization_strategies/any.py,sha256=0_ila_tb39m1Pey5Hpp1nYYiTb6ZS5y0uFGmyTCBykQ,438
|
|
320
|
-
angr/concretization_strategies/any_named.py,sha256=WwQgWGaJzrQS_lBimxR6_uMzituAevRG1y-RhB9QJAg,1345
|
|
321
|
-
angr/concretization_strategies/controlled_data.py,sha256=s1Y97KewyfSa-FxTFsepHHYrWcFJcjJBgSloi9NjbjM,2210
|
|
322
|
-
angr/concretization_strategies/eval.py,sha256=IAFTkjgA6E4OFgm3qFSvLsk2zMv7P72wDLNJkvZx85o,617
|
|
323
|
-
angr/concretization_strategies/logging.py,sha256=ucxZaDtsSLns_TD-DOaNLBgn4k2J0s6ouQb5RZyQXps,1155
|
|
324
|
-
angr/concretization_strategies/max.py,sha256=we2polpRz3EZgviQztE_6u5IkXCQHlYamfRByEXV7CE,1003
|
|
325
|
-
angr/concretization_strategies/nonzero.py,sha256=PXe96mgH3DS9gtmuroRUsZJk7oGWW36iL9ZC94hnfmk,536
|
|
326
|
-
angr/concretization_strategies/nonzero_range.py,sha256=_y-05XBe_FzWExcMFp_NzMc8Cen3e-WStE4Gya4JMo4,784
|
|
327
|
-
angr/concretization_strategies/norepeats.py,sha256=7fe8l7fvzBj2HfaOpLFlGRbnzzr96a-46AsHFKGA4Mg,1435
|
|
328
|
-
angr/concretization_strategies/norepeats_range.py,sha256=tqJ-QzOKW_7ZXUPChvJCqvUZ2K15BjBrfXoJTG4bUtI,1564
|
|
329
|
-
angr/concretization_strategies/range.py,sha256=IiDjuzo8_tBdMf8iaImmMyUFU3tcFuJRprgHV7kAuz0,555
|
|
330
|
-
angr/concretization_strategies/signed_add.py,sha256=KKyzeRXuFEMTHMdfiyF6iaC0YD9Uh1sukBfFcGz6MiQ,1158
|
|
331
|
-
angr/concretization_strategies/single.py,sha256=2An-xPzwmz2kQxt-vAYTJgFfKwR7tpuIowGDa6ugr9Q,358
|
|
332
|
-
angr/concretization_strategies/solutions.py,sha256=gEoSLT4FsbMFVgPAeMz2BnkQea6DyDpUG-vqTah9lm4,531
|
|
333
|
-
angr/concretization_strategies/unlimited_range.py,sha256=Sc_vKIOU3b6RVjVGEwLZ7I12J9Ct9z3Xu6FOBRzsB3g,529
|
|
334
|
-
angr/distributed/__init__.py,sha256=_Lb61mAohBYwwvibMKwiEx7x2xnN88Z-PXNTgD_pMeg,140
|
|
335
|
-
angr/distributed/server.py,sha256=LsqwpR-IJdGs1IVZ2VMQ2reIPG-P0rFeU_3uRNP2b8Q,6650
|
|
336
|
-
angr/distributed/worker.py,sha256=hqapr_aoL_RMNfIL-MNOos2Ipn2M_Lj6-TH-2pUwZc4,6051
|
|
337
|
-
angr/engines/__init__.py,sha256=TNMptEhJtnnwHTvdRSivGelKELutO-C_eROieUALloc,1066
|
|
338
|
-
angr/engines/concrete.py,sha256=abP_xvt2-Shy5b57MyMPBjf6xFoGwKTnxnF0NZTFQbk,7475
|
|
339
|
-
angr/engines/engine.py,sha256=Lm0RE8XxSJQw11wj2umlAaJkUWv6F7VouEu_-0Jry1A,8075
|
|
340
|
-
angr/engines/failure.py,sha256=zZw_7cYCkxrVhJ-gWb9apNV6cAf4pqKESDPrQdd1Mpg,996
|
|
341
|
-
angr/engines/hook.py,sha256=_dobnJ3m3F0FPHWbv82ZS5fyNmSt-wuNzMlZ-81sRgc,2546
|
|
342
|
-
angr/engines/procedure.py,sha256=dEvCtpS7-LLfr1OX3LT4_4QFyW7Wgt13UtHuAXowDSs,2515
|
|
343
|
-
angr/engines/successors.py,sha256=SuzeKILLcQd2OIQdnLCB6n9rmFJ88Xe_c2quz7osKVU,23887
|
|
344
|
-
angr/engines/syscall.py,sha256=LNMC3zyis3OiWC7_8Zn1blMw1EDib5FjUqepXlaWDTI,2177
|
|
345
|
-
angr/engines/unicorn.py,sha256=2O-6sNh0BeVa3TOK4PV4dkCOJ8CZZpdosatks_93xN8,24422
|
|
346
|
-
angr/engines/light/__init__.py,sha256=j9vH2fU9MaNVQ8NT3Ek3Tj2zkGlVxlKyzia8zVTofYs,186
|
|
347
|
-
angr/engines/light/data.py,sha256=jZBAJxor2zg5m4s63joSrjUs8H-OeHBZiqZmc3dqEQQ,23132
|
|
348
|
-
angr/engines/light/engine.py,sha256=4JNJO9kOkINMRwEyRpKKotXPEzMBJrExJk3Nr1CeRNE,45469
|
|
349
|
-
angr/engines/pcode/__init__.py,sha256=UwMEwXQvHXIIgedJn2ZOvBBEgfHg2rfREBSpcTSXCZ4,83
|
|
350
|
-
angr/engines/pcode/behavior.py,sha256=CEo5mQ4KDRE97wyPsK5XRLFCcyZt6tabwik6oCT9Lz8,29385
|
|
351
|
-
angr/engines/pcode/cc.py,sha256=0VR09dC2nRQPQ5pj0ExaiViaKAdSGbYtHz5jzywrtKQ,3143
|
|
352
|
-
angr/engines/pcode/emulate.py,sha256=IcYoN27Xr-2rv5BvuAd0guQcYHLfrB9QjdokaTYWbPY,16747
|
|
353
|
-
angr/engines/pcode/engine.py,sha256=RnFp8eHR_-pU01fSnqRTZJmLNohWuggZs2ZzhQ_J67s,10415
|
|
354
|
-
angr/engines/pcode/lifter.py,sha256=4y8kAIlqtb5xVL4gyyXZe74vTUXn9Bp6oMdOM_wNrWI,51942
|
|
355
|
-
angr/engines/soot/__init__.py,sha256=TznVGXAtXWZQb7K3vgGXWalwHDuuJu9KkFvacG6rYhU,30
|
|
356
|
-
angr/engines/soot/engine.py,sha256=VX1VJue5ngA3d44oid3CcN-FQ8yKKVBFR1q0blJ3J-M,17215
|
|
357
|
-
angr/engines/soot/exceptions.py,sha256=Ta2qcX_NXRqst6OzoAaIZyzDuCqxhf-BEIBkzzID5Iw,221
|
|
358
|
-
angr/engines/soot/field_dispatcher.py,sha256=XbxtKzIOV2KifupMDktmZ7RnVtCiebu42AupTN7kGpI,1940
|
|
359
|
-
angr/engines/soot/method_dispatcher.py,sha256=sSR4CAAWybUDbnGHeOoTTr9OPrJa6677_UeVGAksMw0,1780
|
|
360
|
-
angr/engines/soot/expressions/__init__.py,sha256=BrQeXSZC4nDJgm9tyR7nrRMJ9tlXkYXBFik-D1L5TaA,1706
|
|
361
|
-
angr/engines/soot/expressions/arrayref.py,sha256=5Xy7XGy7BXiAAaSbK4ROx30OiFasiCnqU8QLXy7wGqI,857
|
|
362
|
-
angr/engines/soot/expressions/base.py,sha256=2UMjFnKI6akkHlW6PT5kYvvEy8PVpgxVTudoaC_4rRs,507
|
|
363
|
-
angr/engines/soot/expressions/binop.py,sha256=l0q78_kUPDyOqVV43g25WzYnz18QyUPvuUZ-19j1VnM,781
|
|
364
|
-
angr/engines/soot/expressions/cast.py,sha256=gjlV_2vsq7lL7gouefu0oLmxoMWmvBq6DKNxvTwSFLw,753
|
|
365
|
-
angr/engines/soot/expressions/condition.py,sha256=wrtt7xNbazvI17_jkee-5GWjbnoXEc2JRAQHYmY07B4,1260
|
|
366
|
-
angr/engines/soot/expressions/constants.py,sha256=SdLLFFvCEN1ZpsjSR5OaodliMX42HyOw9MNfvCyAkCM,1352
|
|
367
|
-
angr/engines/soot/expressions/instanceOf.py,sha256=ENr1ezBpKiZ_jkB9M6l3PfsWLYMbLhvHHWtyUNI5k4A,313
|
|
368
|
-
angr/engines/soot/expressions/instancefieldref.py,sha256=N4yI8dURLxD7NZImOs4ypVrBzdajuc_80me-6Xjiud0,234
|
|
369
|
-
angr/engines/soot/expressions/invoke.py,sha256=GzpOFithGbBLUQjKxezJNEBCdWQwDu0RfCJ0V1-R09Q,4525
|
|
370
|
-
angr/engines/soot/expressions/length.py,sha256=500lMVcTIP4A6YtnkQiLaIk57lfrJvWQLMIH6-hPytI,189
|
|
371
|
-
angr/engines/soot/expressions/local.py,sha256=f-8g-2yR1fEtz_Y9-jwgTqueGu61h7pjFHE6N6fFFac,215
|
|
372
|
-
angr/engines/soot/expressions/new.py,sha256=Zp9KdvEgMhIENIn6zF_1fgA74prusMJkyLKoyp08-L8,552
|
|
373
|
-
angr/engines/soot/expressions/newArray.py,sha256=3roswjBa654r9BCrkuSFZZblr8uTtKn_eeHDOywnNuU,1981
|
|
374
|
-
angr/engines/soot/expressions/newMultiArray.py,sha256=P0onwTDhuqUfIa7bW0PWYlyBd0ZHjBQ291PFAJEyaYY,3411
|
|
375
|
-
angr/engines/soot/expressions/paramref.py,sha256=795iAOZcc7aMdU-hxudClHpT7gnF7T1pT-NqhrhMg6s,224
|
|
376
|
-
angr/engines/soot/expressions/phi.py,sha256=G8fWIGTm81imnJAapONeTykTPHKL7OKJF4532xh_fQ0,1192
|
|
377
|
-
angr/engines/soot/expressions/staticfieldref.py,sha256=yWmtHknm9OqbPOlSbXPKLZ4HciVKs96KKZlIhdg6Xss,232
|
|
378
|
-
angr/engines/soot/expressions/thisref.py,sha256=1E5Cws1NIDFwR_9125t-cDEPBBU31EtcGfSNrEBk0w0,149
|
|
379
|
-
angr/engines/soot/expressions/unsupported.py,sha256=W2SJokR50Nytwq5-5PVUTmtPnzYR5RwMgKUkVprDmX8,113
|
|
380
|
-
angr/engines/soot/statements/__init__.py,sha256=CfbEzPZHNAruEMfN5hfsOAHgsvI2Qt0C6t5hqYiLOtw,893
|
|
381
|
-
angr/engines/soot/statements/assign.py,sha256=I_fmRFxsXR9EvKLjb-APojYwbBNAL7lBm35bdzP-JWE,1271
|
|
382
|
-
angr/engines/soot/statements/base.py,sha256=71G1KoPJeVrRKRo0vm7-gTjLGvEjwQpmocdVRljqAKQ,2094
|
|
383
|
-
angr/engines/soot/statements/goto.py,sha256=H0YfmSHYxoCWqSQNghdajf9ERavci4xabDNHWG1o_mQ,331
|
|
384
|
-
angr/engines/soot/statements/identity.py,sha256=LIO8KBRosfAmPoYGRl-eVpG6ryNHbtWga9vdYtfxC4s,421
|
|
385
|
-
angr/engines/soot/statements/if_.py,sha256=zsGHKNEvF_IG-wSZRqNS8u5eOv0aJTzc7b33AZSgrfs,566
|
|
386
|
-
angr/engines/soot/statements/invoke.py,sha256=IukB5ImuX5Rz6ky1nyzAUKUVczftjluLNle0ZbZhlXw,284
|
|
387
|
-
angr/engines/soot/statements/return_.py,sha256=J5eLSd1uEfYDMzNhxgCnsPFf8UKx1dXFkX0x_YHJi9M,466
|
|
388
|
-
angr/engines/soot/statements/switch.py,sha256=FSUzW2PcGu1qB5AzTJ_iRRu7knY8Ms-xswFZIiRmx-g,1307
|
|
389
|
-
angr/engines/soot/statements/throw.py,sha256=IBzdzxlyaDS7IhPRJFqqOUyxZRg_1cUewd5j-UwMz_s,360
|
|
390
|
-
angr/engines/soot/values/__init__.py,sha256=wq1HZ__XEAFe3FpgqgpmmqLF9uyHeYcVpjrW-Wnzl7U,792
|
|
391
|
-
angr/engines/soot/values/arrayref.py,sha256=OgmN2jjlvtg6cOd0I0N7MuZjFQi4TiGLNmI7zTAWJq4,4411
|
|
392
|
-
angr/engines/soot/values/base.py,sha256=90LqVWsC-tUIcvQfGcb6huRXLmgDIQHNbZfcsUOUXvs,121
|
|
393
|
-
angr/engines/soot/values/constants.py,sha256=5u_p39g1UTHlcYQsc9IUoq51DRqvgO05vt4QYLrtSJs,403
|
|
394
|
-
angr/engines/soot/values/instancefieldref.py,sha256=O9--1ADm5VhWMN3_dQ8uCq0uSzHNBDelg8RWvEP5ztQ,1593
|
|
395
|
-
angr/engines/soot/values/local.py,sha256=BXJLVEz7HT_1Y6Y_0tPqyuzaX7-Jqi2353bvEBe2tvo,385
|
|
396
|
-
angr/engines/soot/values/paramref.py,sha256=rS6XN5XQWb5dY38yIf4fdcOfsCjbr-LPAjwpQZ8a0HE,413
|
|
397
|
-
angr/engines/soot/values/staticfieldref.py,sha256=a8bea6bMOEWSGL18FxxBt_oy7a4aAT14aasEaZWnRX8,1240
|
|
398
|
-
angr/engines/soot/values/strref.py,sha256=47EQWszPALzXOd2OUJ9bXXrV13Jt7RhvGsrbNS4vKyQ,1107
|
|
399
|
-
angr/engines/soot/values/thisref.py,sha256=T9WvNAGwtVC1uLLs1SjNeI5jS77PucdZ3_sBxfk81Wo,5739
|
|
400
|
-
angr/engines/vex/__init__.py,sha256=YSCyfX9FmWUUwnCqpB_5NTbiWtJrNpPTcWML6gzwoFE,95
|
|
401
|
-
angr/engines/vex/lifter.py,sha256=Nq3dE76uEaR3FfGbznvJduQpI_wY9A-9qUjC5WRcNBY,17132
|
|
402
|
-
angr/engines/vex/claripy/__init__.py,sha256=HhzP6K1QqXD7T4D9VgZgAS9s_FrGi8ENB_I7r7Bz7Y4,40
|
|
403
|
-
angr/engines/vex/claripy/ccall.py,sha256=95ks1NI0unz-Zd-zzhdowIfFBzxzY0gyTcEq-acHuqI,82533
|
|
404
|
-
angr/engines/vex/claripy/datalayer.py,sha256=ezsvGj8OlhC4NA20fw8xmw8tzY0Ga50dLIcwLBdhNhU,5092
|
|
405
|
-
angr/engines/vex/claripy/irop.py,sha256=Vmd9PvIp8tDuvZXcVhVQSb7J1VChlalULW5StaD3Pxw,46171
|
|
406
|
-
angr/engines/vex/heavy/__init__.py,sha256=VapnI5PnxNnZyqtmQpJNrRs9Yh01-gpfR1LjaGc_ofw,201
|
|
407
|
-
angr/engines/vex/heavy/actions.py,sha256=f8CbzwIOSgksmiY5nwDlgAomOI88wa5S_4vk5RE5718,8871
|
|
408
|
-
angr/engines/vex/heavy/concretizers.py,sha256=pQyOeOjGAORujcw94_2KhcPl8HUwMNs64vgZtJxNT7w,14672
|
|
409
|
-
angr/engines/vex/heavy/dirty.py,sha256=Hb7wGZSxGiXTK686UrMZ8mlv0IItAsriXEifReWdeIE,18569
|
|
410
|
-
angr/engines/vex/heavy/heavy.py,sha256=1YJdEBqpUGlZZeQXlzGMa6kVjZZLPVDRreH1r9RI3WQ,15714
|
|
411
|
-
angr/engines/vex/heavy/inspect.py,sha256=NNQpo4E267W8Z0RDQee9gGH9KDx0mydwjVo02yogT6o,2317
|
|
412
|
-
angr/engines/vex/heavy/resilience.py,sha256=4TYoIFjIygSwRsu4229CsbRNOtlP-QQuligWZRKlEjQ,3737
|
|
413
|
-
angr/engines/vex/heavy/super_fastpath.py,sha256=2E1Tdai9Xf7g-wf5AD3FrLN67pVusnQtF1aPRLLNxEg,1180
|
|
414
|
-
angr/engines/vex/light/__init__.py,sha256=WblrLgYRbdBAvNGbkzGsTgOq2A_pUBJP-FxANPXXQQs,108
|
|
415
|
-
angr/engines/vex/light/light.py,sha256=CZFEgsXM-CSwVexiu6WFikjwXvpAyCR66HjVT--3_0g,21698
|
|
416
|
-
angr/engines/vex/light/resilience.py,sha256=FaHiSMv_hsIiNEqA2Wga2F3bVyXGPtWudL00785ebEs,2002
|
|
417
|
-
angr/engines/vex/light/slicing.py,sha256=lGZsF5_xtVKjCJmD2FMABkyz-kZWctWOMjuWnFWpe2g,2023
|
|
418
|
-
angr/exploration_techniques/__init__.py,sha256=ywiuWYV080w7n4HQUd40DNDfL5FwDVPFlySD2KLRzfM,7037
|
|
419
|
-
angr/exploration_techniques/bucketizer.py,sha256=H-5QyOfDNdCSTbCk8MQluwi9C9Y0iE7E1s_4EAb3LXk,2588
|
|
420
|
-
angr/exploration_techniques/common.py,sha256=7vKlFQjuVoTmtKgYbYjhg67-e3weTzFtU2hC91wHHtI,2262
|
|
421
|
-
angr/exploration_techniques/dfs.py,sha256=IpEmTGVqGAKUCmchKBR_w0SISIsBlNRjdp6sgZlcWis,1167
|
|
422
|
-
angr/exploration_techniques/director.py,sha256=QmiGmOvKwCEvxhdPKmkCA6kzsFKnQ0ZODTjpAEB6FE4,17912
|
|
423
|
-
angr/exploration_techniques/driller_core.py,sha256=TJaE7R7YKwBoO-8Co1848LmS-3n7uxoQK7ED9nCZVqM,3542
|
|
424
|
-
angr/exploration_techniques/explorer.py,sha256=H3iu27aloFHZyJ1uzr8SWh97Y98ce_H9DAS6FH0hfWY,6163
|
|
425
|
-
angr/exploration_techniques/lengthlimiter.py,sha256=1UqHkMTYhSty8v0nPRj6HukWwQotbABK30PiKHC6L2A,550
|
|
426
|
-
angr/exploration_techniques/local_loop_seer.py,sha256=7BUrRXCL2qShBoXBZb0WMtNZg03cykQe8xAHjIkX2F4,2583
|
|
427
|
-
angr/exploration_techniques/loop_seer.py,sha256=FFUuIDTvARmAYCjz1g34dtfhElarMGpv4oLWhN1xR24,11640
|
|
428
|
-
angr/exploration_techniques/manual_mergepoint.py,sha256=7d28ubKW_5cGjGWKLG-ppIw3kaxD7cqJPXN72ZnodNE,3091
|
|
429
|
-
angr/exploration_techniques/memory_watcher.py,sha256=KNInfS7OGUlOTBAgzWZkvPYXpLIjjip2wDXT8aCaG_Y,1271
|
|
430
|
-
angr/exploration_techniques/oppologist.py,sha256=tnPfzuT0qHVeYhqCvYO9c_rTZfXhENFMUpXtp3be_mk,3520
|
|
431
|
-
angr/exploration_techniques/slicecutor.py,sha256=qGX-9t28CiSXiDoz-dbE6X6oqpGt8VqYFIUp0KQ3M84,5126
|
|
432
|
-
angr/exploration_techniques/spiller.py,sha256=2_Jf8OyttY58-q9TvcvBrjb-1DOOZ4o0kkd_3O1RMUk,9382
|
|
433
|
-
angr/exploration_techniques/spiller_db.py,sha256=9Q855QsH96ZxGe7d0cv9YTcQrjd8E4X8WG4mZQgJRP4,818
|
|
434
|
-
angr/exploration_techniques/stochastic.py,sha256=gmFim2h9sFhoeC-zlpGCS0iUDkvM2wwKa_mN5Cc7mmQ,2059
|
|
435
|
-
angr/exploration_techniques/stub_stasher.py,sha256=lGSBgOG4v1bGl5k_lWplkOIL3uWv_Ns9RJoe8rZ2V8k,459
|
|
436
|
-
angr/exploration_techniques/suggestions.py,sha256=GICcH_fIA1ltIwQlbSMse5f1HJ0jdwtpNdnHfVFScXA,6969
|
|
437
|
-
angr/exploration_techniques/symbion.py,sha256=o-o_ZdbSMZCjA0_uV4TJV6jdtZXq2cO3KYzv038rJbQ,3122
|
|
438
|
-
angr/exploration_techniques/tech_builder.py,sha256=UWmOE7GqQkZj_X_kR4Un7rDZyB4oL84Q6L-nLaU1i70,1586
|
|
439
|
-
angr/exploration_techniques/threading.py,sha256=ySZsaltVJ650ZHfyvm_LLYz13J5CT6kwV9E4bXeTDVY,2976
|
|
440
|
-
angr/exploration_techniques/timeout.py,sha256=Q1auu2Nw0VKOqpMaI9E5KnkKWe_sygXSIe352tUtJ2U,923
|
|
441
|
-
angr/exploration_techniques/tracer.py,sha256=gXpO9clNNMuJV5WUmWLJSJGyt9vIduZfMky310z9UUY,50247
|
|
442
|
-
angr/exploration_techniques/unique.py,sha256=fZ2n1xTtNLbNVMzrhbvy2ouRWE-5BR6bgwJQiJZTRRY,4413
|
|
443
|
-
angr/exploration_techniques/veritesting.py,sha256=S3d40zASHwqfblC42jLTrjb79z8rHdhhbvKEjTZqmFk,1350
|
|
444
|
-
angr/flirt/__init__.py,sha256=_0OL3evYWY5b9GxIK4ftj1RGjVaufrnDHtWJymavmPM,4413
|
|
445
|
-
angr/flirt/build_sig.py,sha256=BXZ7z05GiIWbn6419uMrUIgCbI1roxOsf3TvqL1Q5iE,10079
|
|
446
|
-
angr/knowledge_base/__init__.py,sha256=G2QiJKD3Q1dgpSjaHwZi0FMDRI8aeu2x2Lyn9FSgS54,42
|
|
447
|
-
angr/knowledge_base/knowledge_base.py,sha256=LSd8YnQpWwzlhpoM3aSsU0aK1ffwFEwc8UnlEkR81N0,4604
|
|
448
|
-
angr/knowledge_plugins/__init__.py,sha256=UIjrxZHnr-EaYe5tSNQ1DVE6yRJtMlJzNXGLK6ARPhw,697
|
|
449
|
-
angr/knowledge_plugins/callsite_prototypes.py,sha256=d1SUF6NHv7kF1cMH-tfn8Hn6VnPl0Tv04WpcvmMAD4E,1546
|
|
450
|
-
angr/knowledge_plugins/comments.py,sha256=agRU_wacijy4aeWAmkPFWBF5vsxxLod8sCp7mmV9By0,304
|
|
451
|
-
angr/knowledge_plugins/custom_strings.py,sha256=Ja77LM6oMwlTlTObLhueR2S8t71GZxrVlpjQ4ppoynU,1002
|
|
452
|
-
angr/knowledge_plugins/data.py,sha256=oWTeUaSoMRxUUf4sqLkz1U0YP3b2525k3OLs1hNl-XA,839
|
|
453
|
-
angr/knowledge_plugins/debug_variables.py,sha256=EEjvnfj71Gult8N_VDxZ9X4xx_lNrq17TvUz8Y1CW94,8183
|
|
454
|
-
angr/knowledge_plugins/indirect_jumps.py,sha256=Yab47mV__0nhogkqdIpPO7mdl2_RBz6tiZ78GUkCT9M,999
|
|
455
|
-
angr/knowledge_plugins/labels.py,sha256=uJy8OGT5jtU6aDPzxuAKJmaAJqdyU-RDNO0KIGsvHj8,3137
|
|
456
|
-
angr/knowledge_plugins/patches.py,sha256=ucR-hH0KE6eZMvJPFFWl1r2Gzavv3C8YBLAATK5xn90,4306
|
|
457
|
-
angr/knowledge_plugins/plugin.py,sha256=5x_6uCatsbqfQBHfRNqoRS9yc8JrwGnGMDyAn29u_WQ,733
|
|
458
|
-
angr/knowledge_plugins/types.py,sha256=DNBPxMzFYYTtvdGL0va6irXp9z6qn0kAdlOngHwPz4U,2038
|
|
459
|
-
angr/knowledge_plugins/cfg/__init__.py,sha256=L7qgnAg6rXGq8NCfdr1RLSSPRmQ1O87ZkLEDeC6k000,382
|
|
460
|
-
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=9qvUkOW1pLZTXlVFm1b6lTfHsqKi05BCPPTsJwsSWx8,2613
|
|
461
|
-
angr/knowledge_plugins/cfg/cfg_model.py,sha256=_ueS8bcvXHuZ-NgtBqupRvT0KVL8nmBheOpXBHtql-8,41691
|
|
462
|
-
angr/knowledge_plugins/cfg/cfg_node.py,sha256=sOxGwme_hQ5SAzVjS2aUdMeomCAqXS6GXk70PvSUGvc,17364
|
|
463
|
-
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=ixNJtGspxiaWUPsGNtRJ0fvrskumaJhl3164J2zIkKI,2092
|
|
464
|
-
angr/knowledge_plugins/cfg/memory_data.py,sha256=zoFZMcegVjzlOsLG2rjjGlvxGijZxL1763hw4ISwwdg,4988
|
|
465
|
-
angr/knowledge_plugins/functions/__init__.py,sha256=6IerJjMKKvM70mcJQhmXJYiipePOQ9ZSTmavTIUgg5Q,77
|
|
466
|
-
angr/knowledge_plugins/functions/function.py,sha256=YaoFHFkj-Dy4VCR-_UlAJSn0PFnCfFRF1rYL2IEkmK0,67113
|
|
467
|
-
angr/knowledge_plugins/functions/function_manager.py,sha256=wGQ41kKOPqPgUe8cMfySusOA7_p0-KWNDROT_lFakZ8,18972
|
|
468
|
-
angr/knowledge_plugins/functions/function_parser.py,sha256=f2x8ib4kUAZEfd3j3egubY4DpEYYf4_jwlbuM6Fk-CE,11956
|
|
469
|
-
angr/knowledge_plugins/functions/soot_function.py,sha256=2zwz_tdKbEnF8eUkOEmpNr7AUeooun2-SiIoY_xIdMw,4971
|
|
470
|
-
angr/knowledge_plugins/key_definitions/__init__.py,sha256=xnn-6qL8csRtqWkHn6OTHQxiQChD8Z1xuqLN56GjZi4,397
|
|
471
|
-
angr/knowledge_plugins/key_definitions/atoms.py,sha256=sMqROOR2VlEHS8HmEhtPaHl5gE0g0mu2lD2IVIqjkSw,9704
|
|
472
|
-
angr/knowledge_plugins/key_definitions/constants.py,sha256=bbS81EF2cXvoIS7ORxH_j3tTxBL5fUaqaZ6plBWaVKw,458
|
|
473
|
-
angr/knowledge_plugins/key_definitions/definition.py,sha256=o0L7NZIAHPAbwxNiY7zI7Xy675BJ2ANW61NeWuKENxw,8594
|
|
474
|
-
angr/knowledge_plugins/key_definitions/environment.py,sha256=d1oRytninRakOwdoif4szyvyLIQyhEHYVBfVt4mRCdQ,3845
|
|
475
|
-
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=gpHyXvuTz3udaw83DZ5ZGLnDwqZ3EmdMtykPS3mrfXo,890
|
|
476
|
-
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=N8RvK6WqksoB1frFM404Ea_CyyumNrjVao2bwPOgsTc,3272
|
|
477
|
-
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=lYMIKbXthuQbz8f_oQpM_hWucd5qShkPbBNE0X2H0vE,40535
|
|
478
|
-
angr/knowledge_plugins/key_definitions/liveness.py,sha256=uC4N-8uPoYH_RdAWVUtA3aNuMVY5NQnpGp51VWP6BNU,7101
|
|
479
|
-
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=NC4yg3FDO_0hDON1c7loBVl3BGefbDKrT8W0YtB6U-k,7249
|
|
480
|
-
angr/knowledge_plugins/key_definitions/tag.py,sha256=uBHlS71E3Ok_6V3K8NkMblctCrnAHmPYikaFTA02PyA,1682
|
|
481
|
-
angr/knowledge_plugins/key_definitions/undefined.py,sha256=dv1fo4jR48tuslsbPZ40YZhqePfVxBohH9LtFKP8qhk,1236
|
|
482
|
-
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=YwA1DWBE9796BTU8KdY6xIR88IXc2KDUAZuxHEqO710,1510
|
|
483
|
-
angr/knowledge_plugins/key_definitions/uses.py,sha256=Y4iylA9Xohopi5vJNWpviWGIM7HHlJ4nwtIKcmWGO-Q,7400
|
|
484
|
-
angr/knowledge_plugins/propagations/__init__.py,sha256=YOHJ2PMz-egzFMA2H0eKa5FDMadJcp5DSdncVwQxv84,100
|
|
485
|
-
angr/knowledge_plugins/propagations/prop_value.py,sha256=2qg2gL2VQ2Fw-iA0vyxfTrs5Qt_yohfA5JAeFiGQmNc,7696
|
|
486
|
-
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=VwqBlAt1AwTotiDOb_IHmL5L34odPmpGERv5o8-1KVw,2090
|
|
487
|
-
angr/knowledge_plugins/propagations/propagation_model.py,sha256=_T3BnjRQJ6YoTkLeggxKtk53KTo9PrGyx53klKpvodw,2737
|
|
488
|
-
angr/knowledge_plugins/propagations/states.py,sha256=9vq4aSffW1tXWDLaXhNowsRKaf22R0CmXK0NYOnsD-k,40416
|
|
489
|
-
angr/knowledge_plugins/structured_code/__init__.py,sha256=9edAAAVroOR8nNBThuRjOnjVUIqavnObO7mlUttxInA,43
|
|
490
|
-
angr/knowledge_plugins/structured_code/manager.py,sha256=mS1glFUBeT566atVfypIQnxtzYpi51WiBmhhixqep0I,2065
|
|
491
|
-
angr/knowledge_plugins/sync/__init__.py,sha256=RN3y0UhYax-GdPyAhondMXEBuWIu-enHjxjpdTKhQ58,44
|
|
492
|
-
angr/knowledge_plugins/sync/sync_controller.py,sha256=gZ1NUg8iJWu2EaOYY6WYj_W13tRtreIu5CA1VvpTmTA,9270
|
|
493
|
-
angr/knowledge_plugins/variables/__init__.py,sha256=tmh_2i0X6Y41TkEgxHRQ4y-kVEGZnlDIpJZ_wUkCISI,60
|
|
494
|
-
angr/knowledge_plugins/variables/variable_access.py,sha256=RzT-6C3cPXqSlWpQ_vZUf6s4tfYXp2lfOvgfYWkTLyo,3726
|
|
495
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=5tESKmGiHLSSQRmyBjbmQ0oMMO1_TDN1tDo8Sj1J5yo,47312
|
|
496
|
-
angr/knowledge_plugins/xrefs/__init__.py,sha256=-5A2h048WTRu6Et7q7bqlc-AyBXNuJ9AF9nE9zc3M4I,94
|
|
497
|
-
angr/knowledge_plugins/xrefs/xref.py,sha256=1BMphrr8iViDtVWPXWidmY1_uNmw9LRvEwwZLt3Zqw8,4907
|
|
498
|
-
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=a4uvTJkdM0PQIuyYcd7t76IddrrVjPGe9SZrRaqp2II,3980
|
|
499
|
-
angr/knowledge_plugins/xrefs/xref_types.py,sha256=VR3xLQQ-gUg25oX0OL3BJHyQRlZh2A8syBac9ZMS9n4,271
|
|
500
|
-
angr/lib/angr_native.so,sha256=XRfNDBnZNNJX3Zrh4_E7RYDe7gHsYxjPFUHfQ-A1RBw,24466040
|
|
501
|
-
angr/misc/__init__.py,sha256=Ct-Q6-c-Frdz5Ihkqmou3j_1jyJi8WJXlQxs-gPQg0Y,237
|
|
502
|
-
angr/misc/ansi.py,sha256=m5RY65yyvluUJErkvCF4I4z1o5kXi2xb3Yuvt9bITCA,776
|
|
503
|
-
angr/misc/autoimport.py,sha256=vSXclz6pss3lMecoT5_doX0SvORNmZPIvVyDm4je4HE,3419
|
|
504
|
-
angr/misc/bug_report.py,sha256=83AsIgUVhE1rZO0mQPO6h5VDYRyBq1Wv1CjQAxJ04ME,3928
|
|
505
|
-
angr/misc/hookset.py,sha256=TzhmQYf7BP6fHKXYu_1tHalrHAmP4IVmVkh_Hlp8fS8,4486
|
|
506
|
-
angr/misc/loggers.py,sha256=m3BZ0WFL14qmYZiGgGKKJ31tLnO5x2BV4UmqD2606wc,4225
|
|
507
|
-
angr/misc/picklable_lock.py,sha256=IZ9sk7MTvDXtX7EDWEBRwGEn_DNqfsTlzFcMCodnjUk,1276
|
|
508
|
-
angr/misc/plugins.py,sha256=W5P5wwxo42ThYXOl9yTlbO-qYr-WrxIf8i7jy-ohra4,9339
|
|
509
|
-
angr/misc/range.py,sha256=YkvGerZwEiwsv5OWOeoNc6XrwBo_6JOhat2Z6DL1Zdc,509
|
|
510
|
-
angr/misc/testing.py,sha256=uFtZTD2EmltcoaqqEy0koLa_5r8Q1rDyoxJtbutRKQY,593
|
|
511
|
-
angr/misc/ux.py,sha256=8wK8j7aSFeau7S6Vqn8aWvc1uQBj227OnBiqEeS8VmQ,701
|
|
512
|
-
angr/misc/weakpatch.py,sha256=d9MR-pKoZbGrQuL7FZLXlIoQCLh_DVjYwYqopvgyvnU,1453
|
|
513
|
-
angr/procedures/__init__.py,sha256=pnDQ7Xd49KmAKGG1IP4COnKXZZ9xFiLTNVqsN0dLl4E,119
|
|
514
|
-
angr/procedures/procedure_dict.py,sha256=Txj4-R_nEQuDkpkrli3JJZsXwj9lA4btj56Uk_G5eCs,1865
|
|
515
|
-
angr/procedures/advapi32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
516
|
-
angr/procedures/cgc/__init__.py,sha256=GFTI1FuWVFmdqaBoNSFREIw6JiGKw6ajJVBbTgu9j28,76
|
|
517
|
-
angr/procedures/cgc/_terminate.py,sha256=cKDNkZumfGaFNdrPuJw7J1vXsch8YP22nmXvKnJkB3c,224
|
|
518
|
-
angr/procedures/cgc/allocate.py,sha256=-TNIA8lrwJU7eOTK6VxmpvuDNupYyUxeoKm_-n9r5tY,3253
|
|
519
|
-
angr/procedures/cgc/deallocate.py,sha256=5-mFQBF-pfRoiy-N6i7bj3xEyKLMzPHzjdqoevdtTAs,2165
|
|
520
|
-
angr/procedures/cgc/fdwait.py,sha256=JWbKr6z4v7bgWDNBYJzSYIK4UTArr7r_gCqOHYjlK7Q,2688
|
|
521
|
-
angr/procedures/cgc/random.py,sha256=T0nkBMdVYVm0VZl4gvH6uFYt1N8o8NvclLjyVwnIPvk,2455
|
|
522
|
-
angr/procedures/cgc/receive.py,sha256=1symjEmeKKvp45_1YPUdi9gTIevbnifhGW9qv9Ov4EE,3744
|
|
523
|
-
angr/procedures/cgc/transmit.py,sha256=htw5zPmTGhkZi4yAwthV4laNILuFBq_VYDQamCbqKOU,2353
|
|
524
|
-
angr/procedures/definitions/__init__.py,sha256=1tpmjSwamtHCjqlKHvpYrIK-9HfkuqtJ_bYq7Tlx4uE,32005
|
|
525
|
-
angr/procedures/definitions/cgc.py,sha256=tEYT-9MOmlBxehMYP32Fog9t8GczMdA84ienDwcPdyM,460
|
|
526
|
-
angr/procedures/definitions/glibc.py,sha256=PGC-uR3X_hd9Oe43Mi0lgrsrTR9r83ANCjL7iPbLxEE,394191
|
|
527
|
-
angr/procedures/definitions/gnulib.py,sha256=fH8KbaUj6bVOG_cv-JiaffWkVN-YHFbWwvRlE8Mkr9c,1081
|
|
528
|
-
angr/procedures/definitions/libstdcpp.py,sha256=lhV3EGR45spEo_vNFNw2vIdPJWdByqar_sP9dFZMvKs,700
|
|
529
|
-
angr/procedures/definitions/linux_kernel.py,sha256=rGrToCbwxzc0xoBjafF0jmlOn09CCoak9nsOL982g34,238887
|
|
530
|
-
angr/procedures/definitions/linux_loader.py,sha256=sW7eQ7Dk2co_9x0ql-YsWYB8JYs0YQjGz-IM_ukp5c4,219
|
|
531
|
-
angr/procedures/definitions/msvcr.py,sha256=9Wvo9U8ARM93oYmID5pBSCAr9Yg0TxjXAj7Gi_Lks2s,601
|
|
532
|
-
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=9OcLLDNrNb6CifvveD_yTzfhMYEN2iK46nNNjMyz3I0,1795
|
|
533
|
-
angr/procedures/definitions/parse_win32json.py,sha256=-VPddgqEBx-30Y9f3GAsna9l1oxHcS9ddgBfaYZfofk,110573
|
|
534
|
-
angr/procedures/definitions/types_win32.py,sha256=qo5Vh25aaeDml3D3rYkO5CbGi0BlQBy8AyfOqdaecZk,9998064
|
|
535
|
-
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=PvcLMC7TrVeOI0XJoDf5bWLxzMY7gpIyLL3w9lox2BE,1458
|
|
536
|
-
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=UjArSNz8EBS6WjoxSK9y3tG2xssecJVUuWRtx_gPZNQ,1000
|
|
537
|
-
angr/procedures/definitions/wdk_clfs.py,sha256=AS4sTMS2UV1zKQBjEXkjcoIDrZ6A2u8VjYcSTI61mTU,22852
|
|
538
|
-
angr/procedures/definitions/wdk_fltmgr.py,sha256=QPbDGgDaibBYq8NjfWfwMBWd-CyxQlmc-KexaWrMurI,111981
|
|
539
|
-
angr/procedures/definitions/wdk_fwpkclnt.py,sha256=BkG-z0yTDDWA0FqlbugN8r0Jq2ibV2zPkcOlYALI21M,1730
|
|
540
|
-
angr/procedures/definitions/wdk_fwpuclnt.py,sha256=qKcaWq_Rlpm4spLNpLY78jTxRjyjZLjQ3MPxmTJLbGM,68446
|
|
541
|
-
angr/procedures/definitions/wdk_gdi32.py,sha256=slW_WU1BnNsn5AaShThLmf3aaEsza8UmWfqj8Umihyk,37307
|
|
542
|
-
angr/procedures/definitions/wdk_hal.py,sha256=m2-I9QLtUyWFx2TTtyqJa9b-nsU_j_czTtJAkjrZtB8,11415
|
|
543
|
-
angr/procedures/definitions/wdk_ksecdd.py,sha256=hlOgA0l8dQushmuSqJpLO-6DS2A5zqrvHrMJX9t5q_0,12527
|
|
544
|
-
angr/procedures/definitions/wdk_ndis.py,sha256=QtEEVXKaTE7vi8EYlOXqqoT6Ma8B9qMCmIfHeY69LGI,33948
|
|
545
|
-
angr/procedures/definitions/wdk_ntoskrnl.py,sha256=8D2Da48v1NzhJfggVTBl9gNyS4_8IWukCZtVW-DM4GA,593050
|
|
546
|
-
angr/procedures/definitions/wdk_offreg.py,sha256=L7QQTDwpnEyEcUpHFkDPBlIsDIuY9BEch4rOUHw8XVA,9862
|
|
547
|
-
angr/procedures/definitions/wdk_pshed.py,sha256=Gp58kRv7OK_iNJB-s4FU_5JyAzJ_AtvvbBVgR6-v_CA,1980
|
|
548
|
-
angr/procedures/definitions/wdk_secur32.py,sha256=n9Ofl1MWd0cjfssS0oc3qNgneczu589A-_jWQOl4awM,3478
|
|
549
|
-
angr/procedures/definitions/wdk_vhfum.py,sha256=y_0TI1RyIiNU54t3ScVfK5Dl6-KEu9hXObiVXh-YWU4,1942
|
|
550
|
-
angr/procedures/definitions/win32_aclui.py,sha256=IKqJsXsefxMNkUp2B1Rub2m7AnT3Y62zMM4P0mgCCzg,1553
|
|
551
|
-
angr/procedures/definitions/win32_activeds.py,sha256=esn8uX3OemaMWoEGTCVU4ghlUbpucL2wZPz6s4Kyw8c,7877
|
|
552
|
-
angr/procedures/definitions/win32_advapi32.py,sha256=9RZLDnwE42v2-odYLqHfTfhW28X5QrdHKQfTpTf6rJQ,310929
|
|
553
|
-
angr/procedures/definitions/win32_advpack.py,sha256=kLC8O3TiXs_g2LTSJ8G87gmO8h0I-voWdyXmKMLEDZc,22314
|
|
554
|
-
angr/procedures/definitions/win32_amsi.py,sha256=Wgn8W-ArGlpj4yjZyVbTMLZ2xLtdjAJBhMCThS2jAc8,3430
|
|
555
|
-
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py,sha256=xfYCV9fj_Jyp5P2kuKCTST6Vzl4bH9KZsv5XWEkpfjM,3769
|
|
556
|
-
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py,sha256=1Gp009YcoHkKmgCBLq0cAnEOAjRFMsM4IETX6isXAos,3051
|
|
557
|
-
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py,sha256=vDa80-iJLaYFNQKKDJKZInN-e9lbh3VSC7pKdlfutQQ,922
|
|
558
|
-
angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py,sha256=_hMKIs5UhRVnQEdii8wcVf2lws3j5i66rmpBDPxF5VM,986
|
|
559
|
-
angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py,sha256=lKCvWT6auQ2nmKp0w2SzG1fgAhIV722XLAWeNMBo72Y,1060
|
|
560
|
-
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py,sha256=iCJ3t_bYp03e2Z34OaxI6Q0v_hI9V5zs-coNYy4RXhY,1134
|
|
561
|
-
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py,sha256=-VWQHHkD6GgiP-N81aldtK0tUEIbjNvnEPw39qTBuq4,1167
|
|
562
|
-
angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py,sha256=LeCpzJh9ZXyTvyiz6n5IIzvbfq5ilGVV_AbPrrZIrX4,1488
|
|
563
|
-
angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py,sha256=4yDh7nbZRLaJYvIm2clR2mBS5tDSGlVJn-3E_tVBEBQ,1037
|
|
564
|
-
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py,sha256=Xn7uTSjdzKUS8bcovB3RGoc5bdkTJmYjHNOTeQn6dg0,2317
|
|
565
|
-
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py,sha256=zWZmAnXedl6sgEFR_LHiU7TkLXiC33JRCYOPT0ewm3k,1217
|
|
566
|
-
angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py,sha256=4HWGxiYoDCkrWkWKBY4Q1kljdVFgqieeKZFPsNggNv8,4874
|
|
567
|
-
angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py,sha256=67uIJ42dLgG682xHYiIkKWy6EZ8pZwNbhH3QMy_pZqU,1125
|
|
568
|
-
angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py,sha256=G_8K49v1_0Oc7MY66VtEWsP4lm5849tGKucSwj7U1ks,5164
|
|
569
|
-
angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py,sha256=TRIRmI6UFUMudWUzrvxbk103CoRydkeInWegMdaxG5c,2219
|
|
570
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py,sha256=wfbLgBZHiF-SM9R8olsEvbbj7k4b1ba99Q1X75zySIY,2528
|
|
571
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py,sha256=vDRENSM9v1wVdUrqzFwRzocqqTXxZst__VHi8bxqDpc,1492
|
|
572
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py,sha256=hP7PSk5O_fH3ree5KSbm-CryUT35zy5jFgk1BOSpLxQ,2228
|
|
573
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py,sha256=GReSOowi7tMOGwbCYCFZH5BN39UpufFOzm8Kmh9rUX4,3867
|
|
574
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py,sha256=mHDW_O-e9b1S16bWD4UsUGgPbjXee56mmfl3HKUvsWA,2362
|
|
575
|
-
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py,sha256=iYXFjdxu_wY7GO7BxkPi6TEyIGYpX9QHwM4Zt5wUmMU,2378
|
|
576
|
-
angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py,sha256=5bWQ2zsw66SWcVcdG9EHW-qLkzYmlYBjQ3xu8DMUz6w,8406
|
|
577
|
-
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py,sha256=FbIhAWr4HtciL8R4Yc5hgONl6F0KNFAP_GQyI5l3HpI,1547
|
|
578
|
-
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py,sha256=Ud3xnRUx0aKBVGKmX6QGvF2XkVGSoDe2RiF6scAFzPc,1562
|
|
579
|
-
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py,sha256=E8Ig67Tubnf1UpMV97w7kcj7DoSjSD90z4AGIWMBvF4,1429
|
|
580
|
-
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py,sha256=HIpEwssFgFnZeZz4e35G1WOHLtPJmdHQmUw50D9vXsw,1850
|
|
581
|
-
angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py,sha256=z42D7ssuH1JI1H9LGQCCzZAphIPL7Nu9FzfVKXK6XYY,1281
|
|
582
|
-
angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py,sha256=NQyU-ry_MT5CO-FuKckoe3uWIn-IYWfnvhZfpcFjmjg,1682
|
|
583
|
-
angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py,sha256=btjpsuztZP0pxR7yUMA9ZKQWNyI8K1clLze4pBkPvu8,1540
|
|
584
|
-
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py,sha256=woiPUB20f7QBNX6lsfTkgzm-v3VX464yimov4oZu3Uc,995
|
|
585
|
-
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py,sha256=igDykcoccd6czjbbF8oak4xSWojTWTW9enNYY9SqSTQ,1184
|
|
586
|
-
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py,sha256=dvwmcsqbv8a1twscHmjRVm-BxjeexFROfmmhF_gUXto,1467
|
|
587
|
-
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py,sha256=ypATCeb7jPMgHJ6lorFZ4llWmQQ07q_vvvf76XRg-4g,951
|
|
588
|
-
angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py,sha256=XvlyZjFyAc6fSNrge1qxLSJ6nq6BeVFgo7eGmOGGVhk,1537
|
|
589
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py,sha256=bo6LaB4w33Do4wmwCCcHDK1jzTD-FEc4RsCxWyQ1U_E,3268
|
|
590
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py,sha256=JHOXCr7jW2n4lUHnycsz_ZVFXlWx5sacdEOhiW7PFYk,3777
|
|
591
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py,sha256=WnJGMLZmLfN0w4PiHxfkMKRn6tOXLF5sn8YUJQ0SLXg,3228
|
|
592
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py,sha256=8xtNWIbGY4tvDGwmpLw8wQ4NH-LI3KRhJAkuweSz0U0,1162
|
|
593
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py,sha256=EvaD-zkfC1z9nTtaozGJJNcKJ0NoJav7k8ROe44_q8E,901
|
|
594
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py,sha256=8fTj38NDkPj0S4M9BoNfa-vctmX-3KbXylSEem4Yqi8,1694
|
|
595
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py,sha256=Q5CDaRppLbWVCTV1EpvGyWSWhnn7x5bQIR_wWD4n0Z8,10986
|
|
596
|
-
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py,sha256=EgCLn40u7wsb86wNw8UL44QdRm6esqEKc1_gTsSysOg,1550
|
|
597
|
-
angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py,sha256=XwCfzGBjfMBXXvIgrB6sU43Fe9evqBkjNoirCbk3vPQ,1653
|
|
598
|
-
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py,sha256=72KmSYARzYv6peRRSmwoKU5pMbPBtMw7TKXrzttOMPo,6949
|
|
599
|
-
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py,sha256=MeHBQ88duNZGjdarjcJN7XzFDtwgws1G8nBKqLmy6KI,6680
|
|
600
|
-
angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py,sha256=yw5BBaAPtU6aQIExXhhTufv3sSpLGE9pK-abYBet5fE,900
|
|
601
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py,sha256=Irv2s6nX4331GcvXIUn_XpvZW3SNOu0kZ0e9HOaphK0,1043
|
|
602
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py,sha256=mYN8NGCZWs-wTuhL0qVWR9Tfo0GHZUjW6RbMzqpBkn8,1347
|
|
603
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py,sha256=1fNriEUI7EVwzYzzuAaeOYOGtK4ZYLffXrUObyIUskc,3983
|
|
604
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py,sha256=2Bi5qD2pXNr98yd1aHo5J2Oo0R4O2P3e7It0_7yB18M,1753
|
|
605
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py,sha256=mMEeOg1N5SQylWEG9fm5EwYz1dg6Jik-eL7_loRkQZs,5014
|
|
606
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py,sha256=yueZH1VBAjWEP0zqZ01-RMiQBoe5eJFQp6kXqMMO8uM,2233
|
|
607
|
-
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py,sha256=e9OW_S5vio_wqu43Da68UnXQfDJsrzsaAT5icBhetbg,4359
|
|
608
|
-
angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py,sha256=4oBiqT3K06xpjzZtnq2yn0Xg-18sxwGxFCgjh9369do,1207
|
|
609
|
-
angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py,sha256=zjtwNpJqz_sOnRS56PFIPXuG-IwDi9gLRZ2P8NaJ7bM,3912
|
|
610
|
-
angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py,sha256=Xj-RnURqwckw3UeyLYKcZ3U3-qCNeLpXs9U4_NCn6Wo,1434
|
|
611
|
-
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py,sha256=43xO4Uz_GrBJ_MSdT1WCo6PlVqYFxodWa7Qo024NzFg,1041
|
|
612
|
-
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py,sha256=DHa3HAFSMSd3P2IupZ82qVnikId5NsDf5n8_UxSxkb4,1100
|
|
613
|
-
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py,sha256=RDQuBanFXvBrCKtUdMi8MqIMc7aWvsu-eJ0yUWlqzTA,1289
|
|
614
|
-
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py,sha256=w5ugcH8RaHtSuXoqf_s8zfmaP69HJM0qRrA8sKxcZ5g,1344
|
|
615
|
-
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py,sha256=CKs3gkscCkwdHF9XKvr856YX2R6O4EoIYVSylGKdxko,1833
|
|
616
|
-
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py,sha256=n0HowNgEHnhcJcawh1VdSUPM4sLqAgFcKt8Ls352-20,1687
|
|
617
|
-
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py,sha256=vANDLzyAorOJQt31F-q1eEmUIrg3hDUhf9tqoR1-pLw,2545
|
|
618
|
-
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py,sha256=0NaG0tQfbULkeI-0O6huRRRwjqo2PbXLEaQaTtbpSfE,994
|
|
619
|
-
angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py,sha256=KAEyyOCccWum-VrfoA5xS3aObApPQ0JF93zODSOPpuU,1817
|
|
620
|
-
angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py,sha256=e2PgANMkqM3HLkRFe3lSsWaQVcmh2psNYQNfQA8I_fA,3586
|
|
621
|
-
angr/procedures/definitions/win32_apphelp.py,sha256=Td0VLLaHwuJzahbXTVzfW6ZpwWWuO-rtZ3pedj_aNFE,1117
|
|
622
|
-
angr/procedures/definitions/win32_authz.py,sha256=vYA2Sc88K_04fWiHR2q-sE-Rj84aRwrPfoUfwDlaUqk,17589
|
|
623
|
-
angr/procedures/definitions/win32_avicap32.py,sha256=ufg98ertBSVaGaLkuBr7zwhgZiBrs6VUrvl9sQdCn1c,2884
|
|
624
|
-
angr/procedures/definitions/win32_avifil32.py,sha256=m0WZN71aJA-IVhMDcfg_KbP8JXbbmzoO63Zh338hPz4,18938
|
|
625
|
-
angr/procedures/definitions/win32_avrt.py,sha256=lTWsvIG-B1Ld6rOJsUFGfgLtAyMNeYSfyEfUFt0vIDM,5529
|
|
626
|
-
angr/procedures/definitions/win32_bcp47mrm.py,sha256=RXD2L-YsGRv3L7J6eDaxg2J-DBQbyI9BPFZNBhfV2bY,1328
|
|
627
|
-
angr/procedures/definitions/win32_bcrypt.py,sha256=zYxi6T8rcOLvhIzgZ1lHvlBMWd-BVqw5_MJ3xMzdzGI,24333
|
|
628
|
-
angr/procedures/definitions/win32_bcryptprimitives.py,sha256=RUjqsHif6XZv-sLFtzHXv3rBQgiQh1A47-3I9HEoIbg,1325
|
|
629
|
-
angr/procedures/definitions/win32_bluetoothapis.py,sha256=6uzAte6TamxO-9G_ax91zA-sSy2IVuOtTwMYzVQtt8M,17641
|
|
630
|
-
angr/procedures/definitions/win32_bthprops.py,sha256=iWZeL_Skwa6zUzGIns3s_9sqqH7jmunJPcKVZOUHOiU,10950
|
|
631
|
-
angr/procedures/definitions/win32_bthprops_cpl.py,sha256=_tm06iRReFjralbNsOGE2a9xVnxpd4f0lyLrGtJ3Q5E,3094
|
|
632
|
-
angr/procedures/definitions/win32_cabinet.py,sha256=bx2pmpwAIvyiMV_yGkA_ueLAv0GdnH_7ZNc4qJShHZQ,16642
|
|
633
|
-
angr/procedures/definitions/win32_certadm.py,sha256=8etDLtMmzekr6jytUHCELVPbtccEf8lcSvddFrjvP4s,6820
|
|
634
|
-
angr/procedures/definitions/win32_certpoleng.py,sha256=I7yv5CMtugrWjbLMgXx8fFEsTvmp5Ky5IOuQgjpPn-I,4345
|
|
635
|
-
angr/procedures/definitions/win32_cfgmgr32.py,sha256=gOiqIxN1QPbH_Q48NbdFnBy0IZLtYAkBVyTGwhdBz2g,101560
|
|
636
|
-
angr/procedures/definitions/win32_chakra.py,sha256=xX12UMWdqmVRvb6TgyrGZXSpKP1UDGHLEr8ELk5U_bs,26407
|
|
637
|
-
angr/procedures/definitions/win32_cldapi.py,sha256=MOrhMK76VTFOxrQGSnyz83zXM94sNKJezf6D7iz5L0A,14271
|
|
638
|
-
angr/procedures/definitions/win32_clfsw32.py,sha256=quu_ofa2SjmyyXNIknh8YxfXSAHcqucMLjndUYYhJOY,24138
|
|
639
|
-
angr/procedures/definitions/win32_clusapi.py,sha256=1CFdqkuOu5_cg_E0HZ9owSJootWbJbC8_rYnvrUTK7w,111741
|
|
640
|
-
angr/procedures/definitions/win32_comctl32.py,sha256=ulb5WDdBuCBc-K1HQ3XfvBwRiR_jQPU8PUpc6KNVsMA,43365
|
|
641
|
-
angr/procedures/definitions/win32_comdlg32.py,sha256=JJH-qeuZ8Azvx-VMPKa78wA_WVx1QgrDf-RuuY5x9hc,4894
|
|
642
|
-
angr/procedures/definitions/win32_compstui.py,sha256=wIlX2Ve_hMHGQQe7UHC74M_PDbZMIjKFHi0wp5_azKM,2651
|
|
643
|
-
angr/procedures/definitions/win32_computecore.py,sha256=fxZIwPU4X3-5BCyWDpq8Q9dOIlcTf9jvDXd8WcHD1gE,19474
|
|
644
|
-
angr/procedures/definitions/win32_computenetwork.py,sha256=R2GhGX2Ai--Ioc6PrdTeEUOpaYxKIFUPL8tQ7Jb0j-s,16032
|
|
645
|
-
angr/procedures/definitions/win32_computestorage.py,sha256=Lx80wtEZsezBOjfp3Ni3eSVfoJh8np64_LSe9vzF25A,4405
|
|
646
|
-
angr/procedures/definitions/win32_comsvcs.py,sha256=OeRADy0uHHO2_HV_-fpQ3mGlOzwt2baBVBunIX3Jys4,2241
|
|
647
|
-
angr/procedures/definitions/win32_coremessaging.py,sha256=FE1cy9yMrjAVKiduONpC_mIzxOZu8ZMe8WoCc7B20FQ,1201
|
|
648
|
-
angr/procedures/definitions/win32_credui.py,sha256=PWgOsN8Wrlx87wJq1g0utwz-u4tgmyQoyvoPNvsMUJ8,11823
|
|
649
|
-
angr/procedures/definitions/win32_crypt32.py,sha256=fRukPQNIPL0tMfzpnv1vo1hGKWFc0kjMakJyb--b3g8,105559
|
|
650
|
-
angr/procedures/definitions/win32_cryptnet.py,sha256=2N-lUQTzO9YOvCOq-0_x277rhDJEykMu_ohqNyouujY,3864
|
|
651
|
-
angr/procedures/definitions/win32_cryptui.py,sha256=iHuwBIWLz0-NCmgrFVejlfQGOIybSANZGcFT8C9UGAo,4935
|
|
652
|
-
angr/procedures/definitions/win32_cryptxml.py,sha256=vRP-Qw82qnw82K3YQypBVj2ER3CPkVAsM1n91yiQGMQ,9065
|
|
653
|
-
angr/procedures/definitions/win32_cscapi.py,sha256=7g41U8liSL9U-mEHtbuScInA_5ghXWnY4PhEBqwXMFg,1769
|
|
654
|
-
angr/procedures/definitions/win32_d2d1.py,sha256=NI6-oPuoVhhc7YT-K9i9GzPcgjvualVWfx7_RE56w64,5253
|
|
655
|
-
angr/procedures/definitions/win32_d3d10.py,sha256=C8Xao9zZfVsNcwTNgn_SSkiGUStF17hB7e8agX9a2gA,11546
|
|
656
|
-
angr/procedures/definitions/win32_d3d10_1.py,sha256=KQ9BzcfVrFAXylgsmg0UhQkbPt6687GFhpj6NRXEN3Y,2118
|
|
657
|
-
angr/procedures/definitions/win32_d3d11.py,sha256=7qw3gbZ5E2Z_enfokr-6aBZIJ6Rc5VdoH8U_lyvXEvM,3575
|
|
658
|
-
angr/procedures/definitions/win32_d3d12.py,sha256=KDayLXktFSBCXnEQdH8OL9eVjMXKhTY_i1EvhQ-YrD4,4078
|
|
659
|
-
angr/procedures/definitions/win32_d3d9.py,sha256=0z6nohDphUXuXKgYLF728i_bcAIzwVUAVpk6eWgosG4,3002
|
|
660
|
-
angr/procedures/definitions/win32_d3dcompiler_47.py,sha256=YK352tC3LtKzU2tCm14eL_2i_b9rey1LqFbTv2rF2VA,13432
|
|
661
|
-
angr/procedures/definitions/win32_d3dcsx.py,sha256=RNUgb6xjKxQBtlENd46mE3hQrsnnXq-sFnF_FvBcmq4,4827
|
|
662
|
-
angr/procedures/definitions/win32_davclnt.py,sha256=5w6lHa8iKzNndw9bLXa006d2BUNLD7-d2p_yYd37x_Q,7266
|
|
663
|
-
angr/procedures/definitions/win32_dbgeng.py,sha256=wlnoeSnm4ielcPYA_6ASiC2Xel17tEfMAgBDm5XmMhU,2063
|
|
664
|
-
angr/procedures/definitions/win32_dbghelp.py,sha256=OVm-gcIYJ9p71N_D5JiEn2nw99ognepMbO63hnhDSrE,109042
|
|
665
|
-
angr/procedures/definitions/win32_dbgmodel.py,sha256=IslpDvuqDhjvwQ02sUsFhJ7HDwkPkIDQIIE3poxEvUM,1028
|
|
666
|
-
angr/procedures/definitions/win32_dciman32.py,sha256=GTL3mAjaSf7rZtmjyl8THnfz5YQf3dnA7h2Rloxhejo,7151
|
|
667
|
-
angr/procedures/definitions/win32_dcomp.py,sha256=ZzlHhZhfJ9PFej5Q-pt2QGad3XWXkNZOGXy_tPFu6Dg,4837
|
|
668
|
-
angr/procedures/definitions/win32_ddraw.py,sha256=rFcoUes0PJr8gxTZ5bZ8i8tryv5CQ8LondicTUqWapM,4233
|
|
669
|
-
angr/procedures/definitions/win32_deviceaccess.py,sha256=SH6fq6kbK4_bWy4WxrvnePP_S-8ajdNmCxdaKqPczzo,1134
|
|
670
|
-
angr/procedures/definitions/win32_dflayout.py,sha256=XRMG-M3khsl_EvGblfuYfTtOQmzlz_7slkVn7R8y9X4,1145
|
|
671
|
-
angr/procedures/definitions/win32_dhcpcsvc.py,sha256=tnalAU_5IkrXBuYk6_PgZxphMOAqDQxWy0eGu69--k4,5570
|
|
672
|
-
angr/procedures/definitions/win32_dhcpcsvc6.py,sha256=J9DEfBwjnPNlKaXBUxNqg4HJVOnsY_7fdj6K0AeHVAk,2967
|
|
673
|
-
angr/procedures/definitions/win32_dhcpsapi.py,sha256=qIs8LZaQQtZfsmNc1hF9J_p9w5T0JKp90Ylz87hSiEc,81410
|
|
674
|
-
angr/procedures/definitions/win32_diagnosticdataquery.py,sha256=-xbntvLb_AAlhcaXP2BhHO8cm0Ir4Sp8iYKB6zTmS60,13697
|
|
675
|
-
angr/procedures/definitions/win32_dinput8.py,sha256=WTxkwqhlzcr32t9TSQ24HqBKxeOu8CBnLNqDm-8B9zc,1243
|
|
676
|
-
angr/procedures/definitions/win32_directml.py,sha256=aohpBsmmPrm_vl7BQBHjVJZtYCOxQXq5ha0xV2KY398,1621
|
|
677
|
-
angr/procedures/definitions/win32_dmprocessxmlfiltered.py,sha256=ZgwF9_J7w8tJPLW85DRHUnk2MSWxwztXV6We1XyxJzA,1261
|
|
678
|
-
angr/procedures/definitions/win32_dnsapi.py,sha256=7Sr3io0btMd-DgHirQ27Ea_5dRj2NJMbC6T5ZagDdLU,22815
|
|
679
|
-
angr/procedures/definitions/win32_drt.py,sha256=PHssLXp3JwsoVg8VFMlmcTMzN9KIWX03nRgTS-jw3pU,5579
|
|
680
|
-
angr/procedures/definitions/win32_drtprov.py,sha256=1QZGPlaNZKrn4glGAIpTMwcbE7pASBEJuXhmPWHNAaw,3373
|
|
681
|
-
angr/procedures/definitions/win32_drttransport.py,sha256=6mzll7z4w1OvrS7az24kX82EpzealIIe3USzqUS3pBY,1445
|
|
682
|
-
angr/procedures/definitions/win32_dsound.py,sha256=KP4Vo_X1A_66qs-VYRY1a2fYnYujGaIjDzuk06PqxqA,5367
|
|
683
|
-
angr/procedures/definitions/win32_dsparse.py,sha256=oGGDAJJxy7wIzZylJzR4LuFvmyTZ0_VxokAsiqCeXio,11582
|
|
684
|
-
angr/procedures/definitions/win32_dsprop.py,sha256=2Sh_K0d7heRQTTCzAtKRnfO28wbUF-diojyZDiUTdko,2935
|
|
685
|
-
angr/procedures/definitions/win32_dssec.py,sha256=wSvAEmdSC7PsizhtGmitbD-evZ9sHKFJw0Lm_GVAROo,6189
|
|
686
|
-
angr/procedures/definitions/win32_dsuiext.py,sha256=-JwO1YpOFWizYJCzFOCNqGBbEwHtFoW1TsFSVCZrqzY,1855
|
|
687
|
-
angr/procedures/definitions/win32_dwmapi.py,sha256=3VJCIBku4BwJpKa_JhHtaegHqHD1H080_8Lbeugr9qk,9715
|
|
688
|
-
angr/procedures/definitions/win32_dwrite.py,sha256=6srTc7cjyzZMIsf0ylQhB4GG3JZFOpaQ-PKkOeY0izs,1120
|
|
689
|
-
angr/procedures/definitions/win32_dxcompiler.py,sha256=C5oDe3gHOV9vQJK4deXDN83gXQGiG1rauv03w4n7YRo,1484
|
|
690
|
-
angr/procedures/definitions/win32_dxcore.py,sha256=rBbYjXH-O9Yk4rs8FiU_808q8sVJT8RgHzC7I_KQoeM,1061
|
|
691
|
-
angr/procedures/definitions/win32_dxgi.py,sha256=I5bOrxfb9OnIbqjUalKFH9R0Qm4tI8ki_n90NcfZnGA,2185
|
|
692
|
-
angr/procedures/definitions/win32_dxva2.py,sha256=JcfxKapcJa3gPlaeyG5IDEacbTe8l3y6MeXFbJLEaAs,14554
|
|
693
|
-
angr/procedures/definitions/win32_eappcfg.py,sha256=qKvlUxVFWSm1avSHgHBoxkyKrsAdHOAV53G5pi4pqH8,10117
|
|
694
|
-
angr/procedures/definitions/win32_eappprxy.py,sha256=y3TGUV0dAvH3fhDckf-A_Ch1BJoe-IDcvCdKR42dvl0,9178
|
|
695
|
-
angr/procedures/definitions/win32_efswrt.py,sha256=c--xi-DZh2Gx19KFHP0c2i4mxCJGhTT62RolW5Yh2Do,1311
|
|
696
|
-
angr/procedures/definitions/win32_elscore.py,sha256=-rDuNi66_amcB4nQ7SU5930pXegH6g6mdQEYoRMt3xg,2446
|
|
697
|
-
angr/procedures/definitions/win32_esent.py,sha256=mgwypZZi09XJjoIBLU_bQnfWGPePsBrTu6S7dEzStL0,105927
|
|
698
|
-
angr/procedures/definitions/win32_evr.py,sha256=C39oqnQ2wEVUgfJTjVJ6TkX8OL3bCqd_1e1q3D72E-w,3146
|
|
699
|
-
angr/procedures/definitions/win32_faultrep.py,sha256=xzRZN00rYgOhK7jLLqQfHLMgUZvP0mknyNJdOfGKQRA,1687
|
|
700
|
-
angr/procedures/definitions/win32_fhsvcctl.py,sha256=RdRe85rlpsBOZdK3WYNqQOxTUknBdg3vvwpZqKAQf-0,2401
|
|
701
|
-
angr/procedures/definitions/win32_firewallapi.py,sha256=oJSeQMRs00RrzhSmn2844yyf09jGSBWLgnN45pjmVcA,2011
|
|
702
|
-
angr/procedures/definitions/win32_fltlib.py,sha256=j1EztwJ10XUDXe9XWZ83OydUzEVpRa_mA4Ffhbw9zmk,12020
|
|
703
|
-
angr/procedures/definitions/win32_fontsub.py,sha256=OmiivQvV8TdXAWVJOut8cHYQDQT28FQLIwD21DZ2X_g,4105
|
|
704
|
-
angr/procedures/definitions/win32_forceinline.py,sha256=OgTFeA7ooAkZ8Y_T060Ddk4DtnByxOwgkLhIRQtAJqM,1227
|
|
705
|
-
angr/procedures/definitions/win32_fwpuclnt.py,sha256=ez46wN1QIrsMTcYGjMzj947uDql1vJPdA9zi20L-TR4,93548
|
|
706
|
-
angr/procedures/definitions/win32_fxsutility.py,sha256=UPp6HSCfmEF6omM4wk5k7WH7kiCYEWdQCJCQsv5CvEI,1129
|
|
707
|
-
angr/procedures/definitions/win32_gdi32.py,sha256=KRsM9SQgzaxL2gzSQR06e_iWIXMKqPd4jW8VIY0Qn2E,148174
|
|
708
|
-
angr/procedures/definitions/win32_gdiplus.py,sha256=S-lIwhvVHs24qih9tPr1ptpW7QZy9vRjnYhgv_MWfP4,247483
|
|
709
|
-
angr/procedures/definitions/win32_glu32.py,sha256=WwGBGQ1sy4SBYSk6FwHPYbv13pNkw1r7aGoq08zTpW0,16771
|
|
710
|
-
angr/procedures/definitions/win32_gpedit.py,sha256=r4WH6TxE7K0c0YdMbyKAkv9nDheXMMiH7EdoOlbvp-s,2162
|
|
711
|
-
angr/procedures/definitions/win32_hhctrl_ocx.py,sha256=6P6vNt6KpnQmdWN2T4LfQGCZ7vNcSK22VjqOQkyZJF8,1678
|
|
712
|
-
angr/procedures/definitions/win32_hid.py,sha256=-ck37ckmk8LXJJorI-E8tjLn2dglfTfQ-8RNJu12maY,21797
|
|
713
|
-
angr/procedures/definitions/win32_hlink.py,sha256=MVBjHsRhvNwxFV-qViWeMmfrYsHFEKTWyFEsGDB8KU4,12512
|
|
714
|
-
angr/procedures/definitions/win32_hrtfapo.py,sha256=njEcDaLaSkn9w72T3sg9F2j5HKzcybuDkdOLWo8KCu4,1027
|
|
715
|
-
angr/procedures/definitions/win32_httpapi.py,sha256=yEKd7OFpeugkeWuBUu3PtvPXobmD02HCdtgj1MW-ogU,19733
|
|
716
|
-
angr/procedures/definitions/win32_icm32.py,sha256=kHi_cyi6aefO8Ai-3s1nlO9qOLMdYh1nN6yNkD_myO0,12533
|
|
717
|
-
angr/procedures/definitions/win32_icmui.py,sha256=zM93hHC8lrkf8VG7nAmcL1CQ9EZhIOZKDY25y0wmHG8,1161
|
|
718
|
-
angr/procedures/definitions/win32_icu.py,sha256=OrvhwXHRcZN-WdezP5FpeZrd6Vsq8kJOWv6i7xC-wvQ,373759
|
|
719
|
-
angr/procedures/definitions/win32_ieframe.py,sha256=ItJtqY2iuUYAZw7DiYIR2eJVXiuxRWW5Q539mxFriiI,10129
|
|
720
|
-
angr/procedures/definitions/win32_imagehlp.py,sha256=Kuv1KHO0o0VXFVs2nQXrgXo8NCuTog7RrOGIMkmDNLk,11559
|
|
721
|
-
angr/procedures/definitions/win32_imgutil.py,sha256=xBJDxvQZrItWRYu9oCIGWhr-wrSpSGCcXcWvbd91yN8,3884
|
|
722
|
-
angr/procedures/definitions/win32_imm32.py,sha256=EF_6S1XJTwyRS5E1Y2Ri9TIt9o_Reuojbazk9A5WkV4,28246
|
|
723
|
-
angr/procedures/definitions/win32_infocardapi.py,sha256=noEfzP84dJxR5ZqvVZknohhn7hWwQuG2tIgiC0SBssM,8100
|
|
724
|
-
angr/procedures/definitions/win32_inkobjcore.py,sha256=Ma8LXp2DtW5MRjoEoVkwqAD8PhvuS1YC2RcS5dwMFMY,8943
|
|
725
|
-
angr/procedures/definitions/win32_iphlpapi.py,sha256=B2FD7O6-cf_3Lr17fS8L77Yv3R0L1_HmB0Ks-7ucMBs,65729
|
|
726
|
-
angr/procedures/definitions/win32_iscsidsc.py,sha256=rEcZwPFGWmzUvP1YmECZxH8OYrykjBr9w0-gjParDqU,28599
|
|
727
|
-
angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py,sha256=Z_8tSZXejMp2VbLSbev_J3R2sN6v3LCjuaoYngMMdrQ,1293
|
|
728
|
-
angr/procedures/definitions/win32_kernel32.py,sha256=xJbo8IJLMimxENTyOjZKN5G-rOnpYGtYC4nKWRcEYRg,505053
|
|
729
|
-
angr/procedures/definitions/win32_kernelbase.py,sha256=j7cSKmOHYn8ZtOrqwMUQUQ4CGwqlIPxavJfcLjV1z8I,3158
|
|
730
|
-
angr/procedures/definitions/win32_keycredmgr.py,sha256=VMeifpBS48C06o8b1elMi1DH834wlmeIvl6pogiVmag,2060
|
|
731
|
-
angr/procedures/definitions/win32_ksproxy_ax.py,sha256=KScqnkKUYxS3IYnP492SrsZH5ph-LzW7sakgEtymCF0,3689
|
|
732
|
-
angr/procedures/definitions/win32_ksuser.py,sha256=5zJcvvFtl9eu4yPLPF-xojtJybQBtMpszwQ3nHYEcQY,4328
|
|
733
|
-
angr/procedures/definitions/win32_ktmw32.py,sha256=S32kfzHNuxfksH1xuPc_wTebPWnkvfCTLP7Y790At4U,14607
|
|
734
|
-
angr/procedures/definitions/win32_licenseprotection.py,sha256=LfHOMTezq-lol-NGp3L-ZSNdoBb0jzPnOA2fu-L7wsE,1582
|
|
735
|
-
angr/procedures/definitions/win32_loadperf.py,sha256=vS1PhJe_EFaj0z_tOekUeWEgFfrSBReJbXlLGvEJBs0,4334
|
|
736
|
-
angr/procedures/definitions/win32_magnification.py,sha256=GiI4I1i4JjDpJTbbNjkB0sHTQxPatF_VsRK1YK9u9YI,6878
|
|
737
|
-
angr/procedures/definitions/win32_mapi32.py,sha256=tL824qNUURxb1AtnxwAkI6BoUZYEMfPW__6OhvkgSp4,25169
|
|
738
|
-
angr/procedures/definitions/win32_mdmlocalmanagement.py,sha256=eySQLgKbloHMZrV1-CFguPDeYB3NHzs1nAMd2cX9BcQ,1411
|
|
739
|
-
angr/procedures/definitions/win32_mdmregistration.py,sha256=5QjgoyiKZRz4IPP3XV0MJuJApUyxggyRKKLtRCaTZjo,4765
|
|
740
|
-
angr/procedures/definitions/win32_mf.py,sha256=YLTmvNE_fK9lHvDOXwc-D2Pw1Y0v01bnf8rTJ0k9aio,17507
|
|
741
|
-
angr/procedures/definitions/win32_mfcore.py,sha256=Qg3N7Gg-rtdCZiuN2JKAtWU2d1I_TG7UviLmHwbDysk,1358
|
|
742
|
-
angr/procedures/definitions/win32_mfplat.py,sha256=UNVqVt9vxiOW6XgF7_czLaeBok7F9UXrOwpiLv-8ueQ,45685
|
|
743
|
-
angr/procedures/definitions/win32_mfplay.py,sha256=8lTEaodtck3RHjTjLl4-KN4i74qabtbcFEZGrJIkgWE,1326
|
|
744
|
-
angr/procedures/definitions/win32_mfreadwrite.py,sha256=9aQZXrHhQFgSR52h3PwKxsgtRs5vMgOzByBSQWRhDzA,2429
|
|
745
|
-
angr/procedures/definitions/win32_mfsensorgroup.py,sha256=a91li1NUNey4pG-ftCwQnu-Ygl8S8aPWq-qtXY13mA0,4363
|
|
746
|
-
angr/procedures/definitions/win32_mfsrcsnk.py,sha256=DOh5kLwcuLWOJKuQR8Y5whptBdL_9sz2IlxCcAm6d8o,1451
|
|
747
|
-
angr/procedures/definitions/win32_mgmtapi.py,sha256=FwEBoDPhP1GicIR5gVYs7F_CR7SDgwsoAnXKMweEoow,4531
|
|
748
|
-
angr/procedures/definitions/win32_mi.py,sha256=xASrQbgotN2adMAq0Mz8K1dWa2gZ_rk5cloN5XLp08c,1232
|
|
749
|
-
angr/procedures/definitions/win32_mmdevapi.py,sha256=xQJjRFnEUjQrt-mt7dP_AqOofsFk0e4sevHQU6s92iI,1326
|
|
750
|
-
angr/procedures/definitions/win32_mpr.py,sha256=oX6elKuJkGSw6vCT30pIHFlXeSvLi5PDRwscavOOsFA,19241
|
|
751
|
-
angr/procedures/definitions/win32_mprapi.py,sha256=U_0SxYtKP64jVxdaOh-5PiYUSs8Vszf6l5kN0rl-JvQ,47666
|
|
752
|
-
angr/procedures/definitions/win32_mqrt.py,sha256=l9oTdLBHnAvRuhqtop83ANQn-yI88viUtXmRy22F2yA,13037
|
|
753
|
-
angr/procedures/definitions/win32_mrmsupport.py,sha256=V_wnF7-ByI1_HjOS7IVvSo5ozl6SXdJ0UbdrWV9A6sw,11736
|
|
754
|
-
angr/procedures/definitions/win32_msacm32.py,sha256=r-TJZejaUf9KeEGreiy6aZmv7nbTa0sC1a4Bdb0Dt94,19430
|
|
755
|
-
angr/procedures/definitions/win32_msajapi.py,sha256=HihcxNuSt2WoF52K4u5TblKZu-hI8QYBHkqzQwP1u2M,183424
|
|
756
|
-
angr/procedures/definitions/win32_mscms.py,sha256=nS3YwQLU_4EZNZy_bz_R6VbSV67i4eG3M5krPf49TEQ,34895
|
|
757
|
-
angr/procedures/definitions/win32_mscoree.py,sha256=ubXH91TL-VAejE4ckx7t1V0Z9ldFPHx5xnkDbTXgnMs,11975
|
|
758
|
-
angr/procedures/definitions/win32_msctfmonitor.py,sha256=pJ1ngoosrYccTHmJiuBSz9ngpTRdVjtIp-N_yCKAQpE,1327
|
|
759
|
-
angr/procedures/definitions/win32_msdelta.py,sha256=KzcgDbb8JU1Tq8KrxX2ukfXuThNQWSSNXxa-m122bBI,7687
|
|
760
|
-
angr/procedures/definitions/win32_msdmo.py,sha256=toeZCGypHY25N-_Jrb7Mn7ujzhu6R-zInEjCtDSL--I,4589
|
|
761
|
-
angr/procedures/definitions/win32_msdrm.py,sha256=TLNPKjP5EjyVJIS7wwOXqsV8foLdi32xyFecvkz8Mjg,39076
|
|
762
|
-
angr/procedures/definitions/win32_msi.py,sha256=KQK2oOwFFZBi-l4jqVkr6AhvwxHSY1VvqOMW2xrtPU4,103106
|
|
763
|
-
angr/procedures/definitions/win32_msimg32.py,sha256=FHfgcx1waOktH-bZvXQOp5hNNS1aJ-DPxHQU2LQGkYw,2796
|
|
764
|
-
angr/procedures/definitions/win32_mspatcha.py,sha256=4RWZKBnac8o1xGbXVfibrZFjYoR-URcZpQm5FptqGp8,11181
|
|
765
|
-
angr/procedures/definitions/win32_mspatchc.py,sha256=mJmI4T_f6-mAXnc4ADSXQV-WDuhM41Spx2-oFhHoM-g,6011
|
|
766
|
-
angr/procedures/definitions/win32_msports.py,sha256=b5fjS5z9wTbVTjbr6ISjjKY8vz984f9uVqkmHy2Ncl0,2844
|
|
767
|
-
angr/procedures/definitions/win32_msrating.py,sha256=rtgMLL1OakAMd6YJKFVravxGmiZ3j2dgcMZSPvPtEb4,7471
|
|
768
|
-
angr/procedures/definitions/win32_mssign32.py,sha256=Js6w1vMAyzYAmF_5pGXpaB334bEudqFmbYQy4z_qyg4,7594
|
|
769
|
-
angr/procedures/definitions/win32_mstask.py,sha256=Pfa3Kaiepxf-LIdAbNt3hrA_1Df4IB7EZC0N3Kd0zRY,1452
|
|
770
|
-
angr/procedures/definitions/win32_msvfw32.py,sha256=TI_h_zic1yhw1387X_VNnYDH3cyPmrkYzLY4QGRacr4,16749
|
|
771
|
-
angr/procedures/definitions/win32_mswsock.py,sha256=scRCesl7TdpHuttFe1G3hxspHBh3I9FjQsczEnsKeHg,9190
|
|
772
|
-
angr/procedures/definitions/win32_mtxdm.py,sha256=T7dsUmf_XsBzBLUKPg_LLqofqXftYNIggiMWqieRUMk,973
|
|
773
|
-
angr/procedures/definitions/win32_ncrypt.py,sha256=qeI8s4LBkGrEDlYdB-iyJmMI2cz9vPPIcoF-om5OzjY,19693
|
|
774
|
-
angr/procedures/definitions/win32_ndfapi.py,sha256=mepNtvM-c4pVhEgHTjWxdXYCIyK65g2HzeC2rRJuT4M,6200
|
|
775
|
-
angr/procedures/definitions/win32_netapi32.py,sha256=BFgaYbY6n2GjsvxscuUSNdodhX7Hi2JlJRhRd_Aq4eE,86057
|
|
776
|
-
angr/procedures/definitions/win32_netsh.py,sha256=eKauG29vIFdBi8OKZ7wfo24N3FReZQogo9FO8m_JDqU,3436
|
|
777
|
-
angr/procedures/definitions/win32_netshell.py,sha256=TrCVmKB6WHOR8NNR1yLVk9xSBSZ6P5Zi9X0_SXFR-Fg,1151
|
|
778
|
-
angr/procedures/definitions/win32_newdev.py,sha256=GTdBlOGJCVe_ptPjbexmSKkAkbuFtnvCrdIwAnAtKWo,6101
|
|
779
|
-
angr/procedures/definitions/win32_ninput.py,sha256=Wgf9_UbQ-11e6hC5cYC2OIqR7IS7tpojirAZDb3mrNo,11168
|
|
780
|
-
angr/procedures/definitions/win32_normaliz.py,sha256=vRWtKpNPixir0Dti_-qVQeJlfTF_wsSwyTai0fVJLQM,1684
|
|
781
|
-
angr/procedures/definitions/win32_ntdll.py,sha256=WoSDfB791lHc8AbcnxfKmLKElxfeY0PPH7Jtdr_adJY,27742
|
|
782
|
-
angr/procedures/definitions/win32_ntdllk.py,sha256=7we1qqOcv5Ab3FYdNDq4gwhWDxvZ-ppHQQoADbnEPes,1087
|
|
783
|
-
angr/procedures/definitions/win32_ntdsapi.py,sha256=Ro2Ak87mQkCRGiYzXvZNRltONGKW1P7m1E4TiEthhUE,35639
|
|
784
|
-
angr/procedures/definitions/win32_ntlanman.py,sha256=Wr4hmIBh6miRMDekIjZ3lM23Z4WCH999Y7VGo6Wv4rI,4407
|
|
785
|
-
angr/procedures/definitions/win32_odbc32.py,sha256=ac9z4gJERB1RSNsJuPkmQLxqSpZ2M2hsqK3P3ESbFIQ,94760
|
|
786
|
-
angr/procedures/definitions/win32_odbcbcp.py,sha256=5CTUTrx5jJhZ6YU1C3xOQYu5gHtYRe19AQC3WDadcAw,8509
|
|
787
|
-
angr/procedures/definitions/win32_ole32.py,sha256=fZp6nde7timtw0q2qvtB6-YkiJDK0KNT0qiH03v3eio,103812
|
|
788
|
-
angr/procedures/definitions/win32_oleacc.py,sha256=zBdP63xlxaUUbTAedTs9YWtlyU3WzIBCTZx6BPZP0-M,7007
|
|
789
|
-
angr/procedures/definitions/win32_oleaut32.py,sha256=HiJ38sQxoBsMD2TSzT1o451j-fymfjNkCtPU86xvOfA,123410
|
|
790
|
-
angr/procedures/definitions/win32_oledlg.py,sha256=9Sn_1LdydUk_yZoqWukj5UrUCTWbwDUbX27WropV83o,6811
|
|
791
|
-
angr/procedures/definitions/win32_ondemandconnroutehelper.py,sha256=c6SlcVqn0CNVAKIdoE_kVyDNhHVtH1wsVRfuwhuLN1Y,2609
|
|
792
|
-
angr/procedures/definitions/win32_opengl32.py,sha256=CxPm1WRfdGSZv8jPmRmHB2z2fFJ5cXK2PCymyb1svqw,75467
|
|
793
|
-
angr/procedures/definitions/win32_opmxbox.py,sha256=LVneobfoaQIo4h5jvXmR1psofrH4Q7V2L46-21QItXk,1461
|
|
794
|
-
angr/procedures/definitions/win32_p2p.py,sha256=u-ec1aOjUB183G1zpCptStwbvrBZG2b7dgH0g52iHwk,32523
|
|
795
|
-
angr/procedures/definitions/win32_p2pgraph.py,sha256=LQUrpzOAed2TGk9bFxi_PEjxjwxc8zpmmPQ-_WL3US0,12455
|
|
796
|
-
angr/procedures/definitions/win32_pdh.py,sha256=YvHQaEfXfxBQ9S4VyUYBuD1GYwolGrVU6p8zJl3w5Mg,39415
|
|
797
|
-
angr/procedures/definitions/win32_peerdist.py,sha256=UoxMPO0vsGQfb5UbdyPCbCIBh3UBNMbkw9lp2gO9M2Q,14293
|
|
798
|
-
angr/procedures/definitions/win32_powrprof.py,sha256=VZ-d-LjuG0nVRiB1SB4WvuV3f6pJ5ejZPIzYv3iu35o,32180
|
|
799
|
-
angr/procedures/definitions/win32_prntvpt.py,sha256=pVScH2YJIaZ_CgIw6S4yOC52rZC8zvHwnfjAAGfgdOs,5246
|
|
800
|
-
angr/procedures/definitions/win32_projectedfslib.py,sha256=ajfS8khR5_sZLRB-NGtYFe8kHpxEGoH1YvajVSlsh0Y,7998
|
|
801
|
-
angr/procedures/definitions/win32_propsys.py,sha256=ZuQQlaxf3NtGUDY4VGCVoqufoFqFKwA2owxLaP_f9aw,69946
|
|
802
|
-
angr/procedures/definitions/win32_psapi.py,sha256=juMw0iu20iiGvzSdwmMtQnEd9weI8cBGT7Sa2aendGM,10760
|
|
803
|
-
angr/procedures/definitions/win32_quartz.py,sha256=EDkQ4Y1snEJ6KIuBsWYp_p--LKpJR5tNkPiHN0veCMQ,1362
|
|
804
|
-
angr/procedures/definitions/win32_query.py,sha256=eSBTe5mht2Btd7e5_ChUnaG_8qNPUc9qOi-yP8VwaxQ,2051
|
|
805
|
-
angr/procedures/definitions/win32_qwave.py,sha256=p2kNv_2rx78PSV7sVAPOtP_jkluF07DpXc0bwCN0Nhg,5253
|
|
806
|
-
angr/procedures/definitions/win32_rasapi32.py,sha256=u2QYcekJprTR1L1FfN7WLGcJaro7Ew9BMLVnLj0TfjY,30989
|
|
807
|
-
angr/procedures/definitions/win32_rasdlg.py,sha256=5WloSQqQ5QTM7EzLAY6eUhZv0Pdb3GBpBjdP-uoW23o,2820
|
|
808
|
-
angr/procedures/definitions/win32_resutils.py,sha256=pBbiwo7YuEO3iIHxG4pSGTcCTIs2uWs74ysxs1IdFpM,54566
|
|
809
|
-
angr/procedures/definitions/win32_rometadata.py,sha256=H92DYnj8076jVAGJTCxhMgJl1fIjn4e_tZ1HHB7yp_I,1012
|
|
810
|
-
angr/procedures/definitions/win32_rpcns4.py,sha256=DbS1RlmFKFApeMurgFmUQLdqPsYpwnZZAOktvc88ABo,22447
|
|
811
|
-
angr/procedures/definitions/win32_rpcproxy.py,sha256=Rz1fHsr25PsoyEpdH3Q1kr8p9IADbFKx-l00_wVhB9M,1683
|
|
812
|
-
angr/procedures/definitions/win32_rpcrt4.py,sha256=rfoeU279f17m-7NC34DI_xxLknpqc7NQCBL1H0nXz6o,148359
|
|
813
|
-
angr/procedures/definitions/win32_rstrtmgr.py,sha256=NmR9B-1gNel70GFROISkWLFe6ofa1kU_qCSV741aAsE,4988
|
|
814
|
-
angr/procedures/definitions/win32_rtm.py,sha256=UTr_qwk6crRtjJpgFuDGqJ5TA0_TwVycQ5oTdfg_FCQ,36043
|
|
815
|
-
angr/procedures/definitions/win32_rtutils.py,sha256=4-5qyYDpEuiRyjH00wrtmtk4fKpehsuK_hhxVxtWR94,15136
|
|
816
|
-
angr/procedures/definitions/win32_rtworkq.py,sha256=n6Nwsh4saSFqbasN2tYIQdiCrpf-EKfG3QwBhJ5FsTc,9078
|
|
817
|
-
angr/procedures/definitions/win32_sas.py,sha256=rD71EFp4YjCTyvRoZ9PO2qjE4bn07HJHLZ_1EY2Gli8,920
|
|
818
|
-
angr/procedures/definitions/win32_scarddlg.py,sha256=LQiYy1336-wI8OnsPwgYdKrDFaHxhi_srQAx-d2mgjM,1646
|
|
819
|
-
angr/procedures/definitions/win32_schannel.py,sha256=2d87KyzxeFmu4SPdbMnCYtK_G3QrGAuj0UWiiIJVD5E,3588
|
|
820
|
-
angr/procedures/definitions/win32_sechost.py,sha256=R6tgeOXxa9UXchE7Q7rWLoM2EpUykvKJro10RM65SLw,1712
|
|
821
|
-
angr/procedures/definitions/win32_secur32.py,sha256=1waJnXEIParImvSasb6KcdCCqewBzrxFV-1TF8yHEao,37550
|
|
822
|
-
angr/procedures/definitions/win32_sensapi.py,sha256=-JUYSPY-SNqSb5mhX_L18TDj1V-5WgEEv4eZjWnZAIA,1495
|
|
823
|
-
angr/procedures/definitions/win32_sensorsutilsv2.py,sha256=tot952pnVUcIa4MdLuAp5s5oE6a99rqt54pHMc_zOag,13284
|
|
824
|
-
angr/procedures/definitions/win32_setupapi.py,sha256=bbdoxro7nw1k4uHG4UEEZW9Q_xsqd_gkMVdxUt2hRv0,157765
|
|
825
|
-
angr/procedures/definitions/win32_sfc.py,sha256=vK2b_qCKPsgChP6HGddOM9GRw3rwK3kfGcRnQfRRgd8,2546
|
|
826
|
-
angr/procedures/definitions/win32_shdocvw.py,sha256=9wPi2AHKC4v7fcu1Lnvm7jFOvsGOH20Ob4pDkk2JD1w,1932
|
|
827
|
-
angr/procedures/definitions/win32_shell32.py,sha256=cLHyZcbwnL9FSeUv_qU7T2RRdoeZQlbvMN0MGUcPuPc,81141
|
|
828
|
-
angr/procedures/definitions/win32_shlwapi.py,sha256=vdVVGH9AF26Jb1GwmvohrzCQv1GTqWRNOfEy5UKOeUk,108109
|
|
829
|
-
angr/procedures/definitions/win32_slc.py,sha256=MCbgmI8WQkA9P3kH3uFMQPBfYQQ3WJjUW0_h6-KMMDA,14350
|
|
830
|
-
angr/procedures/definitions/win32_slcext.py,sha256=bA_vKuQN239eMaJnRoxcNgtzKv_XvHM9QDwFsLhidRE,2850
|
|
831
|
-
angr/procedures/definitions/win32_slwga.py,sha256=4SPyU4ULnwUvZJoCWWv2xn74DcRY698wRka82KOvYsA,1143
|
|
832
|
-
angr/procedures/definitions/win32_snmpapi.py,sha256=djN2WenrKxHem5WoucZrGJ6sKVHO2HFP7YgbjHe6nok,6443
|
|
833
|
-
angr/procedures/definitions/win32_spoolss.py,sha256=ooajuYdOvrdvrYe97NLYiK2vSP2zS7ZplR90PVtMcxM,9685
|
|
834
|
-
angr/procedures/definitions/win32_srclient.py,sha256=Pad4q-gVCJThOLz9ijl3wYYaRooTIJ9IKWUevBJwy-A,954
|
|
835
|
-
angr/procedures/definitions/win32_srpapi.py,sha256=10YcpLlZnavG10lGDVHuEGrQcxSkJHCn3puw_k95S2U,3752
|
|
836
|
-
angr/procedures/definitions/win32_sspicli.py,sha256=WiXwcmZjnexqnksZc-AuVw7VuIYub1c6NJ-G4vtzd8Y,3032
|
|
837
|
-
angr/procedures/definitions/win32_sti.py,sha256=tOz61jVmyVaLT4JpURFH3YhAVO8rjTG5n0J9QAa3IbM,1150
|
|
838
|
-
angr/procedures/definitions/win32_t2embed.py,sha256=2YBVOJwQQ_wOFyOJzuYNuQDmT3Zh1GcmHdCvC4slZ8k,9597
|
|
839
|
-
angr/procedures/definitions/win32_tapi32.py,sha256=ow7aBSv17zebNx0YVvS_Bwt5jBl1zFBa6W96uasbYKc,94966
|
|
840
|
-
angr/procedures/definitions/win32_tbs.py,sha256=ulQYm6FlhYuLp6QBiUtltMVUqRjcErgEo8qY2qcrQVY,4951
|
|
841
|
-
angr/procedures/definitions/win32_tdh.py,sha256=I_gokENR_MNv-vzgeikzC3ohU3GxQymhP5eS3S_IS9k,11389
|
|
842
|
-
angr/procedures/definitions/win32_tokenbinding.py,sha256=_Q-aUd5rVM9ZoPrx8TVBKuL4IDIIY-ipTmkQsXFOeVk,4744
|
|
843
|
-
angr/procedures/definitions/win32_traffic.py,sha256=fIEvVL8yZBCMidYSTbskCSIOEvsbeTV2oALWjoDd3H0,8278
|
|
844
|
-
angr/procedures/definitions/win32_txfw32.py,sha256=nBygr_5JoLq_DLDpkQrxfJSNgovfkGWSUn8qN-h3PyE,4327
|
|
845
|
-
angr/procedures/definitions/win32_ualapi.py,sha256=aMlvjtjG_yuof479ovDXPVuGzx57P8xzw0Pd8UoLZl8,1627
|
|
846
|
-
angr/procedures/definitions/win32_uiautomationcore.py,sha256=vkOZf-ATv1Z3KgbBTOu8Z-lE8xJ1eLNt6L1cyzCJaPA,31556
|
|
847
|
-
angr/procedures/definitions/win32_urlmon.py,sha256=eEPET1xMauLs-qs1SAulnSGgtYwHf-TqU9s9EaIOVMI,27741
|
|
848
|
-
angr/procedures/definitions/win32_user32.py,sha256=BVFjT1SOS9EWqssq7HjeTSoRNNZ4dQAkbp-Ae7sYaCw,252469
|
|
849
|
-
angr/procedures/definitions/win32_userenv.py,sha256=OSb-SMFxDUwtRE5DFZ1isoMh20FLdBRYxTjmJR49dl4,15838
|
|
850
|
-
angr/procedures/definitions/win32_usp10.py,sha256=PB4kdRrNNz5K0ParHngXYpcFzxIjHVKqzrUxJfn5gJY,23757
|
|
851
|
-
angr/procedures/definitions/win32_uxtheme.py,sha256=anCtKo3aL1FB0l8qJ-w-7EjVHNkuAajqijI6d4hHyGo,31235
|
|
852
|
-
angr/procedures/definitions/win32_verifier.py,sha256=xBU9hVuucOQpN5Zl4bOUXSvesIXF3arp-8iLlHOTX_w,1567
|
|
853
|
-
angr/procedures/definitions/win32_version.py,sha256=nXGqm9gEKsYgXg0YJyHEuY_j0ok1th35KEXq4Q0HxI4,7235
|
|
854
|
-
angr/procedures/definitions/win32_vertdll.py,sha256=vDwO-R_eLiIzCY_YitUpabPTPX0s-DVO7dyHsC31us4,3659
|
|
855
|
-
angr/procedures/definitions/win32_virtdisk.py,sha256=x-6Vw8724j3zNcQ7WwiUC4WHUnP1Mc3hcAua9DYV5F0,13507
|
|
856
|
-
angr/procedures/definitions/win32_vmdevicehost.py,sha256=TOpd332s_1AHNY3LUBGu8NS2EHjLdiS6pRI6zOoyqPU,6032
|
|
857
|
-
angr/procedures/definitions/win32_vmsavedstatedumpprovider.py,sha256=4iGqCm2zL4xbJ40VJMCBQPeLgp0z5ovGR7EYNT8Hrr8,17637
|
|
858
|
-
angr/procedures/definitions/win32_vssapi.py,sha256=qr-CLe_M_l5speig_o3Wkz1X6Rqd69L9DQJCumdhTGg,987
|
|
859
|
-
angr/procedures/definitions/win32_wcmapi.py,sha256=EZhgKOmroNft2dVYc7yPGlIxQJpb9Z-IjJNCaspDHbo,2698
|
|
860
|
-
angr/procedures/definitions/win32_wdsbp.py,sha256=3P1LGX6_BKzaIBJ_a7Cy9yjo0U4BKBS8xzUuI-O17ao,3339
|
|
861
|
-
angr/procedures/definitions/win32_wdsclientapi.py,sha256=VCInvTBQJ2rlIuF44uNnJ65k3mkT9aiNNJXKjSmR1bc,13944
|
|
862
|
-
angr/procedures/definitions/win32_wdsmc.py,sha256=omnaXLGZnlE9KXG8mofYvVvpHbJ5lyDqzn21srmSfe0,2846
|
|
863
|
-
angr/procedures/definitions/win32_wdspxe.py,sha256=5vBvhEg_TKpTf4yRUT-HzVi6YxygDbwDnQPJJxqBxTs,13248
|
|
864
|
-
angr/procedures/definitions/win32_wdstptc.py,sha256=gbLnaYE-Wxn9PgME_zAPTTGzo3XZxCqk8JdVzFckslc,4149
|
|
865
|
-
angr/procedures/definitions/win32_webauthn.py,sha256=d-_uMLUCqaifzJiffkK-fsB1zJnj2qKRCuIEpBrAyG0,4708
|
|
866
|
-
angr/procedures/definitions/win32_webservices.py,sha256=YeVBGy58uJrMeG05O0RXk5qFNoiI6Ay9WcYqGRYiNFU,106080
|
|
867
|
-
angr/procedures/definitions/win32_websocket.py,sha256=MyMr0v6qHN1L8ljAagOTHwe1YBOFJUGF_GOHvwofzTo,7433
|
|
868
|
-
angr/procedures/definitions/win32_wecapi.py,sha256=IQYaYOItQBqbQw61BDcqZq-RhC6ZaJlsr1vp7Zuc1ZY,6419
|
|
869
|
-
angr/procedures/definitions/win32_wer.py,sha256=3kdOwUHIg6nLzqMwa4LMv9Yc3WOlujuzD8RS_vzIrXY,7708
|
|
870
|
-
angr/procedures/definitions/win32_wevtapi.py,sha256=y7SZd2lIWM2x5k5dbThJke_4JlyhU0ptdJtyEKCd1v8,16155
|
|
871
|
-
angr/procedures/definitions/win32_winbio.py,sha256=B9t3k1luZ9-GGBdikPXDfDdfDFkLzaEHb_PLXMGIg6I,21479
|
|
872
|
-
angr/procedures/definitions/win32_windows_ai_machinelearning.py,sha256=5jsosW4ULU3hWh_1puTjOxNSumtcaz65oF0P5M3-d-I,1003
|
|
873
|
-
angr/procedures/definitions/win32_windows_data_pdf.py,sha256=oliPDO2m96nkxegn7h6Bco72ecFJJW84XpABAP_1CB8,929
|
|
874
|
-
angr/procedures/definitions/win32_windows_media_mediacontrol.py,sha256=mbAFmjL1yaw-98eKGCO9mwaqhlaCZAAvY_IIiWHtayQ,3260
|
|
875
|
-
angr/procedures/definitions/win32_windows_networking.py,sha256=smIdze5NM_HfxqvgVvIwSRNNJ1wRESPfPLfeCOYxhQs,965
|
|
876
|
-
angr/procedures/definitions/win32_windows_ui_xaml.py,sha256=aXMY8BKfJDMxR5_x2mKrTkGI4zCh2vNK7pQkFS9SLZk,1722
|
|
877
|
-
angr/procedures/definitions/win32_windowscodecs.py,sha256=cscZr8S8WqAIRZr1ZcNQtmPJkPWzygHO6pxWQBoGjOE,4488
|
|
878
|
-
angr/procedures/definitions/win32_winfax.py,sha256=NniRF6Y2YutoVa4I4JP2aYF3tF_fxcZxD8gOheG4UmE,22678
|
|
879
|
-
angr/procedures/definitions/win32_winhttp.py,sha256=sqhsyrvrKRHl-FRw239HEOtJ3waXbTDl4Y9ieWKlbpQ,22808
|
|
880
|
-
angr/procedures/definitions/win32_winhvemulation.py,sha256=YYu1ad0N97tbPgKmktCV07vS3vNtMKg1EuzJcblEtV0,2752
|
|
881
|
-
angr/procedures/definitions/win32_winhvplatform.py,sha256=HgXHRsZspamIlVmiHr64OBZVCJogoE-OzlIRgzuCFuw,40942
|
|
882
|
-
angr/procedures/definitions/win32_wininet.py,sha256=UAbPeA5u1tSBFCbk55CW58vL6ey9CK_D2C_9DG6DD1U,116017
|
|
883
|
-
angr/procedures/definitions/win32_winml.py,sha256=Q2xpc2aMNCths6VV7rFJZZRSkAvyKv7LeGjpp-eFQqU,969
|
|
884
|
-
angr/procedures/definitions/win32_winmm.py,sha256=sv09zeF3q3UvJqQQEXQUbIMsAx9vMCz1aTq0GWmT4mk,55061
|
|
885
|
-
angr/procedures/definitions/win32_winscard.py,sha256=DCxZ5CRP-fjZfA0A8vc-5UD9DeqOe4rtkf3YFfTFQAA,29221
|
|
886
|
-
angr/procedures/definitions/win32_winspool.py,sha256=C0HRgo3dXs7bJEr3-9ZFAvyzKWh5SrBxvYzKiw99WOs,114656
|
|
887
|
-
angr/procedures/definitions/win32_winspool_drv.py,sha256=wq03NDbjB5fA_8UA9Ue2879su3J9LNEDTa1scy9P7PM,70042
|
|
888
|
-
angr/procedures/definitions/win32_wintrust.py,sha256=-JVdur80EujSMklQ2yILrHQJG7JPC6Vew2ox3OLMszs,22342
|
|
889
|
-
angr/procedures/definitions/win32_winusb.py,sha256=eMV6fq7bdo5sVdhrVO78f1Cbo-I_AW-7lMJ1UqcLtug,14539
|
|
890
|
-
angr/procedures/definitions/win32_wlanapi.py,sha256=E-ihyygZ5jsViVilge9lq9Qvo4oj8b9VW8h_8YibcHc,30095
|
|
891
|
-
angr/procedures/definitions/win32_wlanui.py,sha256=LjkfQmhSRd68Sr1SWQSOnQV1SujXSTNRxeimTXLRCtU,1412
|
|
892
|
-
angr/procedures/definitions/win32_wldap32.py,sha256=TVHLWjRl-442ywhUj5ItTbgDfTgMxq_fWbprSJpgO0I,97431
|
|
893
|
-
angr/procedures/definitions/win32_wldp.py,sha256=CjDVZWe5k9Kwy-kDk3UA6-xv2YcA1fLlyKpn_h_aX8U,4202
|
|
894
|
-
angr/procedures/definitions/win32_wmvcore.py,sha256=W5JgtYx_TPL24pUHEAx7hJryxacFKAhMJxl5MdZ037w,3239
|
|
895
|
-
angr/procedures/definitions/win32_wnvapi.py,sha256=-pVr_DvXU36nw65apxSanuFobPgwOINzMnJb4BofU_c,1385
|
|
896
|
-
angr/procedures/definitions/win32_wofutil.py,sha256=oUa9hOmD4CGtH0wPDLhos0yE4t8U3O7Y7VahV5g8SLk,5271
|
|
897
|
-
angr/procedures/definitions/win32_ws2_32.py,sha256=_RIuo9pS2dFwWjF8BsK6QWYC0ji2wl_KGyWJslf0m5M,65609
|
|
898
|
-
angr/procedures/definitions/win32_wscapi.py,sha256=T963XlKJFbRLp8kgEeHPUNxQmCpVUmXkzwfJonaWI_o,2275
|
|
899
|
-
angr/procedures/definitions/win32_wsclient.py,sha256=j92h9kGT8AzNaKMqBRk49z9JIx9Z0Kw1WjBpiAjluQs,1471
|
|
900
|
-
angr/procedures/definitions/win32_wsdapi.py,sha256=6oJauIdieVs_OFSGTLcq5lMLg8IdcDm8yHZqymGu4Is,11200
|
|
901
|
-
angr/procedures/definitions/win32_wsmsvc.py,sha256=n4_8UUz1PO9UzOxYE5P70aelorresA7RcOQ4iCHC71k,16329
|
|
902
|
-
angr/procedures/definitions/win32_wsnmp32.py,sha256=usM4rs7gEMgo_glVtTBVaVYqhYopRepdZAyJQibspp4,17715
|
|
903
|
-
angr/procedures/definitions/win32_wtsapi32.py,sha256=GRiHFd37S9h0jptc-2tudXtZTuOjKoiMNymMtFisDUs,25864
|
|
904
|
-
angr/procedures/definitions/win32_xaudio2_8.py,sha256=gHh_tTRCWNqcdY6j4xA6kEjHJY3GK5Ye5o1RW_IR8D4,1876
|
|
905
|
-
angr/procedures/definitions/win32_xinput1_4.py,sha256=3J0Iz0Kk8ny-j6Vs0eKM5YLeb2B991DuIGUYtDgkIrk,2916
|
|
906
|
-
angr/procedures/definitions/win32_xinputuap.py,sha256=84Ne__9Ad4y8Ml2cSlkBRKGvDLioy_zSPnclW_cmIQ8,4574
|
|
907
|
-
angr/procedures/definitions/win32_xmllite.py,sha256=7j1ttJ0QJQqClBUT7wKxNP-uhyaAla7hVjIKkm4_Qd0,3101
|
|
908
|
-
angr/procedures/definitions/win32_xolehlp.py,sha256=JWpWlOEulEQLAJnhh_wBdi-RpL6_TLO1Ve8neV-yS4Y,3094
|
|
909
|
-
angr/procedures/definitions/win32_xpsprint.py,sha256=By16JF8lXRuxqMtAMnjg7lcZEAQCaqzCCPILOFBz5kI,2387
|
|
910
|
-
angr/procedures/glibc/__ctype_b_loc.py,sha256=1255n2fuAJz_2O4ipkfL9E_7IknHubLz7Hba6L5Jei0,766
|
|
911
|
-
angr/procedures/glibc/__ctype_tolower_loc.py,sha256=MwjmJzdL000wnVUm-ZN1d9_RjzHKOI5_0oiH6AZUgIg,791
|
|
912
|
-
angr/procedures/glibc/__ctype_toupper_loc.py,sha256=n0l8L0XEy25tR0rlxbRnM-1aA3FDhq4jdq-R-ySzevo,791
|
|
913
|
-
angr/procedures/glibc/__errno_location.py,sha256=ZjU7u5edhIpckZ0-brxeId6hKKoS-qKYQPkrmUziEt0,157
|
|
914
|
-
angr/procedures/glibc/__init__.py,sha256=NjNtLNzO6f70tY9_LCv4-QRIC4g7o9y5CELaX1VUMyU,110
|
|
915
|
-
angr/procedures/glibc/__libc_init.py,sha256=PCMs8e2d_qFSCtk73sRkl7MUtR3j5OCnfEcJPQDdsb8,1520
|
|
916
|
-
angr/procedures/glibc/__libc_start_main.py,sha256=CJJAy39ZDHhZd-tCiGZh40JanshlaNsQoYyr0b7cUlQ,11069
|
|
917
|
-
angr/procedures/glibc/dynamic_loading.py,sha256=UW0xyHoblRcANUOcxlFvNlN3zp8bgntGTRikvuZqsvE,660
|
|
918
|
-
angr/procedures/glibc/scanf.py,sha256=C5cExqjIFnq0sAhLNLukaMxi-NnRJjDhf2QGA7IauwU,146
|
|
919
|
-
angr/procedures/glibc/sscanf.py,sha256=tWLCkAbKR1Q637WyXnt8n3in8b8xk1VZt-26Wd-BLI4,75
|
|
920
|
-
angr/procedures/gnulib/__init__.py,sha256=LfIHuKNyX42xAML-Y-sjy2gNzf2FoBB8Wf8CJHmZdOM,115
|
|
921
|
-
angr/procedures/gnulib/xalloc_die.py,sha256=abm61uR3bgsXROUKuWuinz8bl3dd2Nr4rem7ziLzhmE,181
|
|
922
|
-
angr/procedures/gnulib/xstrtol_fatal.py,sha256=ptcPdRUtn-2GaDiNIik8mtXhI2XdzeqZsn_jBF_Ft4s,239
|
|
923
|
-
angr/procedures/java/__init__.py,sha256=f3MFvKzdHlGoltkU6FyvYJgxL9vQp5IzAeRv0ldk4wk,1224
|
|
924
|
-
angr/procedures/java/unconstrained.py,sha256=CKLf37c8EJ40HXemu9EriRuaW35jJhOZTKv0itXCXbE,3381
|
|
925
|
-
angr/procedures/java_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
926
|
-
angr/procedures/java_io/read.py,sha256=Z5IyxTwAMbCsjs3PsUMBLyVJjz2Q8VdOf0vUMkd7SP8,335
|
|
927
|
-
angr/procedures/java_io/write.py,sha256=AoxDDV7FzyiM1Hm7w0JWclfQfpceDSeTfiWzOAokZfk,613
|
|
928
|
-
angr/procedures/java_jni/__init__.py,sha256=n-C_GTIfItDC6Q-2MoJ0YwCD-36XxNFRzl3pyudN8Jo,21448
|
|
929
|
-
angr/procedures/java_jni/array_operations.py,sha256=oSnQPSKTllACHVDfWuAfOsxvw1fHdbj6Q80WjEO098A,10365
|
|
930
|
-
angr/procedures/java_jni/class_and_interface_operations.py,sha256=g8j0gGUbB5BTr7bDJ2neAUKdlxQYv66WSiUPgaHLqaQ,1056
|
|
931
|
-
angr/procedures/java_jni/field_access.py,sha256=ijiIvp8H20_1j4erFevOt8-bu8z78e7Ko8KkMl2aYYw,4789
|
|
932
|
-
angr/procedures/java_jni/global_and_local_refs.py,sha256=eMGJD_QcmvdWPYRms_9GMXpAIVbwlDVJBP96jRwJHuQ,1095
|
|
933
|
-
angr/procedures/java_jni/method_calls.py,sha256=ophNygE5-IIVcf7h7z_YTkSTb0tDTdsgZYikhHAfcvE,9566
|
|
934
|
-
angr/procedures/java_jni/not_implemented.py,sha256=unMdHdiPbHzXgJOmn6cZcZrqCzlmGiU33ux-absdANk,932
|
|
935
|
-
angr/procedures/java_jni/object_operations.py,sha256=_H9DH_E19g0s9-TVFPvppW4FE38WCo0tA9EYiHEMqGA,2725
|
|
936
|
-
angr/procedures/java_jni/string_operations.py,sha256=gTHQorpRLxIXBgDw2M068U-UzSzg1KAntW_ugmUbVUQ,2602
|
|
937
|
-
angr/procedures/java_jni/version_information.py,sha256=WgF1Ma-gYJ2RgBRumS0S6OtkO-hTdUy3LYQqFuUOimI,229
|
|
938
|
-
angr/procedures/java_lang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
939
|
-
angr/procedures/java_lang/character.py,sha256=PgEAL3fUjbvSo1L3HCzL4oILDkMyuZ6RnbhBa5AkTNk,983
|
|
940
|
-
angr/procedures/java_lang/double.py,sha256=RmvJEnd1jusna5IyORRisNpRR42JohPnhMiBPCMCo1c,734
|
|
941
|
-
angr/procedures/java_lang/exit.py,sha256=NkKEz-QTs2StiHXjUG2CfbUQgZSEAVp6JLhmMCNiPys,255
|
|
942
|
-
angr/procedures/java_lang/getsimplename.py,sha256=9-HY12UG5zxG7iBRarUw8jarsRk5aPgCfnv_p036j7g,507
|
|
943
|
-
angr/procedures/java_lang/integer.py,sha256=zAXzwCveSZXp_NaeO8pRS8jJuZr3k9h-9BlsM13FRQo,1497
|
|
944
|
-
angr/procedures/java_lang/load_library.py,sha256=sARG8lowJ9qoGjyl5H91EVLGTzgKgXVIj2rVHwIacbM,241
|
|
945
|
-
angr/procedures/java_lang/math.py,sha256=syxOBAuW5B8hJ9lI2Ydm5nKdCEBgIs5-ur02k8iYJq4,346
|
|
946
|
-
angr/procedures/java_lang/string.py,sha256=tIRAriJbKZhYPuP5OiupBfPLHv1A0LbuNb4pD_S7uFg,3144
|
|
947
|
-
angr/procedures/java_lang/stringbuilder.py,sha256=aiIGk15If7AupgdGi8xCdTbq83H9eCFaAK8pv1G4n-4,1579
|
|
948
|
-
angr/procedures/java_lang/system.py,sha256=3t0LeSGKFQt71iz3O3xK6zn0s5LXTUciA2hTJinEI3c,413
|
|
949
|
-
angr/procedures/java_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
950
|
-
angr/procedures/java_util/collection.py,sha256=dBV6H13i1IOZZz7Gl0ODO2PxawjlzFTcy1AE3vTNP1U,1229
|
|
951
|
-
angr/procedures/java_util/iterator.py,sha256=8mgmAA0fbBWBMdr8CLN0_htW6WM4vt9adg9oScCAaxs,1605
|
|
952
|
-
angr/procedures/java_util/list.py,sha256=CFEbrGS6Dfc-kNt_4mBNFAvSC-6PeCkAuh5Z4bz8OpA,3727
|
|
953
|
-
angr/procedures/java_util/map.py,sha256=1BKnB_bVCAuv-rpNw0g_mG2DepykUffAypGU7gr-zaY,4870
|
|
954
|
-
angr/procedures/java_util/random.py,sha256=KiwYnf14DgWX-SN-gIGFk_t4VHKZudhNrslHv4CKcQQ,379
|
|
955
|
-
angr/procedures/java_util/scanner_nextline.py,sha256=ruX0d0H_tf25gNXXkDcPQzkU7LBOfKzsNP4uXmfaxgk,797
|
|
956
|
-
angr/procedures/libc/__init__.py,sha256=adwOD6zMckO8qKPIUAeJH8hyj3eufWtJrGTG4_PLl0o,95
|
|
957
|
-
angr/procedures/libc/abort.py,sha256=HyQGfmolu3xxvc4Ea_2yGr8R9LkSN8plVGQZAlpBiQc,105
|
|
958
|
-
angr/procedures/libc/access.py,sha256=J61O_Bav7SoMYiAeqWT9SEsC7Hb_Lh7WISzP1tXmqLk,281
|
|
959
|
-
angr/procedures/libc/atoi.py,sha256=WRiyMFtxUr4lCiLWs9ufGUMHmWrPC1gtpXHPDIVSkGk,365
|
|
960
|
-
angr/procedures/libc/atol.py,sha256=BpCED2a6fzBhses4yLIEJMz1v-q8VQW_qSI6tee_b5k,296
|
|
961
|
-
angr/procedures/libc/calloc.py,sha256=9SulSF9DvewpSYyfdGE73csSqkvP-0ug1prch2cVjyc,185
|
|
962
|
-
angr/procedures/libc/closelog.py,sha256=l7ePuXEizhN5kooxqHaZ0tttWxqsYf_aenQEN0GTgvc,183
|
|
963
|
-
angr/procedures/libc/err.py,sha256=SgY1IegLdqHJ149r8IhWmOGvFfhqNIibJNd2XcdCfBw,430
|
|
964
|
-
angr/procedures/libc/error.py,sha256=F6CR9KkfXt38Cu-r-CP3ZOFRZfGGYULBTaKTJOClXzQ,2276
|
|
965
|
-
angr/procedures/libc/exit.py,sha256=B59EAcDO3-0jqD4aW6LFlSabFeQBNmrv-wEsJgFzkhc,198
|
|
966
|
-
angr/procedures/libc/fclose.py,sha256=CV5BFGRNSNmuBLEk5WUfjt1D98kEmXthf_OMaz4zglE,590
|
|
967
|
-
angr/procedures/libc/feof.py,sha256=ACrZ6vy9wdEB8MYRIqmDPx51O49Rah2IbfQNBmGkFOc,567
|
|
968
|
-
angr/procedures/libc/fflush.py,sha256=mS0tbmyfzNb8ZmeGeNhxuqG-mQxc0YFO8OuIctowKrA,223
|
|
969
|
-
angr/procedures/libc/fgetc.py,sha256=knLw_tgNXjXsn81RQ6dWNAIUs2vROhpD6XSKPCnujRg,621
|
|
970
|
-
angr/procedures/libc/fgets.py,sha256=qzIoqtEEWXjKqGqKiYuvDQHtdNit4bW4gmLyN_nqUWI,2799
|
|
971
|
-
angr/procedures/libc/fopen.py,sha256=tqc0ftcm0tOUqRKwA426UdQ6YM--4aA2fyATRs1q6ZE,2593
|
|
972
|
-
angr/procedures/libc/fprintf.py,sha256=VMn27CqikM0eCc_b1btVx8LwrYO42ZtQZBDYYkNsTmU,730
|
|
973
|
-
angr/procedures/libc/fputc.py,sha256=nz2ry3vRnbca3DDdMdu4yVYpvvrDtNDwLx2nvHX73tM,537
|
|
974
|
-
angr/procedures/libc/fputs.py,sha256=G0jGkMn2y3-fKrlsdSGKBuFaUAnVsAk0e7XDQUUrGLg,662
|
|
975
|
-
angr/procedures/libc/fread.py,sha256=709ut5fB3ot4Mf7hymNCt4tBIzj78lwVXmekzWwl--8,609
|
|
976
|
-
angr/procedures/libc/free.py,sha256=XOu2JyeEN-vkLxFilnBj4QsA9IM3wSuzKrSb-rpX7WI,159
|
|
977
|
-
angr/procedures/libc/fscanf.py,sha256=NY1jWFc6-1ZUNvzqcOrTM_OpEMwJc_uLTK6iJdKCCY4,649
|
|
978
|
-
angr/procedures/libc/fseek.py,sha256=RZ3_DXtVn-qK4NTSs2nHk_gvmI3kHetISLTv4ISFRcs,1090
|
|
979
|
-
angr/procedures/libc/ftell.py,sha256=nts_8ZEeXAy6GwdVPscWv0XOKK0KKdPduMYFhcQSb2w,515
|
|
980
|
-
angr/procedures/libc/fwrite.py,sha256=DQZXZxNaS6ITzTjaJcYcB96TuTg6kjXzJtkhguEKgB8,508
|
|
981
|
-
angr/procedures/libc/getchar.py,sha256=kqReTJbPJBXMi4KbKx9j1Eo8POT8GtnQXwCFLM1I2TE,315
|
|
982
|
-
angr/procedures/libc/getdelim.py,sha256=oFs3fAh_dtjX529gXOwFDyr4KQfJndgE1YAH2MoolnI,4044
|
|
983
|
-
angr/procedures/libc/getegid.py,sha256=adL5NITqxHuuDfu1fF5PZfnx6z7nFqceAn99HTbEhLA,126
|
|
984
|
-
angr/procedures/libc/geteuid.py,sha256=uWRu8xYzXArbBtBO6EVKLSdDZ2y2ytt1Pvci9PbGgj8,126
|
|
985
|
-
angr/procedures/libc/getgid.py,sha256=fW6Qltyf_ejMEw_CaMk18R3UlONfnyvoar59C5QCJxk,125
|
|
986
|
-
angr/procedures/libc/gets.py,sha256=Dhrtn0c-K0X4k7wmsZnx6XZhItz7ZUMWprWnr833iEw,2632
|
|
987
|
-
angr/procedures/libc/getuid.py,sha256=SD3VCKb5Y7hxiHTmPvPyRSmP-AwCojOAVV3izYT5WvQ,125
|
|
988
|
-
angr/procedures/libc/malloc.py,sha256=fJanWcX_hH9PTw8VV5WBA8BBsWpSdIw3Ah3LUV1HxCo,221
|
|
989
|
-
angr/procedures/libc/memcmp.py,sha256=t_JBeE0PKLPndkx78LCoH1FCOdtXrJaqUfDblSzZsls,3063
|
|
990
|
-
angr/procedures/libc/memcpy.py,sha256=qYCZw56dtDXfoN9KPNtZgtrBqLNxxsrUZpJrrHVOcY4,1460
|
|
991
|
-
angr/procedures/libc/memset.py,sha256=IuMLP9RRAFOlW_W08gc28TSxGKHcf2o8cm7Obz8IRtw,2361
|
|
992
|
-
angr/procedures/libc/openlog.py,sha256=vdJ0iVQjxzV8o33HbPEZmXcydQog9r3UYz5pCfByEMA,206
|
|
993
|
-
angr/procedures/libc/perror.py,sha256=sV7QmZkK0JSoZKtTilPOX67SO-p3X2YeMFx7kxfesGU,333
|
|
994
|
-
angr/procedures/libc/printf.py,sha256=SYnTZlaatj9c4StausQvnRmVbmYjneMKhdM7z4IIxdQ,846
|
|
995
|
-
angr/procedures/libc/putchar.py,sha256=Ib1_nasYSbAznznmLEbTudqsEJ-ayYzeTvGPGVEynQQ,275
|
|
996
|
-
angr/procedures/libc/puts.py,sha256=PejyfkFnFh7ehuYCvEz4k0HeEGOegPAauA1dv7Xr18w,455
|
|
997
|
-
angr/procedures/libc/rand.py,sha256=nSxKdppVlpNZ79kGiwcYj6aQrw_H3Qrh5HTOyl8TpEY,196
|
|
998
|
-
angr/procedures/libc/realloc.py,sha256=Kexxxl6xxKAWKpjma3w5NuFn-RnHV7viajD_8vcalrY,167
|
|
999
|
-
angr/procedures/libc/rewind.py,sha256=4a6Al7I-cSoPQuhwYdquhzp0PkSe4O0pmNKykl6Vp1Y,237
|
|
1000
|
-
angr/procedures/libc/scanf.py,sha256=eh8sjNQCMYVp9BuSeZBHdkj5jDmZ-vd2dN7qpS5Gt78,513
|
|
1001
|
-
angr/procedures/libc/setbuf.py,sha256=LUKsBIoXc6NlYwhZS4r1pFlHXWqWr4JpT8N6VEk9Q18,150
|
|
1002
|
-
angr/procedures/libc/setvbuf.py,sha256=ZyBgRMNDpxHU2hzQsOxDz-osUm_kFqUyESN45nFehf8,110
|
|
1003
|
-
angr/procedures/libc/snprintf.py,sha256=Ojf9ABnzEQQOqDfhvfwwb9pYHrtevkmMvT-t8Q32HOc,1171
|
|
1004
|
-
angr/procedures/libc/sprintf.py,sha256=ex9Cz939IfRhHAPFkeBePt8BKtQ6lRw7jIrZgMnKtWE,681
|
|
1005
|
-
angr/procedures/libc/srand.py,sha256=UxsxFKTfjj8pNeBKRI0Oiwz1SWtUm557BqQiT4muiaQ,90
|
|
1006
|
-
angr/procedures/libc/sscanf.py,sha256=Tep-qkWpoxF7MrfnnYIvjU3m_B6JGAnbuKLJKTYHLeE,353
|
|
1007
|
-
angr/procedures/libc/stpcpy.py,sha256=VkoIUjz2zx2j6q1sbOUmPP4VpvOslD1sgVZy0qyUR58,485
|
|
1008
|
-
angr/procedures/libc/strcat.py,sha256=ATDdASGrrQJrRX9fRCHUGKIyR_RBTW3uyV7aU5FIH9o,445
|
|
1009
|
-
angr/procedures/libc/strchr.py,sha256=vHTrv4chZf7efYLQagModZbhS6P8Dz-4qhpd4-ALE-Q,1768
|
|
1010
|
-
angr/procedures/libc/strcmp.py,sha256=YE2puSXhirVBwuvdnToKCE_18sRha3wEmAP99A7umdE,824
|
|
1011
|
-
angr/procedures/libc/strcpy.py,sha256=VPUG_bqZLbw6XtNdatuCPUXEzNzC2ByMZhPHaM3-U5E,412
|
|
1012
|
-
angr/procedures/libc/strlen.py,sha256=_uiin0alah6j6wxQa8fcvZZktTrRV5vNp2KT5KIsrqY,3546
|
|
1013
|
-
angr/procedures/libc/strncat.py,sha256=wtsKB4DCBYyGlRDzsjzyqbLhnYkyCebcSHe2akboOwk,501
|
|
1014
|
-
angr/procedures/libc/strncmp.py,sha256=PVIWJP1SV16TfiwZEtCR9LthIxKeBJ173TLKmMWhyPo,7343
|
|
1015
|
-
angr/procedures/libc/strncpy.py,sha256=ckt2c0M3sEPOPgJ3UUqRRcRXVHIeo_2wi5U6ID1K3IU,597
|
|
1016
|
-
angr/procedures/libc/strnlen.py,sha256=bKk5zbyxz7pQY92r6VdBltipngh10gULSsnbZvEgbPE,384
|
|
1017
|
-
angr/procedures/libc/strstr.py,sha256=bArKIX2XCDZGjMUqMNxe-JT4VuxuapmUVmUS-KVwk0c,3623
|
|
1018
|
-
angr/procedures/libc/strtol.py,sha256=FGf-0q_l16_qG8_RdL4Hv1J2KtlRCAzJe7WJan90CXk,11557
|
|
1019
|
-
angr/procedures/libc/strtoul.py,sha256=p6UQj11wCeH6njzKncaVXEvYAuCxE002N8dQlwCELGQ,273
|
|
1020
|
-
angr/procedures/libc/system.py,sha256=GClcLQFSMnr00emxV8cs57IBncqsVuiyqo5xSWlpkyU,340
|
|
1021
|
-
angr/procedures/libc/time.py,sha256=37VNrLz-0YfZFvfJ02XXibQWT2toiJqAV3E3atNgfZA,264
|
|
1022
|
-
angr/procedures/libc/tmpnam.py,sha256=pkzrqFyVLDhVns5znnJKNuVzqktvB0xm16J0ZNiTEWk,512
|
|
1023
|
-
angr/procedures/libc/tolower.py,sha256=g8NSroQFSJ6R42jzkfP3dRuWAMFWkbqJ-2jDtdEZpDM,202
|
|
1024
|
-
angr/procedures/libc/toupper.py,sha256=ZZX1aaWqW3Ifoyo1xkX-XD6KWjVuwpiZKU-SMx3vOd0,203
|
|
1025
|
-
angr/procedures/libc/ungetc.py,sha256=zg-9dq4IdYvY695ul_YGoCp4RhUnvWzrPMKT1X_zIlY,625
|
|
1026
|
-
angr/procedures/libc/vsnprintf.py,sha256=Tt3umrchAuoCJFMJ8mPq5TuM92l5RyOBV-J64OfJ7Ms,415
|
|
1027
|
-
angr/procedures/libc/wchar.py,sha256=5p9S8gQTH7aha3lF10bsBIRtFwDri6alq5mEtr5zb8M,538
|
|
1028
|
-
angr/procedures/libstdcpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1029
|
-
angr/procedures/libstdcpp/_unwind_resume.py,sha256=jkqrDcqAv3me-gv493yfVKQki2ml3pVD0FoXwN1S28c,181
|
|
1030
|
-
angr/procedures/libstdcpp/std____throw_bad_alloc.py,sha256=DMy42sFf_PmvMwSsHm13baWfjp6e_QGnDYS6_HIPj94,321
|
|
1031
|
-
angr/procedures/libstdcpp/std____throw_bad_cast.py,sha256=YGlKLes-Ehl1XF6v1nuMIWsHUk253WrWy9YQhHNERrI,320
|
|
1032
|
-
angr/procedures/libstdcpp/std____throw_length_error.py,sha256=F-Q_CbpPiAvsAoxtON2XzvSMuCC2HSUKS6RLSRa8Z8k,379
|
|
1033
|
-
angr/procedures/libstdcpp/std____throw_logic_error.py,sha256=JvHFQDUdTLU5J3c0yohhwDBMFAd-mgaQescx2CsW1sc,378
|
|
1034
|
-
angr/procedures/libstdcpp/std__terminate.py,sha256=oRjSFPH2V5L9v7uQQxbjjmG55KJvkgqbyiZh19zsiGM,268
|
|
1035
|
-
angr/procedures/linux_kernel/__init__.py,sha256=mxKcfdAKNQqpejNlUlOH6HCz9FhZA2vRsZ3VhX7RwCY,111
|
|
1036
|
-
angr/procedures/linux_kernel/access.py,sha256=MulucWrwFiT7dTGah1bzbwLR8caMSGgt4mczBsmSCJA,569
|
|
1037
|
-
angr/procedures/linux_kernel/arch_prctl.py,sha256=kar5YvkkfeW8O1gf6NvzFktBvw9x2cDk66SYNbvnbNI,1045
|
|
1038
|
-
angr/procedures/linux_kernel/arm_user_helpers.py,sha256=B4V1YKDodPu65Nd4XH7jTLEueR-DLmbPefOmSimEKfc,1558
|
|
1039
|
-
angr/procedures/linux_kernel/brk.py,sha256=8QvMgwq07TnvpfeUDCtegyta67d0gcmBkVn6AUkNh7w,329
|
|
1040
|
-
angr/procedures/linux_kernel/cwd.py,sha256=VKzTRNA1vCS35C67K5qi3ByUle8-f-mgV2gftv_W2Wo,719
|
|
1041
|
-
angr/procedures/linux_kernel/fstat.py,sha256=khXHCbmQWaDb-JUIwO23pu1f_l9pRcQnM3cp3Hq6Oos,5047
|
|
1042
|
-
angr/procedures/linux_kernel/fstat64.py,sha256=rJlGwGXGlOvVeOBAHDvAunXxsX3WXGvfGkONx0-YI5s,6242
|
|
1043
|
-
angr/procedures/linux_kernel/futex.py,sha256=VdJELW87dPcJiIhJEDB2llXLHBD68EHEbK468ORBYj0,524
|
|
1044
|
-
angr/procedures/linux_kernel/getegid.py,sha256=Ga2i8FH_tKPrIwj8R-6Bg0a5_7jEbgvzCFd8KDZqbpE,375
|
|
1045
|
-
angr/procedures/linux_kernel/geteuid.py,sha256=3aRjgiNqplih7ysIz5KgK3Dch8vjpH-IrfiL-aGMgfM,375
|
|
1046
|
-
angr/procedures/linux_kernel/getgid.py,sha256=vGF3e0PZ-xGc80ktPuT3yPlU_05UbJ5XJUINAlZ9kjg,373
|
|
1047
|
-
angr/procedures/linux_kernel/getpid.py,sha256=cqgIPHaQ5WwZ2E1LVYx5FZRppoxkKYj_5AXSC_MQEGw,229
|
|
1048
|
-
angr/procedures/linux_kernel/getrlimit.py,sha256=fND7Trkg_Mol9vdpksFi81AgFtUOyqsh2gsOtmCQVXQ,779
|
|
1049
|
-
angr/procedures/linux_kernel/gettid.py,sha256=oX0a4Aa2iikyI8D_jeuJT7H3hcQv90vhnxsg0E0YQQ8,141
|
|
1050
|
-
angr/procedures/linux_kernel/getuid.py,sha256=N7i9CHoMsIQ4gVAlZSmR1aoKGTjKbBLaZVeYu4ddQzA,373
|
|
1051
|
-
angr/procedures/linux_kernel/iovec.py,sha256=VQK7PEJcWhAGDF_K_wvHL04xCuS8Q9Om2-VPaa8eSOc,1450
|
|
1052
|
-
angr/procedures/linux_kernel/lseek.py,sha256=KR8HwzDXnZqdBYmirs6rsbfmX3ovkPrJ26Eme3yIIBo,1196
|
|
1053
|
-
angr/procedures/linux_kernel/mmap.py,sha256=hwuf_3_Vwno_Va52AMmWBIubm4LmabqLuFuJQE_r8Wc,484
|
|
1054
|
-
angr/procedures/linux_kernel/mprotect.py,sha256=NB9NhRfqkF5GO-ulSBC5wedSpRceKeEJVqlSUhqMnG4,1396
|
|
1055
|
-
angr/procedures/linux_kernel/munmap.py,sha256=MCaoD3Slv4sE508pblQSH-uSrRk08_RjGxVRc8ySLjc,186
|
|
1056
|
-
angr/procedures/linux_kernel/openat.py,sha256=5i9KkYvvJDCpIxx6ffJtxtn0asNP11S-r7okAwv2ZxQ,1076
|
|
1057
|
-
angr/procedures/linux_kernel/set_tid_address.py,sha256=L5-xZeRvhu_4zFMa1Uc133ADdxfBFHnlTgIezSoL7b4,205
|
|
1058
|
-
angr/procedures/linux_kernel/sigaction.py,sha256=IVKtCZEJyMGCTlhh5qZh20v7sy8jDEjGky_2V9szIZ8,614
|
|
1059
|
-
angr/procedures/linux_kernel/sigprocmask.py,sha256=ZuvyUn675pL90V5vz2XaM2a9hw0hwWOSTFkIYWGMurM,734
|
|
1060
|
-
angr/procedures/linux_kernel/stat.py,sha256=7gMgEfTq23QnFj07dE_WKb0oV4wUU4EtZLsqmO1wsBU,666
|
|
1061
|
-
angr/procedures/linux_kernel/sysinfo.py,sha256=hcjsr5d3c0UixgwOFK7jV9RGYipsM8E2Z_mhzGH3_As,2205
|
|
1062
|
-
angr/procedures/linux_kernel/tgkill.py,sha256=O6aHYIAbhcIV6RK-g8SHJbaVzocliecw2LCataQOY0I,242
|
|
1063
|
-
angr/procedures/linux_kernel/time.py,sha256=c0lGngmf7szkP1Pd_sDzvxw_7LD7wFND-HyGN99qhv0,1001
|
|
1064
|
-
angr/procedures/linux_kernel/uid.py,sha256=61dWwwbIoRJ0Xmk5nyO7e2fm45Sltt2rz2GwtIPGKb0,764
|
|
1065
|
-
angr/procedures/linux_kernel/uname.py,sha256=r4KHQgN_7XFgefgDwxOC5WwIPu4WQxu3Su1O3spur_w,1127
|
|
1066
|
-
angr/procedures/linux_kernel/unlink.py,sha256=yJvmOi8jBoFdNsaHsr4xFwcE688AiyDdFqBmq65X4hk,708
|
|
1067
|
-
angr/procedures/linux_kernel/vsyscall.py,sha256=dKNFRWoRfOhAftYv021c_cGoPzPbj5uVpN9YbHFFMYc,492
|
|
1068
|
-
angr/procedures/linux_loader/__init__.py,sha256=2hycjSB-GjXuMj1bfp2KuMlKjqVyNs2jPI0uI5S0XZY,115
|
|
1069
|
-
angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py,sha256=Mb_Q_cVkHmqBxMp9QqGP8_7MDpf8-oalIln7niqafwY,129
|
|
1070
|
-
angr/procedures/linux_loader/_dl_rtld_lock.py,sha256=QjPXAqWcIbOThZeU4Sc1xOuomoXLYcs7zDPtfZGmkto,337
|
|
1071
|
-
angr/procedures/linux_loader/sim_loader.py,sha256=gtrzwo8mY1QBMX7Guj7roSV7m4iq6p3dJbU3Uz9OQvc,1876
|
|
1072
|
-
angr/procedures/linux_loader/tls.py,sha256=MJDkoQvtl1ay4Lr0lRf1wY_iQKzMFSu4CGVXkiKhyOY,1548
|
|
1073
|
-
angr/procedures/msvcr/__getmainargs.py,sha256=fDfued0njYMVd92S0IY7SDL6xfcfWHQgKwdxM3mw_2s,691
|
|
1074
|
-
angr/procedures/msvcr/__init__.py,sha256=HZKMuGEl_geCewMyOA6IDVE9P1G2gl4SKskj6ZclG8A,116
|
|
1075
|
-
angr/procedures/msvcr/_initterm.py,sha256=K103geqVpAlzXT2ZVVBJNthWYUGbI8DYHmTKQd4Qy2s,1363
|
|
1076
|
-
angr/procedures/msvcr/fmode.py,sha256=NaGmFkdyuQyQJ8ir-UoKkD_7_Nbhy6jDyofAPbjYY5c,758
|
|
1077
|
-
angr/procedures/ntdll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1078
|
-
angr/procedures/ntdll/exceptions.py,sha256=rWWaMKq2_G9m8YamTiaRzHQLhCPmwqxJUZ5ekp0VdlU,2699
|
|
1079
|
-
angr/procedures/posix/__init__.py,sha256=yg0t_r5-yU38GbJmr2QhhNupgoicttNLkuxFfu13_FY,66
|
|
1080
|
-
angr/procedures/posix/accept.py,sha256=uN4t-o0zDrKcgb4hG0hmgYUyUAq2E5PtwpsZlcQBha0,1246
|
|
1081
|
-
angr/procedures/posix/bind.py,sha256=B0l6osCAnYRNvlyUgS2MLxEPnE6WZaqBjJmpiU91p9Y,316
|
|
1082
|
-
angr/procedures/posix/bzero.py,sha256=k76AfKb3qZHyhheyvJaWP_5ydK3xSdhVD2Nn3Qq_cBw,180
|
|
1083
|
-
angr/procedures/posix/chroot.py,sha256=Rngx2_PlhgcTHf0JMYsTSm-KeEuB2afRM52kMKNZHn4,739
|
|
1084
|
-
angr/procedures/posix/close.py,sha256=vde78Fm_LQEmlO8vwcWwCg_F9etfXJGFKP4py4UiBaE,200
|
|
1085
|
-
angr/procedures/posix/closedir.py,sha256=fM668PzGis7QP0iarfDwUqpvgIlq6HTiW7R58gLXwuA,64
|
|
1086
|
-
angr/procedures/posix/dup.py,sha256=U4UDBRyUHJ8GUe0QzDpbh_NXYJye_9W12XJYC7Cff_Y,1917
|
|
1087
|
-
angr/procedures/posix/fcntl.py,sha256=s8GQ2xqdN2EX4ONvAzIgAHeEMxRy21u1aIaxvizxhhk,314
|
|
1088
|
-
angr/procedures/posix/fdopen.py,sha256=l26BMeVcKSL90eKRYDvPiN41OJdUvnHyhoA3Ip126JI,2836
|
|
1089
|
-
angr/procedures/posix/fileno.py,sha256=rIERNraGiC89rp__wBndu0Jl6azwKIkCWw8tbTCHVyE,414
|
|
1090
|
-
angr/procedures/posix/fork.py,sha256=SqdiFXySbZF2RTdiDppA6pTHMiopr46Y8vJJD2da1qo,268
|
|
1091
|
-
angr/procedures/posix/getenv.py,sha256=cnB-cZ2D8nn_iVBIE2i43resZWCcSu4AdamGRffg7MA,1383
|
|
1092
|
-
angr/procedures/posix/gethostbyname.py,sha256=PEtNZ2o1XItLjlxMpw_M886Gl70iCvuaQI2zxRaiR9s,1573
|
|
1093
|
-
angr/procedures/posix/getpass.py,sha256=7q94Ew_vMeaT_J6dOapSt9_0L-7HM3oqAtW5HvSD9dI,484
|
|
1094
|
-
angr/procedures/posix/getsockopt.py,sha256=-4Hsi8MSxna_8H2ttrzwl9cDPg0Vij-xzeBg0hvmTtc,187
|
|
1095
|
-
angr/procedures/posix/htonl.py,sha256=QjskXfh8QaBgI-ND1l_ytexOH5qXukbatIKbJ0mIHSw,295
|
|
1096
|
-
angr/procedures/posix/htons.py,sha256=8kVR8a49T4wAN-UmVWjca9vao9AMU-1BSkIf1xomsp8,295
|
|
1097
|
-
angr/procedures/posix/inet_ntoa.py,sha256=1hh-e9jycPaZOJEgEI_M53mDRncu81-dDcEJueeuSSg,1926
|
|
1098
|
-
angr/procedures/posix/listen.py,sha256=eC8IkF6MPQxJUgN_OsPEQIptRzoWRPGf3hSQyt5u9JU,315
|
|
1099
|
-
angr/procedures/posix/mmap.py,sha256=ki8q15tJGPoeeyLVBscKhXI8BDlGW3dXeVgwboAXiW0,5039
|
|
1100
|
-
angr/procedures/posix/open.py,sha256=rNwG-ul9IhwE7wfXmJG3Sjy_qE3GXA1q3xGQdB0JkWQ,537
|
|
1101
|
-
angr/procedures/posix/opendir.py,sha256=4ViffR7Kgv_CioSDyU3xfsu7orqvF1UqnZscAtPSsJc,291
|
|
1102
|
-
angr/procedures/posix/poll.py,sha256=x-kr_7BzsPtBrkANgFe2Iy8-78rjlmosC9NmWym7H6g,2196
|
|
1103
|
-
angr/procedures/posix/pread64.py,sha256=CgzwaC3ehBy0UZfRCRpH34ab2TtpTLqcTA9D8V41F_Y,1355
|
|
1104
|
-
angr/procedures/posix/pthread.py,sha256=gCBQafFkn6J9r4LZPWp2CQJxeUgOUAZOLeUTmJsTqdo,2402
|
|
1105
|
-
angr/procedures/posix/pwrite64.py,sha256=2gLmjPGiBYXsskfeBemeYtDEkeYsGnNN6JM5bmQJMAk,1362
|
|
1106
|
-
angr/procedures/posix/read.py,sha256=5LogcGdNLoKu1wUai2mudKESCOwL1tNn7Bfxts2rxNo,252
|
|
1107
|
-
angr/procedures/posix/readdir.py,sha256=RSuy5F5m-bTENQcZLtA70lh42iN6nnSab1L0LxeFLqw,2128
|
|
1108
|
-
angr/procedures/posix/recv.py,sha256=pX6zi-XdSnOIjC4MMvWOvaCwPmjWQgJZYqsFp-BpVVg,275
|
|
1109
|
-
angr/procedures/posix/recvfrom.py,sha256=or0hRNF-iB4gyilATd8qH8cbckgRRL0O1Z9-S0edDjU,298
|
|
1110
|
-
angr/procedures/posix/select.py,sha256=A8sR_RnBo3QX62jtM4ksrKhe6UESJIgyMr02BDdG4dY,1965
|
|
1111
|
-
angr/procedures/posix/send.py,sha256=VErGdcUxnDUD0Tzg0i-UFfpoe3oVmfkrbgmBOv1kGGs,706
|
|
1112
|
-
angr/procedures/posix/setsockopt.py,sha256=j_8hRgTpKtYhmt-g84Mc8YZyngY-o6deogS_X0Dc1Sk,167
|
|
1113
|
-
angr/procedures/posix/sigaction.py,sha256=6QxmIJ77akOPiqTdpqAtnFbz4AFJi7Hc-EGgy3B1CUM,786
|
|
1114
|
-
angr/procedures/posix/sim_time.py,sha256=LM9Vi6nWqkslYDnG5tawj2SFThttJFjQwdZoSr848BA,1656
|
|
1115
|
-
angr/procedures/posix/sleep.py,sha256=4D-dpa9M6bWivi9ZMUXTt1FcuSy7J6E9i-Dhc8zOs5U,145
|
|
1116
|
-
angr/procedures/posix/socket.py,sha256=QyDINQjki19kEv7VXqydWiM4DY9yv5URfWg9o1Oseso,643
|
|
1117
|
-
angr/procedures/posix/strcasecmp.py,sha256=igMfQn_8dD4iCHiwr-nZXt94GFu3HakN4f1WjD1PfY0,684
|
|
1118
|
-
angr/procedures/posix/strdup.py,sha256=tI7-P8YxYDCKYN97FAn25TweIYlQDDMdBRJbAjFBsSA,491
|
|
1119
|
-
angr/procedures/posix/strtok_r.py,sha256=Cy2x2Tz2fFUy56rv0VP16LZ5P0faYZ_T8IHfqMPyhGE,2748
|
|
1120
|
-
angr/procedures/posix/syslog.py,sha256=7YcSkgAb_Une12yJJ1qsNsD9F6Uvz6pJdxwvVubJn-Y,430
|
|
1121
|
-
angr/procedures/posix/tz.py,sha256=rZUKo8EkTrV6e3PBIJF_LC_o2_U1q80pqBm4P_bHW7c,260
|
|
1122
|
-
angr/procedures/posix/unlink.py,sha256=iiz0R5DCVAL012od9lzjcJrxIiNIOZKltfy52ffV9Zs,282
|
|
1123
|
-
angr/procedures/posix/usleep.py,sha256=HQLUvR1D1TVr9sG2ou2yHXurMcu0ZeUzuyYtneLSi5w,140
|
|
1124
|
-
angr/procedures/posix/write.py,sha256=Xfzqn9nUrxBUaNKvGMw8AG3hffpto2e4Fh1sVSE0LrY,254
|
|
1125
|
-
angr/procedures/stubs/CallReturn.py,sha256=TZqy_p4y-iJk4WjlTmN5iLtgSThzTYku3BkLNGoDZDk,219
|
|
1126
|
-
angr/procedures/stubs/NoReturnUnconstrained.py,sha256=o4vEt-mnNFb_F7HAM_KaBM3j3cXRsn_qPgWLhd2WXzY,413
|
|
1127
|
-
angr/procedures/stubs/Nop.py,sha256=F2xhBbOQdPfPweS0BRgjU8IEeQsZp8daTwTdyCzyqLE,76
|
|
1128
|
-
angr/procedures/stubs/PathTerminator.py,sha256=iR2EcbHD4Qnk9xX_T4BBxYnrqQgMNt3qE5FMl4qcxH8,108
|
|
1129
|
-
angr/procedures/stubs/Redirect.py,sha256=yrwVj2RikfsDai1kS_cq3_RoN9HjrjTI66nTkxaJIqI,445
|
|
1130
|
-
angr/procedures/stubs/ReturnChar.py,sha256=kVXTBpX0l001rni7GbxUFfyYTH0oyEh1SMSSVPKvu_o,322
|
|
1131
|
-
angr/procedures/stubs/ReturnUnconstrained.py,sha256=Twy5PgpSLlH7H4bwxgU7kg5KQIs5bmkWm3SyarIsgPU,699
|
|
1132
|
-
angr/procedures/stubs/UnresolvableCallTarget.py,sha256=YG1h0RFSMIJy7WnKdJsDJlyiN45zu41MaWXLEeR-HqI,153
|
|
1133
|
-
angr/procedures/stubs/UnresolvableJumpTarget.py,sha256=44utWcJ52iRaBgEMTpb_MByvP_0fYqtYbb4VCtjR-s4,152
|
|
1134
|
-
angr/procedures/stubs/UserHook.py,sha256=RrLkoaNPH8AHGwNVALr-7Ns5Y_vKqMoi8jg7agpnyXQ,567
|
|
1135
|
-
angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bTdXVc,67
|
|
1136
|
-
angr/procedures/stubs/b64_decode.py,sha256=BI67PiW4B-sePSnF5qYr7ieyGXiYV5fVHTlZ6Uzywi0,348
|
|
1137
|
-
angr/procedures/stubs/caller.py,sha256=wT3A37gO0QBOKdsT12DpNz4zZMivFIwJtXr2oApJ8XI,343
|
|
1138
|
-
angr/procedures/stubs/crazy_scanf.py,sha256=CU_Kv8KRVjEzMZ3G6MAY-jC0vpUytBUl-yii_AmhAj8,619
|
|
1139
|
-
angr/procedures/stubs/format_parser.py,sha256=Qu-E9bOtZkzkXwp2euOYF0nbT9NxYH4G9v3-q7cCo1w,27756
|
|
1140
|
-
angr/procedures/stubs/syscall_stub.py,sha256=iZT6sl2RxGG8azjykN3SubY-qnLU00dDzYeTp1sXwI4,831
|
|
1141
|
-
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1142
|
-
angr/procedures/testing/manyargs.py,sha256=omzRwPCNqrBodw1nJ-alQh4v_82NHaJfr-1E5xCGQjU,100
|
|
1143
|
-
angr/procedures/testing/retreg.py,sha256=q6JDtgguJ40niF5_pa6eM_YXGyyzdjR3S8iqn7vSziI,171
|
|
1144
|
-
angr/procedures/tracer/__init__.py,sha256=xItpgtnUe176vAt-Nt-2MjsZcEjCIqkoQjaa1hBR7F8,108
|
|
1145
|
-
angr/procedures/tracer/random.py,sha256=hot7EApYiXOKX7a1li7KwciRkqSAgifbKukb7rpzDkU,232
|
|
1146
|
-
angr/procedures/tracer/receive.py,sha256=R0_sNqhnzJHG2qQonSHO7363eYLmRKLXqRg57LIRIwo,579
|
|
1147
|
-
angr/procedures/tracer/transmit.py,sha256=DCD7wPd2oYVyrG2pE46tWk6iIHe7LGq4AHv9LYXoq1E,715
|
|
1148
|
-
angr/procedures/uclibc/__init__.py,sha256=aee4FFAxEUdRWSrXI_BjJbgSEDnM-rmSAX0X_2NRV8s,88
|
|
1149
|
-
angr/procedures/uclibc/__uClibc_main.py,sha256=FOLnwO6ABuY22zC-T0xRpMdOEkldF3e5pZRjQqkWW8k,293
|
|
1150
|
-
angr/procedures/win32/EncodePointer.py,sha256=6rRdCS77aUwiTCd2bMyDCbofEvVYfKYQBRSfquLZqqw,97
|
|
1151
|
-
angr/procedures/win32/ExitProcess.py,sha256=6IIy5eQSNLoX121-wXvWFpXRJ7o1gONXspfvkJmHRlw,134
|
|
1152
|
-
angr/procedures/win32/GetCommandLine.py,sha256=VjydNFUj-Cl6004mXnkiXyLHbVTItjsJSe9LJqE_Z7Y,228
|
|
1153
|
-
angr/procedures/win32/GetCurrentProcessId.py,sha256=KmvxnRaNuQ8gGfmaFk8uPNLzv33067AbsH6Te1ArMaU,105
|
|
1154
|
-
angr/procedures/win32/GetCurrentThreadId.py,sha256=826SnVxtmwnhHecTXzX0wQgRIFJO6tHgbiVGevi7i3Q,104
|
|
1155
|
-
angr/procedures/win32/GetLastInputInfo.py,sha256=DCgiN-8fV8laEwr7DuMSwXIbekr-OALLQFnzO63hJr8,1092
|
|
1156
|
-
angr/procedures/win32/GetModuleHandle.py,sha256=9TPldQHEGPdzOYMBxPNIYMtW-DcBq1omGhJKa9xh_pM,940
|
|
1157
|
-
angr/procedures/win32/GetProcessAffinityMask.py,sha256=EkJ_IoJdZQyzTeYuAiDkURfbi0C52gkSEtIDUVdo96A,1120
|
|
1158
|
-
angr/procedures/win32/InterlockedExchange.py,sha256=LW2pom1JLkoVjFwRzhtMeNN3bx3sHdY8a0kgmf8_h6U,557
|
|
1159
|
-
angr/procedures/win32/IsProcessorFeaturePresent.py,sha256=Q4ZV_UjY84V0P131nPLpbV7szEeOVeksHIsCj61UgwY,201
|
|
1160
|
-
angr/procedures/win32/VirtualAlloc.py,sha256=LQNtAahtMLZV_y4ICO13_xcx8NdbeOkM0XB8oDVXIzU,3985
|
|
1161
|
-
angr/procedures/win32/VirtualProtect.py,sha256=esNTh4FF73e2cXmpwerjTvFdT1zRsCeSFGSRjJxYkhw,2274
|
|
1162
|
-
angr/procedures/win32/__init__.py,sha256=i2g6NRy5D4oId4UJ9TQJ3sDv9EyTdbXORjIwyAyMIwA,86
|
|
1163
|
-
angr/procedures/win32/critical_section.py,sha256=7_JhccsCbpFAPWQ6fRbB0_TaizuE_mZ8KWJO2BGt6gE,277
|
|
1164
|
-
angr/procedures/win32/dynamic_loading.py,sha256=AxQSb2mLeWDZcJiiP9IVQtnCnsE65C9r3LZ7FR9ljgU,3424
|
|
1165
|
-
angr/procedures/win32/file_handles.py,sha256=kC8COD7kNUZ2qpOa6kYfGeHxMQsaBekM8me-NbJW6vk,1455
|
|
1166
|
-
angr/procedures/win32/gethostbyname.py,sha256=p0Chzr8_HuM65MpGHWpl8yzLHGEmzlossk-G4xg-oVM,320
|
|
1167
|
-
angr/procedures/win32/heap.py,sha256=IhpJvNOzV4eQ7nSOEiSG429ViAUeUMbCxwLMPZpZI78,1547
|
|
1168
|
-
angr/procedures/win32/is_bad_ptr.py,sha256=ICQM92iDE8m94OzEzTZ7-vJS4nsWiKhwJHcm4ezzXWc,757
|
|
1169
|
-
angr/procedures/win32/local_storage.py,sha256=DsJQwGTpsZRqIWFIfwr1A4Dd62KpH9RZGzqGYYVEFiY,2126
|
|
1170
|
-
angr/procedures/win32/mutex.py,sha256=JEDgitKG4BPQGeKwU8wHJr0hgWiWQYjbfrNr_-BJ15c,177
|
|
1171
|
-
angr/procedures/win32/sim_time.py,sha256=793ku1xSi7pOnXbP6QNd0CxePNHPv_sdDMn-gkzd9XE,5319
|
|
1172
|
-
angr/procedures/win32/system_paths.py,sha256=SZMzkyquBzfNiSMCjjCSgVK5bcAg4fliqKuhXNxMdAs,1238
|
|
1173
|
-
angr/procedures/win32_kernel/ExAllocatePool.py,sha256=G8AyUTGrTnGlWI9AAD0UTFc_EUU24_HCxHmyN0QW8lY,423
|
|
1174
|
-
angr/procedures/win32_kernel/ExFreePoolWithTag.py,sha256=YT30Vkm0E8Zbew6XEVx2vHnxRVdG8m1KC7w5KRrdGLA,225
|
|
1175
|
-
angr/procedures/win32_kernel/__init__.py,sha256=I4WgVVCg4PuqChPe8nayrzLxDYJBFAwHdql8sWAD0Ps,70
|
|
1176
|
-
angr/procedures/win_user32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1177
|
-
angr/procedures/win_user32/chars.py,sha256=Vfw9n-RBhMmQgLFpsITsQLZR9EGSSUh3bQw3CbiKRFE,348
|
|
1178
|
-
angr/procedures/win_user32/keyboard.py,sha256=Ds3qarw_TgOkIMquV_f_lxdxJfHoFRwwwHasbFZGQDM,377
|
|
1179
|
-
angr/procedures/win_user32/messagebox.py,sha256=PkKHHjJacHe6UF-oPmvIz3kRKGIHC7FChybVH3989ww,1723
|
|
1180
|
-
angr/protos/__init__.py,sha256=WLw4I-qmjzoId2PETL0XG1xGBQlnE70af7ftUuHWlhU,378
|
|
1181
|
-
angr/protos/cfg_pb2.py,sha256=3xrQf1deMqMGETFF4Sw09n0sx45BZzAdRB86400-85I,2389
|
|
1182
|
-
angr/protos/function_pb2.py,sha256=U55E0nWKAboOntLcI9SPFpJkfnInYzzRW8PbjlPKuz4,2146
|
|
1183
|
-
angr/protos/primitives_pb2.py,sha256=mlZqTH0_OgZbSyzFoBQhWa_wLuZS6l3Kqrhe2Joj_As,8527
|
|
1184
|
-
angr/protos/variables_pb2.py,sha256=Fun42E2lJ7iT0xW_mlG60GJeVa51grG7epWshoT9xMo,8112
|
|
1185
|
-
angr/protos/xrefs_pb2.py,sha256=uze_1xvipKxY7Xrpxl6BJC6OCwp3_-B62S81FlzXl2Q,1247
|
|
1186
|
-
angr/simos/__init__.py,sha256=lqiR4H7KgNd8uzQT5OYsvrcb3l3moCoxBP-O-UMzPjM,755
|
|
1187
|
-
angr/simos/cgc.py,sha256=Y9dok-ai9KFm7PIKduX97sMJ3DzD9X3TrN4CWUhDFik,5562
|
|
1188
|
-
angr/simos/javavm.py,sha256=NKwosYvx4-_gsT7eGmHHIZNzzdF-T0xK0BuXobrI8oQ,21461
|
|
1189
|
-
angr/simos/linux.py,sha256=l4HN7M3puiKW3hqA3yALBMcAYhDCo7aZGbnhJz-Q9_w,23625
|
|
1190
|
-
angr/simos/simos.py,sha256=mVFQRSJ9-ajdAShS-CcdWdCC9b-0nfBf1DNouEQ8gh8,18321
|
|
1191
|
-
angr/simos/snimmuc_nxp.py,sha256=Uy43SwCjnKFo207fVz-h0vzwRk-RnIACz1C0Ly3ftw4,5679
|
|
1192
|
-
angr/simos/userland.py,sha256=FqeBRs83hhroMbSXvss5jIslR5D6vfiPAqJ8IcVAQf8,7320
|
|
1193
|
-
angr/simos/windows.py,sha256=9XhcSFqnNa8XK41wFC-bhhnHNZ8EQOFZIPg6C6vF56s,26014
|
|
1194
|
-
angr/state_plugins/__init__.py,sha256=Yig7z_PkqjB5nai_yzxf06uwfQzQ9iPdrTVzKMKtfQ4,735
|
|
1195
|
-
angr/state_plugins/callstack.py,sha256=Q4I0paOULwMgzspk2J3W-Q9Y616Oe-QcOjNjIS63MFM,12099
|
|
1196
|
-
angr/state_plugins/cgc.py,sha256=dzkDoiZIK9Fd5DisDyGJQ42cE5Xx9cz2bsjZXn6jEh0,4247
|
|
1197
|
-
angr/state_plugins/concrete.py,sha256=o63DhCnknRamWsuHSVhaadkzX0LKEmMwm5vzsF6pdrA,13310
|
|
1198
|
-
angr/state_plugins/debug_variables.py,sha256=6FUQ8be1SJ6BmWbBX2jpT3TnplueGe_AxVk-4LghEkY,6858
|
|
1199
|
-
angr/state_plugins/filesystem.py,sha256=SjspfS6OXwXRa2ynbD0lddM__puKbxaIG5zVXwWzRcA,15902
|
|
1200
|
-
angr/state_plugins/gdb.py,sha256=tPQM-guGghWD65FHF2n_etc2UGMoaUBiXBtlRPVewNA,5125
|
|
1201
|
-
angr/state_plugins/globals.py,sha256=tfEVa8iqEmvD2vGoogx89aIoouw9GFc8JQcscDlXLbA,1507
|
|
1202
|
-
angr/state_plugins/history.py,sha256=gB51s6yZ6PsllXqWZvTlqYmFVWPI8dDgsX1-oPV5AsE,19284
|
|
1203
|
-
angr/state_plugins/inspect.py,sha256=49xo60mAI6o1IDZTcLMoqO5N78DXoHHregnSt8V54Eg,11317
|
|
1204
|
-
angr/state_plugins/javavm_classloader.py,sha256=t0O7e6DbXykuCbBTQ6bPv13vl99GrXpHvqSnkvWlpfo,5547
|
|
1205
|
-
angr/state_plugins/jni_references.py,sha256=AkrXa_ptTV97V1acnwvpnW7svUttpx1w4g9wmGc4NaA,3403
|
|
1206
|
-
angr/state_plugins/libc.py,sha256=Ly2DVju8ub8LwkSKJ4KUqrZ660VXZaqT9lQ6-AwU3cE,23586
|
|
1207
|
-
angr/state_plugins/light_registers.py,sha256=DJ89rzySBnZtQBiNy0Pf1EkZg1Byd6OBWJQXUfmfYvI,6727
|
|
1208
|
-
angr/state_plugins/log.py,sha256=9Z0m8anOa3OpznycXEMSpQPORAoZ_-Y9ZGh_AYH1huM,2364
|
|
1209
|
-
angr/state_plugins/loop_data.py,sha256=0tyRLFXb2gj4ESqiRH2AED067LOOl7k_dCFaDkP3Cqk,4209
|
|
1210
|
-
angr/state_plugins/plugin.py,sha256=UxulcNvSMf8hNhzw58yd2PBDLEE_tuOE7OAxFHc_q7s,6172
|
|
1211
|
-
angr/state_plugins/posix.py,sha256=QSex22x2lT9L5IjhBVcNE59zeI82iVEo1w3sYRzdFoE,26891
|
|
1212
|
-
angr/state_plugins/preconstrainer.py,sha256=hT-i1idj8QaPq6QJgbA9Xtw_DfVNU0GUSoN0ioii1Lg,8044
|
|
1213
|
-
angr/state_plugins/scratch.py,sha256=7j-J4xq8A9Axh6fJzQoUpLpobtIe0va7eeX-glGfYk0,6178
|
|
1214
|
-
angr/state_plugins/sim_action.py,sha256=IDPLtcqN04APpStuVYarv00LF2u6JVFfdxEBEw_v_a0,9763
|
|
1215
|
-
angr/state_plugins/sim_action_object.py,sha256=4_f7ry76pG4XBnF7O48_7krt_ibG4DZkIMrjmmk_MGg,4268
|
|
1216
|
-
angr/state_plugins/sim_event.py,sha256=pRQtMet5g--GmH97BMrS3bDErgUOWAOocjPLGNzmelU,2061
|
|
1217
|
-
angr/state_plugins/solver.py,sha256=u397DINjUBSOi1sVd79_p1rAm6W0T0j0J3DE3qN9_i4,43802
|
|
1218
|
-
angr/state_plugins/symbolizer.py,sha256=3UAfStON-0GuuHhkD4JD6Y5WveqEfTD3JLK3uj0R-co,11039
|
|
1219
|
-
angr/state_plugins/trace_additions.py,sha256=RJ9VqldlqhVKpgvcy_fsmYwgBIl--cSD8fVXYzEFLZY,30002
|
|
1220
|
-
angr/state_plugins/uc_manager.py,sha256=fcrtQ2_74B_At9RZ8cXkRFYLtHtEdagCzo6QaSPtMuU,2649
|
|
1221
|
-
angr/state_plugins/unicorn_engine.py,sha256=oSAo4iRb8bXHw4enq-yiml7f01LxGpLBOVyXRwsZnko,77517
|
|
1222
|
-
angr/state_plugins/view.py,sha256=qFe7PXoXVW8xLDK6OVo9H7ymf5mOQb889kJIWVFJA0o,12351
|
|
1223
|
-
angr/state_plugins/heap/__init__.py,sha256=uyxW6BfOmiuhbIYIjXMDQW8AxfN9scC2bwRdsSAiajk,136
|
|
1224
|
-
angr/state_plugins/heap/heap_base.py,sha256=qtonZCTiGSh30UbPZ92ILXRVmO3pV4NZyDPN0DB8QvI,6229
|
|
1225
|
-
angr/state_plugins/heap/heap_brk.py,sha256=5il1eFY4yRUzTvBXLftcMXjk3xGaIVmfb5Wo2yp3iJU,5418
|
|
1226
|
-
angr/state_plugins/heap/heap_freelist.py,sha256=wVwH24zTsSOGgLuIlfNWZCGAFdauHIXf4FkyTGVGAy8,7886
|
|
1227
|
-
angr/state_plugins/heap/heap_libc.py,sha256=1mLu83BfdyJDjalAnm2klIb3bs7BV6bl_gPUZajOvkI,1858
|
|
1228
|
-
angr/state_plugins/heap/heap_ptmalloc.py,sha256=FhevCOtHiUOdNLEBr8I057NFX0vSL9qSLF5LzirC8Lw,28972
|
|
1229
|
-
angr/state_plugins/heap/utils.py,sha256=Peru_TgVCGRQEORQJVwJfQB1Wleglk_Hdp7aOHQa6no,793
|
|
1230
|
-
angr/storage/__init__.py,sha256=X3JnQg95SqAqahP1x10Kk5E0OXxyNlV2Xk3NKyXzykA,182
|
|
1231
|
-
angr/storage/file.py,sha256=n77OoIw2gAvCH6iQxyopLSlpwrxlpfSZctPK4otXeXM,48083
|
|
1232
|
-
angr/storage/memory_object.py,sha256=iTOK_kAJQpweQz_5GLbCDbrwfgbVTFvLpPUve6d7M9k,6218
|
|
1233
|
-
angr/storage/pcap.py,sha256=8n30ui0KO7qx_RgmGFL_cBYMF5AlQ5LzVFeCh9ODU6c,1940
|
|
1234
|
-
angr/storage/memory_mixins/__init__.py,sha256=wRCGg4Rlh8lxzqa8_q--R9Ht22avkap5fR6bIt9RWoU,11965
|
|
1235
|
-
angr/storage/memory_mixins/__init__.pyi,sha256=7jA-O5r8efBzQWZa9q-5xs6HY-rYPSlgo2_42CRUYqQ,1944
|
|
1236
|
-
angr/storage/memory_mixins/actions_mixin.py,sha256=-ZzBVgW11ttp9yF0EuH-Wk7EMQ4p-bEPK_QhU7-mUig,3366
|
|
1237
|
-
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=mVxneJScSVj-u79vDN5GIqTIofR62Jy59HMUUPVPzTE,16535
|
|
1238
|
-
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=XT2ICXERaSHypiaAFf2jd8V3lh_5mZQvmT55ziipss0,2901
|
|
1239
|
-
angr/storage/memory_mixins/clouseau_mixin.py,sha256=EDhjbs5MMSGHQCxlKUL2uPHBTv8wqQN2IVXXTdBUezI,5496
|
|
1240
|
-
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=RiorXjBL9sXIjs7AaaY90z-8l5NOQDMX_jpRwZuG2dk,929
|
|
1241
|
-
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=JeU2_AaLxi1yC0ULuhfLps-L5GAkfW1hF-5kjM4vZzE,10263
|
|
1242
|
-
angr/storage/memory_mixins/default_filler_mixin.py,sha256=xHAZozQFnxMWJD0XaroWHvJ8m0z3jF74DHjXMrK5ozY,6016
|
|
1243
|
-
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=-UDDtjEkh19Dd5paf-62NBvSiIHTmQXPM0QtriJ5eig,317
|
|
1244
|
-
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=ciMIrmfTmxWPWVUUiIw5h8YNdHmrWg_GsK6Bzg5omzE,3668
|
|
1245
|
-
angr/storage/memory_mixins/label_merger_mixin.py,sha256=22eu5aNM-MUhBjUrqhz02sPF3T74uR6NYVmKv8dSnl0,848
|
|
1246
|
-
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=92OIsUhnUEAVz3_bUYEW0CIJzM4aY0O-aK2BfJl9nB8,3232
|
|
1247
|
-
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=YOM3yDjTmybDgAVvJGHuVWUgkDqsbFsWRgkJP8vI9ho,3412
|
|
1248
|
-
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=5TXFXfLKvMVyitzS8wwLiAiUDZ9B2gR2rbRRZRuLF8s,2576
|
|
1249
|
-
angr/storage/memory_mixins/simplification_mixin.py,sha256=stTzmaoa0IHxhDSWsYdzKGSt2n37XRjJ7kgZdoa5Uu0,502
|
|
1250
|
-
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=vtJ5gsTKJLv8mv9t1vuj0TGZTclv6lnrzARWVxLB19o,5634
|
|
1251
|
-
angr/storage/memory_mixins/slotted_memory.py,sha256=huc_PSdabvCypBlL6Ia5osIf88yuKA746etvh0jTVno,4874
|
|
1252
|
-
angr/storage/memory_mixins/smart_find_mixin.py,sha256=lpJCuAcr-inzTmk9NOnexZgssHgZBRrY0ZEsulAu5NQ,5635
|
|
1253
|
-
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=eiWj0ULNwPGKBHtVcrmKIlt04jyqGweL6-YfxbjC9bg,427
|
|
1254
|
-
angr/storage/memory_mixins/top_merger_mixin.py,sha256=KOc2ZiC6qDnt28ElOFI2Zt5ZRHDqD2PqwGo4h3gWkiM,679
|
|
1255
|
-
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=QGvMZTY3USmi91tcyH4Du21Z8bUa_C9LjbE4QbjTt2M,2590
|
|
1256
|
-
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=XhGDPDoIM2z4hpN4_BKYn4akDjk1appgmTtyKU96rYo,1027
|
|
1257
|
-
angr/storage/memory_mixins/javavm_memory/__init__.py,sha256=tFqSGN5VJQx1dQq51MTLEqs2GwgAdlK_AfSzStx-z-o,51
|
|
1258
|
-
angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py,sha256=M9dDjQZkas3GU94NxgcVt4dcefY502rKoA4eDdsuHgs,15432
|
|
1259
|
-
angr/storage/memory_mixins/keyvalue_memory/__init__.py,sha256=QxpAvcd8WfpgO_mrOCfLmanyAw3zeGL5FMO9KFZ2FCE,55
|
|
1260
|
-
angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py,sha256=CMji69eu0CnNgR_wQ3obWeW1UKiSrdOacEgwT7BGODo,906
|
|
1261
|
-
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1262
|
-
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=6df0oinV3B0EwyIiuWtJZUqOnE_STBXPbarYUsnzFIY,10279
|
|
1263
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=VN1GMyoBk-PxX-rK7pZiqcz8QSY55DqpJI_rb_a1PwE,29187
|
|
1264
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=jrOKLLiR48KRsHsarGRx7XZXSoO2OFMT4-l-dQ1Ytuo,2192
|
|
1265
|
-
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Ls_QhPLKudESInlAhUR1GVeacJNTciz9E2DX-LatAZ4,1541
|
|
1266
|
-
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=Fg_KtS7GiI6TLfBKoRAOiz4z-M9ZkcvT9UwCkAp9-rY,3283
|
|
1267
|
-
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=rwGAcESljLORCDteXXJ0cJCFkaqymoxm8kziKLB3DFw,1469
|
|
1268
|
-
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=yqT8BDG8uJWLetwhu4wiS4Kr8yD5W6qzi0dl9PDS0OA,12785
|
|
1269
|
-
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=P5ORlm26_7v--hNcxDwLzZGTRwcLcaHzKModa5yoUPA,3003
|
|
1270
|
-
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=mHt5nQYXkXifwGT0_UGvKirECEC2v7jNNtf_6oY57uI,2050
|
|
1271
|
-
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=FJhqPdF0fFkktIfUKaVZoDxD5jW7qwugn6US2yctcrc,14584
|
|
1272
|
-
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=hW-8svWpMJj4q6GVnW5JqDAp-2riFS5PnE7B_FXEIEw,11289
|
|
1273
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=7pAL_YxTNEx1d7qTpJqrXIRKMB04SN4ASwz6vfyBbCk,17671
|
|
1274
|
-
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=Ek2YSmFOGUScFXPx8hqroNkl3gK1aqKCMv_X3_pImLs,830
|
|
1275
|
-
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=oES5tahTy4SgyDi2h5oRRC0PC4JHNcIvdAC4INKkeJw,1701
|
|
1276
|
-
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=JIgC5wpl006FEFyDg_Z_gvEtMWJ0G0OWq9y8PcnFOzA,20062
|
|
1277
|
-
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=qFW74mjzZmHnIX-cyvOHhOFWSJOdQwcPUm_IhDryObo,351
|
|
1278
|
-
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=9p4Eo7zE-gqfodF1P80GMEgCONpP4Qy90zzyY3ivbII,1094
|
|
1279
|
-
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=4Q1ru_R2b1EH3to3-E97ENu35DDHalU7KOV_wg1REHs,1358
|
|
1280
|
-
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=M5k0ZGxEkCIJz8CoZ20S1bFo0fcHLD-PBKhy62eEfcQ,128
|
|
1281
|
-
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=VaEd5je6qwgjvWqhApKFFxHTs0JlIPZ56dZdvNvAcic,9176
|
|
1282
|
-
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=5Djfykh_yZQWhzoehwwMUZ_dXW50Zrwb7VCq7Y78TCQ,4324
|
|
1283
|
-
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=rlzyJhrU29SwwhDePxW2s1FwNtXulkaxZh12lJnB35k,4884
|
|
1284
|
-
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=42p5q1OOjh2Y2hkNn53Mpp2rLEX5eJQtjxjVfH7kUzo,18676
|
|
1285
|
-
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=d5jm5JH1Bg1OQRnELL0VBVTWQFZPz3czfTX4kf2kDQE,2192
|
|
1286
|
-
angr/utils/__init__.py,sha256=XjOtDNWPHZZjayRA6OxLra78wBtR-pY_A8EC3nqCGkE,980
|
|
1287
|
-
angr/utils/algo.py,sha256=abkp6yy6FMqJSt0VfOpy5eSqWnheLLqOQ_kAAyhLXFc,1003
|
|
1288
|
-
angr/utils/constants.py,sha256=hxSJHIILsDP8ZOpw76BxMLu2Q_s2-rxTjACh7RL5wJs,209
|
|
1289
|
-
angr/utils/cowdict.py,sha256=GlvZxwYPJRPrmgbcB8Tay-q1KBNeJDU3oKwoxZ-aUFs,2160
|
|
1290
|
-
angr/utils/dynamic_dictlist.py,sha256=-85XkPEjVWhGDRteUsTXqOQ4StmySUuvpDzHaFN9Nn8,3073
|
|
1291
|
-
angr/utils/endness.py,sha256=gfeFyA-4SrBDlKfz5WjHVKxmpNUHKZ6caILLjrSiPy0,466
|
|
1292
|
-
angr/utils/enums_conv.py,sha256=YdnZzvuVc_BW1EuC4OtEo7LqB35XkPrXICyWox8Posg,2091
|
|
1293
|
-
angr/utils/env.py,sha256=wWlmjLp7CtafKItn7xq2RW3UzGGgxw58Wc8fSm3EZJQ,363
|
|
1294
|
-
angr/utils/formatting.py,sha256=tSnCLNIAWRhYyYF4HpNrlTlX6ny2taEEnxDUKDb1d-o,4207
|
|
1295
|
-
angr/utils/funcid.py,sha256=lDT3hAO8VT2wKm8_2dUNYjaj5yprNblFACU7x6u_gaM,5209
|
|
1296
|
-
angr/utils/graph.py,sha256=baLY5RJYp06XXBKrqtEIu8b7wpWYSxwVODbIFUxm3Kc,28347
|
|
1297
|
-
angr/utils/lazy_import.py,sha256=VgN0-cMsr6XdGIq56Js1X8YecfPdW9Z4NrB3d2jD-5Y,308
|
|
1298
|
-
angr/utils/library.py,sha256=6RKKn7Hm-YEw0AoTFIjL86kCdvglKI_5KtSysDAE06Q,7170
|
|
1299
|
-
angr/utils/loader.py,sha256=QdkatPiyRfz5KdfCzRI1Xp3TJL_Pa75wY0dsILgMbwk,1944
|
|
1300
|
-
angr/utils/mp.py,sha256=cv_NeysxLgyCdE-Euefnfv078ia5maHSnUn9f23zz88,1882
|
|
1301
|
-
angr/utils/orderedset.py,sha256=6SRZz6PkOVavOzlUd2cIiqZQyWtKO72F2he_cG0aP9Q,1943
|
|
1302
|
-
angr/utils/segment_list.py,sha256=5nnuVtdZk9NS2y_xUBVA9khWPueP_zagNtPSjaoMHbA,20410
|
|
1303
|
-
angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
|
|
1304
|
-
angr/utils/typing.py,sha256=pCjA7JZAzcvrk-iyIE2cRHc1G66AMSGEON3aFfjtPVc,431
|
|
1305
|
-
angr-9.2.117.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1306
|
-
angr-9.2.117.dist-info/METADATA,sha256=W3oCVaEgS_NOcqPgLCr4eQuzWyER5PnPxOGMAmCf670,4670
|
|
1307
|
-
angr-9.2.117.dist-info/WHEEL,sha256=XTaZso141YckmY-BLDJL-00nGiWXQ9dQgK02FgghuOA,108
|
|
1308
|
-
angr-9.2.117.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1309
|
-
angr-9.2.117.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1310
|
-
angr-9.2.117.dist-info/RECORD,,
|