angr 9.2.165__cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.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 +366 -0
- angr/__main__.py +152 -0
- angr/ailment/__init__.py +81 -0
- angr/ailment/block.py +81 -0
- angr/ailment/block_walker.py +845 -0
- angr/ailment/constant.py +3 -0
- angr/ailment/converter_common.py +11 -0
- angr/ailment/converter_pcode.py +623 -0
- angr/ailment/converter_vex.py +798 -0
- angr/ailment/expression.py +1655 -0
- angr/ailment/manager.py +33 -0
- angr/ailment/statement.py +978 -0
- angr/ailment/tagged_object.py +61 -0
- angr/ailment/utils.py +114 -0
- angr/analyses/__init__.py +113 -0
- angr/analyses/analysis.py +429 -0
- angr/analyses/backward_slice.py +686 -0
- angr/analyses/binary_optimizer.py +670 -0
- angr/analyses/bindiff.py +1512 -0
- angr/analyses/boyscout.py +76 -0
- angr/analyses/callee_cleanup_finder.py +74 -0
- angr/analyses/calling_convention/__init__.py +6 -0
- angr/analyses/calling_convention/calling_convention.py +1096 -0
- angr/analyses/calling_convention/fact_collector.py +636 -0
- angr/analyses/calling_convention/utils.py +60 -0
- angr/analyses/cdg.py +189 -0
- angr/analyses/cfg/__init__.py +23 -0
- angr/analyses/cfg/cfb.py +428 -0
- angr/analyses/cfg/cfg.py +74 -0
- angr/analyses/cfg/cfg_arch_options.py +95 -0
- angr/analyses/cfg/cfg_base.py +2909 -0
- angr/analyses/cfg/cfg_emulated.py +3451 -0
- angr/analyses/cfg/cfg_fast.py +5316 -0
- angr/analyses/cfg/cfg_fast_soot.py +662 -0
- angr/analyses/cfg/cfg_job_base.py +203 -0
- angr/analyses/cfg/indirect_jump_resolvers/__init__.py +28 -0
- angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +62 -0
- angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +51 -0
- angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +159 -0
- angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +339 -0
- angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py +107 -0
- angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +76 -0
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +2367 -0
- angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py +81 -0
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +286 -0
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +148 -0
- angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +46 -0
- angr/analyses/cfg/indirect_jump_resolvers/resolver.py +74 -0
- angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py +92 -0
- angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +88 -0
- angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +47 -0
- angr/analyses/cfg_slice_to_sink/__init__.py +11 -0
- angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +117 -0
- angr/analyses/cfg_slice_to_sink/graph.py +87 -0
- angr/analyses/cfg_slice_to_sink/transitions.py +27 -0
- angr/analyses/class_identifier.py +63 -0
- angr/analyses/code_tagging.py +123 -0
- angr/analyses/codecave.py +77 -0
- angr/analyses/complete_calling_conventions.py +461 -0
- angr/analyses/congruency_check.py +377 -0
- angr/analyses/data_dep/__init__.py +16 -0
- angr/analyses/data_dep/data_dependency_analysis.py +595 -0
- angr/analyses/data_dep/dep_nodes.py +171 -0
- angr/analyses/data_dep/sim_act_location.py +49 -0
- angr/analyses/datagraph_meta.py +105 -0
- angr/analyses/ddg.py +1670 -0
- angr/analyses/decompiler/__init__.py +41 -0
- angr/analyses/decompiler/ail_simplifier.py +2085 -0
- angr/analyses/decompiler/ailgraph_walker.py +49 -0
- angr/analyses/decompiler/block_io_finder.py +302 -0
- angr/analyses/decompiler/block_similarity.py +196 -0
- angr/analyses/decompiler/block_simplifier.py +376 -0
- angr/analyses/decompiler/callsite_maker.py +571 -0
- angr/analyses/decompiler/ccall_rewriters/__init__.py +9 -0
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +580 -0
- angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +20 -0
- angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py +313 -0
- angr/analyses/decompiler/clinic.py +3308 -0
- angr/analyses/decompiler/condition_processor.py +1281 -0
- angr/analyses/decompiler/counters/__init__.py +16 -0
- angr/analyses/decompiler/counters/boolean_counter.py +27 -0
- angr/analyses/decompiler/counters/call_counter.py +57 -0
- angr/analyses/decompiler/counters/expression_counters.py +77 -0
- angr/analyses/decompiler/counters/seq_cf_structure_counter.py +63 -0
- angr/analyses/decompiler/decompilation_cache.py +46 -0
- angr/analyses/decompiler/decompilation_options.py +275 -0
- angr/analyses/decompiler/decompiler.py +710 -0
- angr/analyses/decompiler/dephication/__init__.py +6 -0
- angr/analyses/decompiler/dephication/dephication_base.py +100 -0
- angr/analyses/decompiler/dephication/graph_dephication.py +70 -0
- angr/analyses/decompiler/dephication/graph_rewriting.py +112 -0
- angr/analyses/decompiler/dephication/graph_vvar_mapping.py +363 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +527 -0
- angr/analyses/decompiler/dephication/seqnode_dephication.py +156 -0
- angr/analyses/decompiler/empty_node_remover.py +212 -0
- angr/analyses/decompiler/expression_narrower.py +287 -0
- angr/analyses/decompiler/goto_manager.py +112 -0
- angr/analyses/decompiler/graph_region.py +426 -0
- angr/analyses/decompiler/jump_target_collector.py +37 -0
- angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +67 -0
- angr/analyses/decompiler/label_collector.py +32 -0
- angr/analyses/decompiler/optimization_passes/__init__.py +151 -0
- angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +157 -0
- angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py +46 -0
- angr/analyses/decompiler/optimization_passes/code_motion.py +362 -0
- angr/analyses/decompiler/optimization_passes/condition_constprop.py +219 -0
- angr/analyses/decompiler/optimization_passes/const_derefs.py +266 -0
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +365 -0
- angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +106 -0
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +82 -0
- angr/analyses/decompiler/optimization_passes/determine_load_sizes.py +64 -0
- angr/analyses/decompiler/optimization_passes/div_simplifier.py +425 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py +5 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py +503 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +1218 -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 +167 -0
- angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py +165 -0
- angr/analyses/decompiler/optimization_passes/engine_base.py +500 -0
- angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +135 -0
- angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +113 -0
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +615 -0
- angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +224 -0
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +335 -0
- angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +923 -0
- angr/analyses/decompiler/optimization_passes/mod_simplifier.py +99 -0
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +703 -0
- angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +221 -0
- angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +171 -0
- angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +222 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +640 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +61 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +237 -0
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +333 -0
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +149 -0
- angr/analyses/decompiler/optimization_passes/switch_reused_entry_rewriter.py +102 -0
- angr/analyses/decompiler/optimization_passes/tag_slicer.py +41 -0
- angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +421 -0
- angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +88 -0
- angr/analyses/decompiler/peephole_optimizations/__init__.py +129 -0
- angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +42 -0
- angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +38 -0
- angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py +34 -0
- angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +34 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +25 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py +37 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +23 -0
- angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +236 -0
- angr/analyses/decompiler/peephole_optimizations/base.py +157 -0
- angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +34 -0
- angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +36 -0
- angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +34 -0
- angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +27 -0
- angr/analyses/decompiler/peephole_optimizations/bswap.py +142 -0
- angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py +115 -0
- angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +71 -0
- angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py +39 -0
- angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +28 -0
- angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +44 -0
- angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +69 -0
- angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +52 -0
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +447 -0
- angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +56 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_memcpy.py +78 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +217 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +106 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +170 -0
- angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +50 -0
- angr/analyses/decompiler/peephole_optimizations/modulo_simplifier.py +89 -0
- angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +33 -0
- angr/analyses/decompiler/peephole_optimizations/optimized_div_simplifier.py +356 -0
- angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +45 -0
- angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py +32 -0
- angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +46 -0
- angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +47 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +125 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +273 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +30 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +54 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +36 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +44 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +95 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +44 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +85 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py +40 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py +90 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +49 -0
- angr/analyses/decompiler/peephole_optimizations/rol_ror.py +130 -0
- angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +143 -0
- angr/analyses/decompiler/peephole_optimizations/shl_to_mul.py +25 -0
- angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +51 -0
- angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +82 -0
- angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +29 -0
- angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +131 -0
- angr/analyses/decompiler/peephole_optimizations/utils.py +18 -0
- angr/analyses/decompiler/presets/__init__.py +20 -0
- angr/analyses/decompiler/presets/basic.py +32 -0
- angr/analyses/decompiler/presets/fast.py +58 -0
- angr/analyses/decompiler/presets/full.py +68 -0
- angr/analyses/decompiler/presets/preset.py +37 -0
- angr/analyses/decompiler/redundant_label_remover.py +134 -0
- angr/analyses/decompiler/region_identifier.py +1239 -0
- angr/analyses/decompiler/region_simplifiers/__init__.py +5 -0
- angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +95 -0
- angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +82 -0
- angr/analyses/decompiler/region_simplifiers/expr_folding.py +818 -0
- angr/analyses/decompiler/region_simplifiers/goto.py +178 -0
- angr/analyses/decompiler/region_simplifiers/if_.py +135 -0
- angr/analyses/decompiler/region_simplifiers/ifelse.py +91 -0
- angr/analyses/decompiler/region_simplifiers/loop.py +143 -0
- angr/analyses/decompiler/region_simplifiers/node_address_finder.py +24 -0
- angr/analyses/decompiler/region_simplifiers/region_simplifier.py +246 -0
- angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +654 -0
- angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +87 -0
- angr/analyses/decompiler/region_walker.py +24 -0
- angr/analyses/decompiler/return_maker.py +72 -0
- angr/analyses/decompiler/seq_to_blocks.py +20 -0
- angr/analyses/decompiler/sequence_walker.py +257 -0
- angr/analyses/decompiler/ssailification/__init__.py +4 -0
- angr/analyses/decompiler/ssailification/rewriting.py +379 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +1053 -0
- angr/analyses/decompiler/ssailification/rewriting_state.py +61 -0
- angr/analyses/decompiler/ssailification/ssailification.py +276 -0
- angr/analyses/decompiler/ssailification/traversal.py +124 -0
- angr/analyses/decompiler/ssailification/traversal_engine.py +306 -0
- angr/analyses/decompiler/ssailification/traversal_state.py +48 -0
- angr/analyses/decompiler/stack_item.py +36 -0
- angr/analyses/decompiler/structured_codegen/__init__.py +25 -0
- angr/analyses/decompiler/structured_codegen/base.py +132 -0
- angr/analyses/decompiler/structured_codegen/c.py +4082 -0
- angr/analyses/decompiler/structured_codegen/dummy.py +15 -0
- angr/analyses/decompiler/structured_codegen/dwarf_import.py +190 -0
- angr/analyses/decompiler/structuring/__init__.py +30 -0
- angr/analyses/decompiler/structuring/dream.py +1217 -0
- angr/analyses/decompiler/structuring/phoenix.py +3090 -0
- angr/analyses/decompiler/structuring/recursive_structurer.py +187 -0
- angr/analyses/decompiler/structuring/sailr.py +120 -0
- angr/analyses/decompiler/structuring/structurer_base.py +1066 -0
- angr/analyses/decompiler/structuring/structurer_nodes.py +440 -0
- angr/analyses/decompiler/utils.py +1118 -0
- angr/analyses/deobfuscator/__init__.py +18 -0
- angr/analyses/deobfuscator/api_obf_finder.py +325 -0
- angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +51 -0
- angr/analyses/deobfuscator/api_obf_type2_finder.py +166 -0
- angr/analyses/deobfuscator/irsb_reg_collector.py +54 -0
- angr/analyses/deobfuscator/string_obf_finder.py +959 -0
- angr/analyses/deobfuscator/string_obf_opt_passes.py +133 -0
- angr/analyses/deobfuscator/string_obf_peephole_optimizer.py +47 -0
- angr/analyses/disassembly.py +1295 -0
- angr/analyses/disassembly_utils.py +101 -0
- angr/analyses/dominance_frontier.py +57 -0
- angr/analyses/fcp/__init__.py +4 -0
- angr/analyses/fcp/fcp.py +427 -0
- angr/analyses/find_objects_static.py +205 -0
- angr/analyses/flirt/__init__.py +47 -0
- angr/analyses/flirt/consts.py +160 -0
- angr/analyses/flirt/flirt.py +244 -0
- angr/analyses/flirt/flirt_function.py +20 -0
- angr/analyses/flirt/flirt_matcher.py +351 -0
- angr/analyses/flirt/flirt_module.py +32 -0
- angr/analyses/flirt/flirt_node.py +23 -0
- angr/analyses/flirt/flirt_sig.py +359 -0
- angr/analyses/flirt/flirt_utils.py +31 -0
- angr/analyses/forward_analysis/__init__.py +12 -0
- angr/analyses/forward_analysis/forward_analysis.py +530 -0
- angr/analyses/forward_analysis/job_info.py +64 -0
- angr/analyses/forward_analysis/visitors/__init__.py +14 -0
- angr/analyses/forward_analysis/visitors/call_graph.py +29 -0
- angr/analyses/forward_analysis/visitors/function_graph.py +86 -0
- angr/analyses/forward_analysis/visitors/graph.py +242 -0
- angr/analyses/forward_analysis/visitors/loop.py +29 -0
- angr/analyses/forward_analysis/visitors/single_node_graph.py +38 -0
- angr/analyses/identifier/__init__.py +5 -0
- angr/analyses/identifier/custom_callable.py +137 -0
- angr/analyses/identifier/errors.py +10 -0
- angr/analyses/identifier/func.py +60 -0
- angr/analyses/identifier/functions/__init__.py +37 -0
- angr/analyses/identifier/functions/atoi.py +73 -0
- angr/analyses/identifier/functions/based_atoi.py +125 -0
- angr/analyses/identifier/functions/fdprintf.py +123 -0
- angr/analyses/identifier/functions/free.py +64 -0
- angr/analyses/identifier/functions/int2str.py +287 -0
- angr/analyses/identifier/functions/malloc.py +111 -0
- angr/analyses/identifier/functions/memcmp.py +67 -0
- angr/analyses/identifier/functions/memcpy.py +89 -0
- angr/analyses/identifier/functions/memset.py +43 -0
- angr/analyses/identifier/functions/printf.py +123 -0
- angr/analyses/identifier/functions/recv_until.py +312 -0
- angr/analyses/identifier/functions/skip_calloc.py +73 -0
- angr/analyses/identifier/functions/skip_realloc.py +97 -0
- angr/analyses/identifier/functions/skip_recv_n.py +105 -0
- angr/analyses/identifier/functions/snprintf.py +112 -0
- angr/analyses/identifier/functions/sprintf.py +116 -0
- angr/analyses/identifier/functions/strcasecmp.py +33 -0
- angr/analyses/identifier/functions/strcmp.py +113 -0
- angr/analyses/identifier/functions/strcpy.py +43 -0
- angr/analyses/identifier/functions/strlen.py +27 -0
- angr/analyses/identifier/functions/strncmp.py +104 -0
- angr/analyses/identifier/functions/strncpy.py +65 -0
- angr/analyses/identifier/functions/strtol.py +89 -0
- angr/analyses/identifier/identify.py +825 -0
- angr/analyses/identifier/runner.py +360 -0
- angr/analyses/init_finder.py +289 -0
- angr/analyses/loop_analysis.py +349 -0
- angr/analyses/loopfinder.py +171 -0
- angr/analyses/patchfinder.py +137 -0
- angr/analyses/pathfinder.py +282 -0
- angr/analyses/propagator/__init__.py +5 -0
- angr/analyses/propagator/engine_base.py +62 -0
- angr/analyses/propagator/engine_vex.py +297 -0
- angr/analyses/propagator/propagator.py +361 -0
- angr/analyses/propagator/top_checker_mixin.py +218 -0
- angr/analyses/propagator/values.py +117 -0
- angr/analyses/propagator/vex_vars.py +68 -0
- angr/analyses/proximity_graph.py +444 -0
- angr/analyses/reaching_definitions/__init__.py +67 -0
- angr/analyses/reaching_definitions/call_trace.py +73 -0
- angr/analyses/reaching_definitions/dep_graph.py +433 -0
- angr/analyses/reaching_definitions/engine_ail.py +1130 -0
- angr/analyses/reaching_definitions/engine_vex.py +1127 -0
- angr/analyses/reaching_definitions/external_codeloc.py +0 -0
- angr/analyses/reaching_definitions/function_handler.py +638 -0
- angr/analyses/reaching_definitions/function_handler_library/__init__.py +12 -0
- angr/analyses/reaching_definitions/function_handler_library/stdio.py +269 -0
- angr/analyses/reaching_definitions/function_handler_library/stdlib.py +195 -0
- angr/analyses/reaching_definitions/function_handler_library/string.py +158 -0
- angr/analyses/reaching_definitions/function_handler_library/unistd.py +51 -0
- angr/analyses/reaching_definitions/heap_allocator.py +70 -0
- angr/analyses/reaching_definitions/rd_initializer.py +237 -0
- angr/analyses/reaching_definitions/rd_state.py +579 -0
- angr/analyses/reaching_definitions/reaching_definitions.py +581 -0
- angr/analyses/reaching_definitions/subject.py +65 -0
- angr/analyses/reassembler.py +2900 -0
- angr/analyses/s_liveness.py +203 -0
- angr/analyses/s_propagator.py +542 -0
- angr/analyses/s_reaching_definitions/__init__.py +12 -0
- angr/analyses/s_reaching_definitions/s_rda_model.py +136 -0
- angr/analyses/s_reaching_definitions/s_rda_view.py +316 -0
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +177 -0
- angr/analyses/smc.py +161 -0
- angr/analyses/soot_class_hierarchy.py +273 -0
- angr/analyses/stack_pointer_tracker.py +953 -0
- angr/analyses/static_hooker.py +53 -0
- angr/analyses/typehoon/__init__.py +5 -0
- angr/analyses/typehoon/dfa.py +118 -0
- angr/analyses/typehoon/lifter.py +122 -0
- angr/analyses/typehoon/simple_solver.py +1666 -0
- angr/analyses/typehoon/translator.py +279 -0
- angr/analyses/typehoon/typeconsts.py +338 -0
- angr/analyses/typehoon/typehoon.py +319 -0
- angr/analyses/typehoon/typevars.py +622 -0
- angr/analyses/typehoon/variance.py +11 -0
- angr/analyses/unpacker/__init__.py +6 -0
- angr/analyses/unpacker/obfuscation_detector.py +103 -0
- angr/analyses/unpacker/packing_detector.py +138 -0
- angr/analyses/variable_recovery/__init__.py +9 -0
- angr/analyses/variable_recovery/annotations.py +58 -0
- angr/analyses/variable_recovery/engine_ail.py +885 -0
- angr/analyses/variable_recovery/engine_base.py +1197 -0
- angr/analyses/variable_recovery/engine_vex.py +593 -0
- angr/analyses/variable_recovery/irsb_scanner.py +143 -0
- angr/analyses/variable_recovery/variable_recovery.py +574 -0
- angr/analyses/variable_recovery/variable_recovery_base.py +489 -0
- angr/analyses/variable_recovery/variable_recovery_fast.py +661 -0
- angr/analyses/veritesting.py +626 -0
- angr/analyses/vfg.py +1898 -0
- angr/analyses/vsa_ddg.py +420 -0
- angr/analyses/vtable.py +92 -0
- angr/analyses/xrefs.py +286 -0
- angr/angrdb/__init__.py +14 -0
- angr/angrdb/db.py +206 -0
- angr/angrdb/models.py +184 -0
- angr/angrdb/serializers/__init__.py +10 -0
- angr/angrdb/serializers/cfg_model.py +41 -0
- angr/angrdb/serializers/comments.py +60 -0
- angr/angrdb/serializers/funcs.py +61 -0
- angr/angrdb/serializers/kb.py +111 -0
- angr/angrdb/serializers/labels.py +59 -0
- angr/angrdb/serializers/loader.py +165 -0
- angr/angrdb/serializers/structured_code.py +125 -0
- angr/angrdb/serializers/variables.py +58 -0
- angr/angrdb/serializers/xrefs.py +48 -0
- angr/annocfg.py +317 -0
- angr/blade.py +431 -0
- angr/block.py +509 -0
- angr/callable.py +168 -0
- angr/calling_conventions.py +2580 -0
- angr/code_location.py +163 -0
- angr/codenode.py +145 -0
- angr/concretization_strategies/__init__.py +32 -0
- angr/concretization_strategies/any.py +17 -0
- angr/concretization_strategies/any_named.py +35 -0
- angr/concretization_strategies/base.py +81 -0
- angr/concretization_strategies/controlled_data.py +58 -0
- angr/concretization_strategies/eval.py +19 -0
- angr/concretization_strategies/logging.py +35 -0
- angr/concretization_strategies/max.py +25 -0
- angr/concretization_strategies/nonzero.py +16 -0
- angr/concretization_strategies/nonzero_range.py +22 -0
- angr/concretization_strategies/norepeats.py +37 -0
- angr/concretization_strategies/norepeats_range.py +37 -0
- angr/concretization_strategies/range.py +19 -0
- angr/concretization_strategies/signed_add.py +31 -0
- angr/concretization_strategies/single.py +15 -0
- angr/concretization_strategies/solutions.py +20 -0
- angr/concretization_strategies/unlimited_range.py +17 -0
- angr/distributed/__init__.py +9 -0
- angr/distributed/server.py +197 -0
- angr/distributed/worker.py +185 -0
- angr/emulator.py +143 -0
- angr/engines/__init__.py +67 -0
- angr/engines/concrete.py +66 -0
- angr/engines/engine.py +29 -0
- angr/engines/failure.py +27 -0
- angr/engines/hook.py +68 -0
- angr/engines/icicle.py +278 -0
- angr/engines/light/__init__.py +23 -0
- angr/engines/light/data.py +681 -0
- angr/engines/light/engine.py +1285 -0
- angr/engines/pcode/__init__.py +9 -0
- angr/engines/pcode/behavior.py +994 -0
- angr/engines/pcode/cc.py +128 -0
- angr/engines/pcode/emulate.py +440 -0
- angr/engines/pcode/engine.py +242 -0
- angr/engines/pcode/lifter.py +1420 -0
- angr/engines/procedure.py +70 -0
- angr/engines/soot/__init__.py +5 -0
- angr/engines/soot/engine.py +410 -0
- angr/engines/soot/exceptions.py +17 -0
- angr/engines/soot/expressions/__init__.py +87 -0
- angr/engines/soot/expressions/arrayref.py +22 -0
- angr/engines/soot/expressions/base.py +21 -0
- angr/engines/soot/expressions/binop.py +28 -0
- angr/engines/soot/expressions/cast.py +22 -0
- angr/engines/soot/expressions/condition.py +35 -0
- angr/engines/soot/expressions/constants.py +47 -0
- angr/engines/soot/expressions/instanceOf.py +15 -0
- angr/engines/soot/expressions/instancefieldref.py +8 -0
- angr/engines/soot/expressions/invoke.py +114 -0
- angr/engines/soot/expressions/length.py +8 -0
- angr/engines/soot/expressions/local.py +8 -0
- angr/engines/soot/expressions/new.py +16 -0
- angr/engines/soot/expressions/newArray.py +54 -0
- angr/engines/soot/expressions/newMultiArray.py +86 -0
- angr/engines/soot/expressions/paramref.py +8 -0
- angr/engines/soot/expressions/phi.py +30 -0
- angr/engines/soot/expressions/staticfieldref.py +8 -0
- angr/engines/soot/expressions/thisref.py +7 -0
- angr/engines/soot/expressions/unsupported.py +7 -0
- angr/engines/soot/field_dispatcher.py +46 -0
- angr/engines/soot/method_dispatcher.py +46 -0
- angr/engines/soot/statements/__init__.py +44 -0
- angr/engines/soot/statements/assign.py +30 -0
- angr/engines/soot/statements/base.py +79 -0
- angr/engines/soot/statements/goto.py +14 -0
- angr/engines/soot/statements/identity.py +15 -0
- angr/engines/soot/statements/if_.py +19 -0
- angr/engines/soot/statements/invoke.py +12 -0
- angr/engines/soot/statements/return_.py +20 -0
- angr/engines/soot/statements/switch.py +41 -0
- angr/engines/soot/statements/throw.py +15 -0
- angr/engines/soot/values/__init__.py +38 -0
- angr/engines/soot/values/arrayref.py +122 -0
- angr/engines/soot/values/base.py +7 -0
- angr/engines/soot/values/constants.py +18 -0
- angr/engines/soot/values/instancefieldref.py +44 -0
- angr/engines/soot/values/local.py +18 -0
- angr/engines/soot/values/paramref.py +18 -0
- angr/engines/soot/values/staticfieldref.py +38 -0
- angr/engines/soot/values/strref.py +38 -0
- angr/engines/soot/values/thisref.py +149 -0
- angr/engines/successors.py +654 -0
- angr/engines/syscall.py +51 -0
- angr/engines/unicorn.py +490 -0
- angr/engines/vex/__init__.py +20 -0
- angr/engines/vex/claripy/__init__.py +5 -0
- angr/engines/vex/claripy/ccall.py +2097 -0
- angr/engines/vex/claripy/datalayer.py +141 -0
- angr/engines/vex/claripy/irop.py +1276 -0
- angr/engines/vex/heavy/__init__.py +16 -0
- angr/engines/vex/heavy/actions.py +231 -0
- angr/engines/vex/heavy/concretizers.py +403 -0
- angr/engines/vex/heavy/dirty.py +466 -0
- angr/engines/vex/heavy/heavy.py +370 -0
- angr/engines/vex/heavy/inspect.py +52 -0
- angr/engines/vex/heavy/resilience.py +85 -0
- angr/engines/vex/heavy/super_fastpath.py +34 -0
- angr/engines/vex/lifter.py +420 -0
- angr/engines/vex/light/__init__.py +11 -0
- angr/engines/vex/light/light.py +551 -0
- angr/engines/vex/light/resilience.py +74 -0
- angr/engines/vex/light/slicing.py +52 -0
- angr/errors.py +609 -0
- angr/exploration_techniques/__init__.py +53 -0
- angr/exploration_techniques/base.py +126 -0
- angr/exploration_techniques/bucketizer.py +94 -0
- angr/exploration_techniques/common.py +56 -0
- angr/exploration_techniques/dfs.py +37 -0
- angr/exploration_techniques/director.py +520 -0
- angr/exploration_techniques/driller_core.py +100 -0
- angr/exploration_techniques/explorer.py +152 -0
- angr/exploration_techniques/lengthlimiter.py +22 -0
- angr/exploration_techniques/local_loop_seer.py +65 -0
- angr/exploration_techniques/loop_seer.py +236 -0
- angr/exploration_techniques/manual_mergepoint.py +82 -0
- angr/exploration_techniques/memory_watcher.py +43 -0
- angr/exploration_techniques/oppologist.py +92 -0
- angr/exploration_techniques/slicecutor.py +118 -0
- angr/exploration_techniques/spiller.py +280 -0
- angr/exploration_techniques/spiller_db.py +27 -0
- angr/exploration_techniques/stochastic.py +56 -0
- angr/exploration_techniques/stub_stasher.py +19 -0
- angr/exploration_techniques/suggestions.py +159 -0
- angr/exploration_techniques/tech_builder.py +49 -0
- angr/exploration_techniques/threading.py +69 -0
- angr/exploration_techniques/timeout.py +34 -0
- angr/exploration_techniques/tracer.py +1098 -0
- angr/exploration_techniques/unique.py +106 -0
- angr/exploration_techniques/veritesting.py +37 -0
- angr/factory.py +404 -0
- angr/flirt/__init__.py +97 -0
- angr/flirt/build_sig.py +305 -0
- angr/graph_utils.py +0 -0
- angr/keyed_region.py +525 -0
- angr/knowledge_base.py +143 -0
- angr/knowledge_plugins/__init__.py +43 -0
- angr/knowledge_plugins/callsite_prototypes.py +53 -0
- angr/knowledge_plugins/cfg/__init__.py +18 -0
- angr/knowledge_plugins/cfg/cfg_manager.py +95 -0
- angr/knowledge_plugins/cfg/cfg_model.py +1045 -0
- angr/knowledge_plugins/cfg/cfg_node.py +536 -0
- angr/knowledge_plugins/cfg/indirect_jump.py +65 -0
- angr/knowledge_plugins/cfg/memory_data.py +156 -0
- angr/knowledge_plugins/comments.py +16 -0
- angr/knowledge_plugins/custom_strings.py +38 -0
- angr/knowledge_plugins/data.py +22 -0
- angr/knowledge_plugins/debug_variables.py +216 -0
- angr/knowledge_plugins/functions/__init__.py +9 -0
- angr/knowledge_plugins/functions/function.py +1780 -0
- angr/knowledge_plugins/functions/function_manager.py +588 -0
- angr/knowledge_plugins/functions/function_parser.py +299 -0
- angr/knowledge_plugins/functions/soot_function.py +128 -0
- angr/knowledge_plugins/indirect_jumps.py +35 -0
- angr/knowledge_plugins/key_definitions/__init__.py +17 -0
- angr/knowledge_plugins/key_definitions/atoms.py +374 -0
- angr/knowledge_plugins/key_definitions/constants.py +29 -0
- angr/knowledge_plugins/key_definitions/definition.py +214 -0
- angr/knowledge_plugins/key_definitions/environment.py +96 -0
- angr/knowledge_plugins/key_definitions/heap_address.py +33 -0
- angr/knowledge_plugins/key_definitions/key_definition_manager.py +82 -0
- angr/knowledge_plugins/key_definitions/live_definitions.py +1010 -0
- angr/knowledge_plugins/key_definitions/liveness.py +165 -0
- angr/knowledge_plugins/key_definitions/rd_model.py +171 -0
- angr/knowledge_plugins/key_definitions/tag.py +78 -0
- angr/knowledge_plugins/key_definitions/undefined.py +70 -0
- angr/knowledge_plugins/key_definitions/unknown_size.py +86 -0
- angr/knowledge_plugins/key_definitions/uses.py +178 -0
- angr/knowledge_plugins/labels.py +110 -0
- angr/knowledge_plugins/obfuscations.py +37 -0
- angr/knowledge_plugins/patches.py +126 -0
- angr/knowledge_plugins/plugin.py +24 -0
- angr/knowledge_plugins/propagations/__init__.py +10 -0
- angr/knowledge_plugins/propagations/prop_value.py +191 -0
- angr/knowledge_plugins/propagations/propagation_manager.py +60 -0
- angr/knowledge_plugins/propagations/propagation_model.py +80 -0
- angr/knowledge_plugins/propagations/states.py +552 -0
- angr/knowledge_plugins/structured_code.py +63 -0
- angr/knowledge_plugins/types.py +88 -0
- angr/knowledge_plugins/variables/__init__.py +8 -0
- angr/knowledge_plugins/variables/variable_access.py +113 -0
- angr/knowledge_plugins/variables/variable_manager.py +1380 -0
- angr/knowledge_plugins/xrefs/__init__.py +12 -0
- angr/knowledge_plugins/xrefs/xref.py +150 -0
- angr/knowledge_plugins/xrefs/xref_manager.py +127 -0
- angr/knowledge_plugins/xrefs/xref_types.py +16 -0
- angr/misc/__init__.py +19 -0
- angr/misc/ansi.py +47 -0
- angr/misc/autoimport.py +90 -0
- angr/misc/bug_report.py +117 -0
- angr/misc/hookset.py +106 -0
- angr/misc/loggers.py +130 -0
- angr/misc/picklable_lock.py +46 -0
- angr/misc/plugins.py +289 -0
- angr/misc/telemetry.py +54 -0
- angr/misc/testing.py +24 -0
- angr/misc/ux.py +31 -0
- angr/procedures/__init__.py +12 -0
- angr/procedures/advapi32/__init__.py +0 -0
- angr/procedures/cgc/__init__.py +3 -0
- angr/procedures/cgc/_terminate.py +11 -0
- angr/procedures/cgc/allocate.py +75 -0
- angr/procedures/cgc/deallocate.py +67 -0
- angr/procedures/cgc/fdwait.py +65 -0
- angr/procedures/cgc/random.py +67 -0
- angr/procedures/cgc/receive.py +93 -0
- angr/procedures/cgc/transmit.py +65 -0
- angr/procedures/definitions/__init__.py +779 -0
- angr/procedures/definitions/cgc.py +20 -0
- angr/procedures/definitions/glibc.py +8372 -0
- angr/procedures/definitions/gnulib.py +32 -0
- angr/procedures/definitions/libstdcpp.py +21 -0
- angr/procedures/definitions/linux_kernel.py +6171 -0
- angr/procedures/definitions/linux_loader.py +7 -0
- angr/procedures/definitions/msvcr.py +16 -0
- angr/procedures/definitions/parse_syscalls_from_local_system.py +50 -0
- angr/procedures/definitions/parse_win32json.py +2553 -0
- angr/procedures/definitions/types_stl.py +22 -0
- angr/procedures/definitions/types_win32.py +34482 -0
- angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +30 -0
- angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +26 -0
- angr/procedures/definitions/wdk_clfs.py +140 -0
- angr/procedures/definitions/wdk_fltmgr.py +556 -0
- angr/procedures/definitions/wdk_fwpkclnt.py +30 -0
- angr/procedures/definitions/wdk_fwpuclnt.py +316 -0
- angr/procedures/definitions/wdk_gdi32.py +366 -0
- angr/procedures/definitions/wdk_hal.py +78 -0
- angr/procedures/definitions/wdk_ksecdd.py +62 -0
- angr/procedures/definitions/wdk_ndis.py +238 -0
- angr/procedures/definitions/wdk_ntoskrnl.py +3451 -0
- angr/procedures/definitions/wdk_offreg.py +72 -0
- angr/procedures/definitions/wdk_pshed.py +36 -0
- angr/procedures/definitions/wdk_secur32.py +40 -0
- angr/procedures/definitions/wdk_vhfum.py +34 -0
- angr/procedures/definitions/win32_aclui.py +30 -0
- angr/procedures/definitions/win32_activeds.py +68 -0
- angr/procedures/definitions/win32_advapi32.py +1684 -0
- angr/procedures/definitions/win32_advpack.py +124 -0
- angr/procedures/definitions/win32_amsi.py +38 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +44 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +34 -0
- angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +34 -0
- angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +46 -0
- angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +48 -0
- angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +32 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +32 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +32 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +68 -0
- angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +44 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +38 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +40 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +24 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +24 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +76 -0
- angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +24 -0
- angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +42 -0
- angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +34 -0
- angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +38 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +38 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +40 -0
- angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +40 -0
- angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +30 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +36 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +26 -0
- angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +28 -0
- angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +38 -0
- angr/procedures/definitions/win32_apphelp.py +26 -0
- angr/procedures/definitions/win32_authz.py +90 -0
- angr/procedures/definitions/win32_avicap32.py +32 -0
- angr/procedures/definitions/win32_avifil32.py +144 -0
- angr/procedures/definitions/win32_avrt.py +52 -0
- angr/procedures/definitions/win32_bcp47mrm.py +28 -0
- angr/procedures/definitions/win32_bcrypt.py +130 -0
- angr/procedures/definitions/win32_bcryptprimitives.py +28 -0
- angr/procedures/definitions/win32_bluetoothapis.py +106 -0
- angr/procedures/definitions/win32_bthprops.py +34 -0
- angr/procedures/definitions/win32_bthprops_cpl.py +36 -0
- angr/procedures/definitions/win32_cabinet.py +68 -0
- angr/procedures/definitions/win32_certadm.py +60 -0
- angr/procedures/definitions/win32_certpoleng.py +40 -0
- angr/procedures/definitions/win32_cfgmgr32.py +502 -0
- angr/procedures/definitions/win32_chakra.py +198 -0
- angr/procedures/definitions/win32_cldapi.py +96 -0
- angr/procedures/definitions/win32_clfsw32.py +142 -0
- angr/procedures/definitions/win32_clusapi.py +584 -0
- angr/procedures/definitions/win32_comctl32.py +254 -0
- angr/procedures/definitions/win32_comdlg32.py +66 -0
- angr/procedures/definitions/win32_compstui.py +32 -0
- angr/procedures/definitions/win32_computecore.py +132 -0
- angr/procedures/definitions/win32_computenetwork.py +110 -0
- angr/procedures/definitions/win32_computestorage.py +48 -0
- angr/procedures/definitions/win32_comsvcs.py +38 -0
- angr/procedures/definitions/win32_coremessaging.py +24 -0
- angr/procedures/definitions/win32_credui.py +62 -0
- angr/procedures/definitions/win32_crypt32.py +482 -0
- angr/procedures/definitions/win32_cryptnet.py +34 -0
- angr/procedures/definitions/win32_cryptui.py +44 -0
- angr/procedures/definitions/win32_cryptxml.py +62 -0
- angr/procedures/definitions/win32_cscapi.py +32 -0
- angr/procedures/definitions/win32_d2d1.py +50 -0
- angr/procedures/definitions/win32_d3d10.py +78 -0
- angr/procedures/definitions/win32_d3d10_1.py +28 -0
- angr/procedures/definitions/win32_d3d11.py +30 -0
- angr/procedures/definitions/win32_d3d12.py +40 -0
- angr/procedures/definitions/win32_d3d9.py +46 -0
- angr/procedures/definitions/win32_d3dcompiler_47.py +76 -0
- angr/procedures/definitions/win32_d3dcsx.py +42 -0
- angr/procedures/definitions/win32_davclnt.py +60 -0
- angr/procedures/definitions/win32_dbgeng.py +32 -0
- angr/procedures/definitions/win32_dbghelp.py +462 -0
- angr/procedures/definitions/win32_dbgmodel.py +26 -0
- angr/procedures/definitions/win32_dciman32.py +64 -0
- angr/procedures/definitions/win32_dcomp.py +48 -0
- angr/procedures/definitions/win32_ddraw.py +38 -0
- angr/procedures/definitions/win32_deviceaccess.py +26 -0
- angr/procedures/definitions/win32_dflayout.py +26 -0
- angr/procedures/definitions/win32_dhcpcsvc.py +54 -0
- angr/procedures/definitions/win32_dhcpcsvc6.py +36 -0
- angr/procedures/definitions/win32_dhcpsapi.py +416 -0
- angr/procedures/definitions/win32_diagnosticdataquery.py +94 -0
- angr/procedures/definitions/win32_dinput8.py +26 -0
- angr/procedures/definitions/win32_directml.py +28 -0
- angr/procedures/definitions/win32_dmprocessxmlfiltered.py +26 -0
- angr/procedures/definitions/win32_dnsapi.py +152 -0
- angr/procedures/definitions/win32_drt.py +56 -0
- angr/procedures/definitions/win32_drtprov.py +42 -0
- angr/procedures/definitions/win32_drttransport.py +28 -0
- angr/procedures/definitions/win32_dsound.py +44 -0
- angr/procedures/definitions/win32_dsparse.py +62 -0
- angr/procedures/definitions/win32_dsprop.py +38 -0
- angr/procedures/definitions/win32_dssec.py +32 -0
- angr/procedures/definitions/win32_dsuiext.py +32 -0
- angr/procedures/definitions/win32_dwmapi.py +86 -0
- angr/procedures/definitions/win32_dwrite.py +26 -0
- angr/procedures/definitions/win32_dxcompiler.py +28 -0
- angr/procedures/definitions/win32_dxcore.py +26 -0
- angr/procedures/definitions/win32_dxgi.py +36 -0
- angr/procedures/definitions/win32_dxva2.py +100 -0
- angr/procedures/definitions/win32_eappcfg.py +52 -0
- angr/procedures/definitions/win32_eappprxy.py +60 -0
- angr/procedures/definitions/win32_efswrt.py +28 -0
- angr/procedures/definitions/win32_elscore.py +34 -0
- angr/procedures/definitions/win32_esent.py +482 -0
- angr/procedures/definitions/win32_evr.py +38 -0
- angr/procedures/definitions/win32_faultrep.py +32 -0
- angr/procedures/definitions/win32_fhsvcctl.py +38 -0
- angr/procedures/definitions/win32_firewallapi.py +30 -0
- angr/procedures/definitions/win32_fltlib.py +80 -0
- angr/procedures/definitions/win32_fontsub.py +28 -0
- angr/procedures/definitions/win32_forceinline.py +30 -0
- angr/procedures/definitions/win32_fwpuclnt.py +408 -0
- angr/procedures/definitions/win32_fxsutility.py +28 -0
- angr/procedures/definitions/win32_gdi32.py +886 -0
- angr/procedures/definitions/win32_gdiplus.py +1282 -0
- angr/procedures/definitions/win32_glu32.py +128 -0
- angr/procedures/definitions/win32_gpedit.py +36 -0
- angr/procedures/definitions/win32_hhctrl_ocx.py +28 -0
- angr/procedures/definitions/win32_hid.py +114 -0
- angr/procedures/definitions/win32_hlink.py +80 -0
- angr/procedures/definitions/win32_hrtfapo.py +26 -0
- angr/procedures/definitions/win32_httpapi.py +110 -0
- angr/procedures/definitions/win32_icm32.py +66 -0
- angr/procedures/definitions/win32_icmui.py +28 -0
- angr/procedures/definitions/win32_icu.py +2074 -0
- angr/procedures/definitions/win32_ieframe.py +82 -0
- angr/procedures/definitions/win32_imagehlp.py +76 -0
- angr/procedures/definitions/win32_imgutil.py +42 -0
- angr/procedures/definitions/win32_imm32.py +188 -0
- angr/procedures/definitions/win32_infocardapi.py +58 -0
- angr/procedures/definitions/win32_inkobjcore.py +78 -0
- angr/procedures/definitions/win32_iphlpapi.py +426 -0
- angr/procedures/definitions/win32_iscsidsc.py +182 -0
- angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +28 -0
- angr/procedures/definitions/win32_kernel32.py +3185 -0
- angr/procedures/definitions/win32_kernelbase.py +36 -0
- angr/procedures/definitions/win32_keycredmgr.py +32 -0
- angr/procedures/definitions/win32_ksproxy_ax.py +36 -0
- angr/procedures/definitions/win32_ksuser.py +40 -0
- angr/procedures/definitions/win32_ktmw32.py +102 -0
- angr/procedures/definitions/win32_licenseprotection.py +28 -0
- angr/procedures/definitions/win32_loadperf.py +48 -0
- angr/procedures/definitions/win32_magnification.py +62 -0
- angr/procedures/definitions/win32_mapi32.py +156 -0
- angr/procedures/definitions/win32_mdmlocalmanagement.py +30 -0
- angr/procedures/definitions/win32_mdmregistration.py +54 -0
- angr/procedures/definitions/win32_mf.py +148 -0
- angr/procedures/definitions/win32_mfcore.py +28 -0
- angr/procedures/definitions/win32_mfplat.py +314 -0
- angr/procedures/definitions/win32_mfplay.py +26 -0
- angr/procedures/definitions/win32_mfreadwrite.py +34 -0
- angr/procedures/definitions/win32_mfsensorgroup.py +44 -0
- angr/procedures/definitions/win32_mfsrcsnk.py +28 -0
- angr/procedures/definitions/win32_mgmtapi.py +42 -0
- angr/procedures/definitions/win32_mi.py +26 -0
- angr/procedures/definitions/win32_mmdevapi.py +26 -0
- angr/procedures/definitions/win32_mpr.py +118 -0
- angr/procedures/definitions/win32_mprapi.py +248 -0
- angr/procedures/definitions/win32_mqrt.py +92 -0
- angr/procedures/definitions/win32_mrmsupport.py +78 -0
- angr/procedures/definitions/win32_msacm32.py +108 -0
- angr/procedures/definitions/win32_msajapi.py +1118 -0
- angr/procedures/definitions/win32_mscms.py +182 -0
- angr/procedures/definitions/win32_mscoree.py +78 -0
- angr/procedures/definitions/win32_msctfmonitor.py +30 -0
- angr/procedures/definitions/win32_msdelta.py +56 -0
- angr/procedures/definitions/win32_msdmo.py +46 -0
- angr/procedures/definitions/win32_msdrm.py +192 -0
- angr/procedures/definitions/win32_msi.py +552 -0
- angr/procedures/definitions/win32_msimg32.py +30 -0
- angr/procedures/definitions/win32_mspatcha.py +56 -0
- angr/procedures/definitions/win32_mspatchc.py +42 -0
- angr/procedures/definitions/win32_msports.py +38 -0
- angr/procedures/definitions/win32_msrating.py +62 -0
- angr/procedures/definitions/win32_mssign32.py +44 -0
- angr/procedures/definitions/win32_mstask.py +28 -0
- angr/procedures/definitions/win32_msvfw32.py +110 -0
- angr/procedures/definitions/win32_mswsock.py +56 -0
- angr/procedures/definitions/win32_mtxdm.py +26 -0
- angr/procedures/definitions/win32_ncrypt.py +102 -0
- angr/procedures/definitions/win32_ndfapi.py +56 -0
- angr/procedures/definitions/win32_netapi32.py +436 -0
- angr/procedures/definitions/win32_netsh.py +40 -0
- angr/procedures/definitions/win32_netshell.py +28 -0
- angr/procedures/definitions/win32_newdev.py +46 -0
- angr/procedures/definitions/win32_ninput.py +84 -0
- angr/procedures/definitions/win32_normaliz.py +28 -0
- angr/procedures/definitions/win32_ntdll.py +171 -0
- angr/procedures/definitions/win32_ntdllk.py +26 -0
- angr/procedures/definitions/win32_ntdsapi.py +186 -0
- angr/procedures/definitions/win32_ntlanman.py +44 -0
- angr/procedures/definitions/win32_odbc32.py +392 -0
- angr/procedures/definitions/win32_odbcbcp.py +78 -0
- angr/procedures/definitions/win32_ole32.py +658 -0
- angr/procedures/definitions/win32_oleacc.py +58 -0
- angr/procedures/definitions/win32_oleaut32.py +834 -0
- angr/procedures/definitions/win32_oledlg.py +70 -0
- angr/procedures/definitions/win32_ondemandconnroutehelper.py +34 -0
- angr/procedures/definitions/win32_opengl32.py +734 -0
- angr/procedures/definitions/win32_opmxbox.py +30 -0
- angr/procedures/definitions/win32_p2p.py +240 -0
- angr/procedures/definitions/win32_p2pgraph.py +98 -0
- angr/procedures/definitions/win32_pdh.py +220 -0
- angr/procedures/definitions/win32_peerdist.py +80 -0
- angr/procedures/definitions/win32_powrprof.py +192 -0
- angr/procedures/definitions/win32_prntvpt.py +46 -0
- angr/procedures/definitions/win32_projectedfslib.py +62 -0
- angr/procedures/definitions/win32_propsys.py +460 -0
- angr/procedures/definitions/win32_psapi.py +78 -0
- angr/procedures/definitions/win32_quartz.py +28 -0
- angr/procedures/definitions/win32_query.py +32 -0
- angr/procedures/definitions/win32_qwave.py +46 -0
- angr/procedures/definitions/win32_rasapi32.py +192 -0
- angr/procedures/definitions/win32_rasdlg.py +36 -0
- angr/procedures/definitions/win32_resutils.py +264 -0
- angr/procedures/definitions/win32_rometadata.py +24 -0
- angr/procedures/definitions/win32_rpcns4.py +146 -0
- angr/procedures/definitions/win32_rpcproxy.py +32 -0
- angr/procedures/definitions/win32_rpcrt4.py +918 -0
- angr/procedures/definitions/win32_rstrtmgr.py +46 -0
- angr/procedures/definitions/win32_rtm.py +176 -0
- angr/procedures/definitions/win32_rtutils.py +106 -0
- angr/procedures/definitions/win32_rtworkq.py +90 -0
- angr/procedures/definitions/win32_sas.py +26 -0
- angr/procedures/definitions/win32_scarddlg.py +34 -0
- angr/procedures/definitions/win32_schannel.py +42 -0
- angr/procedures/definitions/win32_sechost.py +28 -0
- angr/procedures/definitions/win32_secur32.py +202 -0
- angr/procedures/definitions/win32_sensapi.py +30 -0
- angr/procedures/definitions/win32_sensorsutilsv2.py +104 -0
- angr/procedures/definitions/win32_setupapi.py +692 -0
- angr/procedures/definitions/win32_sfc.py +36 -0
- angr/procedures/definitions/win32_shdocvw.py +30 -0
- angr/procedures/definitions/win32_shell32.py +512 -0
- angr/procedures/definitions/win32_shlwapi.py +744 -0
- angr/procedures/definitions/win32_slc.py +88 -0
- angr/procedures/definitions/win32_slcext.py +32 -0
- angr/procedures/definitions/win32_slwga.py +26 -0
- angr/procedures/definitions/win32_snmpapi.py +76 -0
- angr/procedures/definitions/win32_spoolss.py +76 -0
- angr/procedures/definitions/win32_srclient.py +26 -0
- angr/procedures/definitions/win32_srpapi.py +46 -0
- angr/procedures/definitions/win32_sspicli.py +38 -0
- angr/procedures/definitions/win32_sti.py +26 -0
- angr/procedures/definitions/win32_t2embed.py +52 -0
- angr/procedures/definitions/win32_tapi32.py +522 -0
- angr/procedures/definitions/win32_tbs.py +52 -0
- angr/procedures/definitions/win32_tdh.py +78 -0
- angr/procedures/definitions/win32_tokenbinding.py +44 -0
- angr/procedures/definitions/win32_traffic.py +64 -0
- angr/procedures/definitions/win32_txfw32.py +42 -0
- angr/procedures/definitions/win32_ualapi.py +32 -0
- angr/procedures/definitions/win32_uiautomationcore.py +220 -0
- angr/procedures/definitions/win32_urlmon.py +178 -0
- angr/procedures/definitions/win32_user32.py +1551 -0
- angr/procedures/definitions/win32_userenv.py +112 -0
- angr/procedures/definitions/win32_usp10.py +104 -0
- angr/procedures/definitions/win32_uxtheme.py +178 -0
- angr/procedures/definitions/win32_verifier.py +26 -0
- angr/procedures/definitions/win32_version.py +52 -0
- angr/procedures/definitions/win32_vertdll.py +38 -0
- angr/procedures/definitions/win32_virtdisk.py +82 -0
- angr/procedures/definitions/win32_vmdevicehost.py +50 -0
- angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +110 -0
- angr/procedures/definitions/win32_vssapi.py +26 -0
- angr/procedures/definitions/win32_wcmapi.py +34 -0
- angr/procedures/definitions/win32_wdsbp.py +38 -0
- angr/procedures/definitions/win32_wdsclientapi.py +98 -0
- angr/procedures/definitions/win32_wdsmc.py +36 -0
- angr/procedures/definitions/win32_wdspxe.py +86 -0
- angr/procedures/definitions/win32_wdstptc.py +50 -0
- angr/procedures/definitions/win32_webauthn.py +50 -0
- angr/procedures/definitions/win32_webservices.py +410 -0
- angr/procedures/definitions/win32_websocket.py +50 -0
- angr/procedures/definitions/win32_wecapi.py +54 -0
- angr/procedures/definitions/win32_wer.py +66 -0
- angr/procedures/definitions/win32_wevtapi.py +94 -0
- angr/procedures/definitions/win32_winbio.py +132 -0
- angr/procedures/definitions/win32_windows_ai_machinelearning.py +26 -0
- angr/procedures/definitions/win32_windows_data_pdf.py +24 -0
- angr/procedures/definitions/win32_windows_media_mediacontrol.py +40 -0
- angr/procedures/definitions/win32_windows_networking.py +26 -0
- angr/procedures/definitions/win32_windows_ui_xaml.py +28 -0
- angr/procedures/definitions/win32_windowscodecs.py +42 -0
- angr/procedures/definitions/win32_winfax.py +136 -0
- angr/procedures/definitions/win32_winhttp.py +136 -0
- angr/procedures/definitions/win32_winhvemulation.py +32 -0
- angr/procedures/definitions/win32_winhvplatform.py +156 -0
- angr/procedures/definitions/win32_wininet.py +616 -0
- angr/procedures/definitions/win32_winml.py +26 -0
- angr/procedures/definitions/win32_winmm.py +376 -0
- angr/procedures/definitions/win32_winscard.py +164 -0
- angr/procedures/definitions/win32_winspool.py +364 -0
- angr/procedures/definitions/win32_winspool_drv.py +368 -0
- angr/procedures/definitions/win32_wintrust.py +144 -0
- angr/procedures/definitions/win32_winusb.py +92 -0
- angr/procedures/definitions/win32_wlanapi.py +144 -0
- angr/procedures/definitions/win32_wlanui.py +26 -0
- angr/procedures/definitions/win32_wldap32.py +510 -0
- angr/procedures/definitions/win32_wldp.py +42 -0
- angr/procedures/definitions/win32_wmvcore.py +46 -0
- angr/procedures/definitions/win32_wnvapi.py +28 -0
- angr/procedures/definitions/win32_wofutil.py +46 -0
- angr/procedures/definitions/win32_ws2_32.py +344 -0
- angr/procedures/definitions/win32_wscapi.py +36 -0
- angr/procedures/definitions/win32_wsclient.py +30 -0
- angr/procedures/definitions/win32_wsdapi.py +88 -0
- angr/procedures/definitions/win32_wsmsvc.py +90 -0
- angr/procedures/definitions/win32_wsnmp32.py +122 -0
- angr/procedures/definitions/win32_wtsapi32.py +150 -0
- angr/procedures/definitions/win32_xaudio2_8.py +32 -0
- angr/procedures/definitions/win32_xinput1_4.py +38 -0
- angr/procedures/definitions/win32_xinputuap.py +36 -0
- angr/procedures/definitions/win32_xmllite.py +36 -0
- angr/procedures/definitions/win32_xolehlp.py +32 -0
- angr/procedures/definitions/win32_xpsprint.py +28 -0
- angr/procedures/glibc/__ctype_b_loc.py +21 -0
- angr/procedures/glibc/__ctype_tolower_loc.py +21 -0
- angr/procedures/glibc/__ctype_toupper_loc.py +21 -0
- angr/procedures/glibc/__errno_location.py +7 -0
- angr/procedures/glibc/__init__.py +3 -0
- angr/procedures/glibc/__libc_init.py +37 -0
- angr/procedures/glibc/__libc_start_main.py +301 -0
- angr/procedures/glibc/dynamic_loading.py +20 -0
- angr/procedures/glibc/scanf.py +11 -0
- angr/procedures/glibc/sscanf.py +6 -0
- angr/procedures/gnulib/__init__.py +3 -0
- angr/procedures/gnulib/xalloc_die.py +14 -0
- angr/procedures/gnulib/xstrtol_fatal.py +14 -0
- angr/procedures/java/__init__.py +42 -0
- angr/procedures/java/unconstrained.py +65 -0
- angr/procedures/java_io/__init__.py +0 -0
- angr/procedures/java_io/read.py +12 -0
- angr/procedures/java_io/write.py +17 -0
- angr/procedures/java_jni/__init__.py +482 -0
- angr/procedures/java_jni/array_operations.py +312 -0
- angr/procedures/java_jni/class_and_interface_operations.py +31 -0
- angr/procedures/java_jni/field_access.py +173 -0
- angr/procedures/java_jni/global_and_local_refs.py +57 -0
- angr/procedures/java_jni/method_calls.py +365 -0
- angr/procedures/java_jni/not_implemented.py +26 -0
- angr/procedures/java_jni/object_operations.py +94 -0
- angr/procedures/java_jni/string_operations.py +87 -0
- angr/procedures/java_jni/version_information.py +12 -0
- angr/procedures/java_lang/__init__.py +0 -0
- angr/procedures/java_lang/character.py +30 -0
- angr/procedures/java_lang/double.py +24 -0
- angr/procedures/java_lang/exit.py +13 -0
- angr/procedures/java_lang/getsimplename.py +18 -0
- angr/procedures/java_lang/integer.py +43 -0
- angr/procedures/java_lang/load_library.py +9 -0
- angr/procedures/java_lang/math.py +15 -0
- angr/procedures/java_lang/string.py +78 -0
- angr/procedures/java_lang/stringbuilder.py +44 -0
- angr/procedures/java_lang/system.py +18 -0
- angr/procedures/java_util/__init__.py +0 -0
- angr/procedures/java_util/collection.py +35 -0
- angr/procedures/java_util/iterator.py +46 -0
- angr/procedures/java_util/list.py +99 -0
- angr/procedures/java_util/map.py +131 -0
- angr/procedures/java_util/random.py +14 -0
- angr/procedures/java_util/scanner_nextline.py +23 -0
- angr/procedures/libc/__init__.py +3 -0
- angr/procedures/libc/abort.py +9 -0
- angr/procedures/libc/access.py +13 -0
- angr/procedures/libc/atoi.py +14 -0
- angr/procedures/libc/atol.py +13 -0
- angr/procedures/libc/calloc.py +8 -0
- angr/procedures/libc/closelog.py +10 -0
- angr/procedures/libc/err.py +14 -0
- angr/procedures/libc/error.py +54 -0
- angr/procedures/libc/exit.py +11 -0
- angr/procedures/libc/fclose.py +19 -0
- angr/procedures/libc/feof.py +21 -0
- angr/procedures/libc/fflush.py +16 -0
- angr/procedures/libc/fgetc.py +27 -0
- angr/procedures/libc/fgets.py +68 -0
- angr/procedures/libc/fopen.py +63 -0
- angr/procedures/libc/fprintf.py +25 -0
- angr/procedures/libc/fputc.py +23 -0
- angr/procedures/libc/fputs.py +24 -0
- angr/procedures/libc/fread.py +24 -0
- angr/procedures/libc/free.py +9 -0
- angr/procedures/libc/fscanf.py +20 -0
- angr/procedures/libc/fseek.py +34 -0
- angr/procedures/libc/ftell.py +22 -0
- angr/procedures/libc/fwrite.py +19 -0
- angr/procedures/libc/getchar.py +13 -0
- angr/procedures/libc/getdelim.py +99 -0
- angr/procedures/libc/getegid.py +8 -0
- angr/procedures/libc/geteuid.py +8 -0
- angr/procedures/libc/getgid.py +8 -0
- angr/procedures/libc/gets.py +68 -0
- angr/procedures/libc/getuid.py +8 -0
- angr/procedures/libc/malloc.py +12 -0
- angr/procedures/libc/memcmp.py +69 -0
- angr/procedures/libc/memcpy.py +38 -0
- angr/procedures/libc/memset.py +72 -0
- angr/procedures/libc/openlog.py +10 -0
- angr/procedures/libc/perror.py +13 -0
- angr/procedures/libc/printf.py +34 -0
- angr/procedures/libc/putchar.py +13 -0
- angr/procedures/libc/puts.py +19 -0
- angr/procedures/libc/rand.py +8 -0
- angr/procedures/libc/realloc.py +8 -0
- angr/procedures/libc/rewind.py +12 -0
- angr/procedures/libc/scanf.py +20 -0
- angr/procedures/libc/setbuf.py +9 -0
- angr/procedures/libc/setvbuf.py +7 -0
- angr/procedures/libc/snprintf.py +36 -0
- angr/procedures/libc/sprintf.py +25 -0
- angr/procedures/libc/srand.py +7 -0
- angr/procedures/libc/sscanf.py +13 -0
- angr/procedures/libc/stpcpy.py +18 -0
- angr/procedures/libc/strcat.py +14 -0
- angr/procedures/libc/strchr.py +48 -0
- angr/procedures/libc/strcmp.py +31 -0
- angr/procedures/libc/strcpy.py +13 -0
- angr/procedures/libc/strlen.py +114 -0
- angr/procedures/libc/strncat.py +19 -0
- angr/procedures/libc/strncmp.py +183 -0
- angr/procedures/libc/strncpy.py +22 -0
- angr/procedures/libc/strnlen.py +13 -0
- angr/procedures/libc/strstr.py +101 -0
- angr/procedures/libc/strtol.py +261 -0
- angr/procedures/libc/strtoul.py +9 -0
- angr/procedures/libc/system.py +13 -0
- angr/procedures/libc/time.py +9 -0
- angr/procedures/libc/tmpnam.py +20 -0
- angr/procedures/libc/tolower.py +10 -0
- angr/procedures/libc/toupper.py +10 -0
- angr/procedures/libc/ungetc.py +20 -0
- angr/procedures/libc/vsnprintf.py +17 -0
- angr/procedures/libc/wchar.py +16 -0
- angr/procedures/libstdcpp/__init__.py +0 -0
- angr/procedures/libstdcpp/_unwind_resume.py +11 -0
- angr/procedures/libstdcpp/std____throw_bad_alloc.py +13 -0
- angr/procedures/libstdcpp/std____throw_bad_cast.py +13 -0
- angr/procedures/libstdcpp/std____throw_length_error.py +13 -0
- angr/procedures/libstdcpp/std____throw_logic_error.py +13 -0
- angr/procedures/libstdcpp/std__terminate.py +13 -0
- angr/procedures/linux_kernel/__init__.py +3 -0
- angr/procedures/linux_kernel/access.py +18 -0
- angr/procedures/linux_kernel/arch_prctl.py +34 -0
- angr/procedures/linux_kernel/arm_user_helpers.py +59 -0
- angr/procedures/linux_kernel/brk.py +18 -0
- angr/procedures/linux_kernel/cwd.py +28 -0
- angr/procedures/linux_kernel/fstat.py +138 -0
- angr/procedures/linux_kernel/fstat64.py +170 -0
- angr/procedures/linux_kernel/futex.py +17 -0
- angr/procedures/linux_kernel/getegid.py +17 -0
- angr/procedures/linux_kernel/geteuid.py +17 -0
- angr/procedures/linux_kernel/getgid.py +17 -0
- angr/procedures/linux_kernel/getpid.py +14 -0
- angr/procedures/linux_kernel/getrlimit.py +24 -0
- angr/procedures/linux_kernel/gettid.py +9 -0
- angr/procedures/linux_kernel/getuid.py +17 -0
- angr/procedures/linux_kernel/iovec.py +47 -0
- angr/procedures/linux_kernel/lseek.py +42 -0
- angr/procedures/linux_kernel/mmap.py +16 -0
- angr/procedures/linux_kernel/mprotect.py +42 -0
- angr/procedures/linux_kernel/munmap.py +8 -0
- angr/procedures/linux_kernel/openat.py +26 -0
- angr/procedures/linux_kernel/set_tid_address.py +8 -0
- angr/procedures/linux_kernel/sigaction.py +19 -0
- angr/procedures/linux_kernel/sigprocmask.py +23 -0
- angr/procedures/linux_kernel/stat.py +23 -0
- angr/procedures/linux_kernel/sysinfo.py +59 -0
- angr/procedures/linux_kernel/tgkill.py +10 -0
- angr/procedures/linux_kernel/time.py +34 -0
- angr/procedures/linux_kernel/uid.py +30 -0
- angr/procedures/linux_kernel/uname.py +29 -0
- angr/procedures/linux_kernel/unlink.py +22 -0
- angr/procedures/linux_kernel/vsyscall.py +16 -0
- angr/procedures/linux_loader/__init__.py +3 -0
- angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +7 -0
- angr/procedures/linux_loader/_dl_rtld_lock.py +15 -0
- angr/procedures/linux_loader/sim_loader.py +54 -0
- angr/procedures/linux_loader/tls.py +40 -0
- angr/procedures/msvcr/__getmainargs.py +16 -0
- angr/procedures/msvcr/__init__.py +4 -0
- angr/procedures/msvcr/_initterm.py +38 -0
- angr/procedures/msvcr/fmode.py +31 -0
- angr/procedures/ntdll/__init__.py +0 -0
- angr/procedures/ntdll/exceptions.py +60 -0
- angr/procedures/posix/__init__.py +3 -0
- angr/procedures/posix/accept.py +29 -0
- angr/procedures/posix/bind.py +13 -0
- angr/procedures/posix/bzero.py +9 -0
- angr/procedures/posix/chroot.py +27 -0
- angr/procedures/posix/close.py +9 -0
- angr/procedures/posix/closedir.py +7 -0
- angr/procedures/posix/dup.py +56 -0
- angr/procedures/posix/fcntl.py +10 -0
- angr/procedures/posix/fdopen.py +76 -0
- angr/procedures/posix/fileno.py +18 -0
- angr/procedures/posix/fork.py +13 -0
- angr/procedures/posix/getenv.py +35 -0
- angr/procedures/posix/gethostbyname.py +43 -0
- angr/procedures/posix/getpass.py +19 -0
- angr/procedures/posix/getsockopt.py +11 -0
- angr/procedures/posix/htonl.py +11 -0
- angr/procedures/posix/htons.py +11 -0
- angr/procedures/posix/inet_ntoa.py +59 -0
- angr/procedures/posix/listen.py +13 -0
- angr/procedures/posix/mmap.py +144 -0
- angr/procedures/posix/open.py +18 -0
- angr/procedures/posix/opendir.py +10 -0
- angr/procedures/posix/poll.py +55 -0
- angr/procedures/posix/pread64.py +46 -0
- angr/procedures/posix/pthread.py +87 -0
- angr/procedures/posix/pwrite64.py +46 -0
- angr/procedures/posix/read.py +13 -0
- angr/procedures/posix/readdir.py +62 -0
- angr/procedures/posix/recv.py +13 -0
- angr/procedures/posix/recvfrom.py +13 -0
- angr/procedures/posix/select.py +48 -0
- angr/procedures/posix/send.py +23 -0
- angr/procedures/posix/setsockopt.py +9 -0
- angr/procedures/posix/sigaction.py +23 -0
- angr/procedures/posix/sim_time.py +48 -0
- angr/procedures/posix/sleep.py +8 -0
- angr/procedures/posix/socket.py +18 -0
- angr/procedures/posix/strcasecmp.py +26 -0
- angr/procedures/posix/strdup.py +18 -0
- angr/procedures/posix/strtok_r.py +64 -0
- angr/procedures/posix/syslog.py +15 -0
- angr/procedures/posix/tz.py +9 -0
- angr/procedures/posix/unlink.py +11 -0
- angr/procedures/posix/usleep.py +8 -0
- angr/procedures/posix/write.py +13 -0
- angr/procedures/procedure_dict.py +50 -0
- angr/procedures/stubs/CallReturn.py +13 -0
- angr/procedures/stubs/NoReturnUnconstrained.py +13 -0
- angr/procedures/stubs/Nop.py +7 -0
- angr/procedures/stubs/PathTerminator.py +9 -0
- angr/procedures/stubs/Redirect.py +18 -0
- angr/procedures/stubs/ReturnChar.py +11 -0
- angr/procedures/stubs/ReturnUnconstrained.py +24 -0
- angr/procedures/stubs/UnresolvableCallTarget.py +9 -0
- angr/procedures/stubs/UnresolvableJumpTarget.py +9 -0
- angr/procedures/stubs/UserHook.py +18 -0
- angr/procedures/stubs/__init__.py +3 -0
- angr/procedures/stubs/b64_decode.py +15 -0
- angr/procedures/stubs/caller.py +14 -0
- angr/procedures/stubs/crazy_scanf.py +20 -0
- angr/procedures/stubs/format_parser.py +669 -0
- angr/procedures/stubs/syscall_stub.py +24 -0
- angr/procedures/testing/__init__.py +3 -0
- angr/procedures/testing/manyargs.py +9 -0
- angr/procedures/testing/retreg.py +8 -0
- angr/procedures/tracer/__init__.py +4 -0
- angr/procedures/tracer/random.py +9 -0
- angr/procedures/tracer/receive.py +23 -0
- angr/procedures/tracer/transmit.py +26 -0
- angr/procedures/uclibc/__init__.py +3 -0
- angr/procedures/uclibc/__uClibc_main.py +10 -0
- angr/procedures/win32/EncodePointer.py +7 -0
- angr/procedures/win32/ExitProcess.py +9 -0
- angr/procedures/win32/GetCommandLine.py +12 -0
- angr/procedures/win32/GetCurrentProcessId.py +7 -0
- angr/procedures/win32/GetCurrentThreadId.py +7 -0
- angr/procedures/win32/GetLastInputInfo.py +40 -0
- angr/procedures/win32/GetModuleHandle.py +29 -0
- angr/procedures/win32/GetProcessAffinityMask.py +37 -0
- angr/procedures/win32/InterlockedExchange.py +15 -0
- angr/procedures/win32/IsProcessorFeaturePresent.py +7 -0
- angr/procedures/win32/VirtualAlloc.py +114 -0
- angr/procedures/win32/VirtualProtect.py +60 -0
- angr/procedures/win32/__init__.py +3 -0
- angr/procedures/win32/critical_section.py +12 -0
- angr/procedures/win32/dynamic_loading.py +104 -0
- angr/procedures/win32/file_handles.py +47 -0
- angr/procedures/win32/gethostbyname.py +12 -0
- angr/procedures/win32/heap.py +45 -0
- angr/procedures/win32/is_bad_ptr.py +26 -0
- angr/procedures/win32/local_storage.py +88 -0
- angr/procedures/win32/mutex.py +11 -0
- angr/procedures/win32/sim_time.py +135 -0
- angr/procedures/win32/system_paths.py +35 -0
- angr/procedures/win32_kernel/ExAllocatePool.py +13 -0
- angr/procedures/win32_kernel/ExFreePoolWithTag.py +8 -0
- angr/procedures/win32_kernel/__fastfail.py +15 -0
- angr/procedures/win32_kernel/__init__.py +3 -0
- angr/procedures/win_user32/__init__.py +0 -0
- angr/procedures/win_user32/chars.py +15 -0
- angr/procedures/win_user32/keyboard.py +14 -0
- angr/procedures/win_user32/messagebox.py +49 -0
- angr/project.py +847 -0
- angr/protos/__init__.py +19 -0
- angr/protos/cfg_pb2.py +31 -0
- angr/protos/function_pb2.py +27 -0
- angr/protos/primitives_pb2.py +52 -0
- angr/protos/variables_pb2.py +44 -0
- angr/protos/xrefs_pb2.py +25 -0
- angr/py.typed +1 -0
- angr/rustylib.abi3.so +0 -0
- angr/serializable.py +66 -0
- angr/sim_manager.py +971 -0
- angr/sim_options.py +438 -0
- angr/sim_procedure.py +606 -0
- angr/sim_state.py +901 -0
- angr/sim_state_options.py +403 -0
- angr/sim_type.py +3702 -0
- angr/sim_variable.py +465 -0
- angr/simos/__init__.py +47 -0
- angr/simos/cgc.py +153 -0
- angr/simos/javavm.py +458 -0
- angr/simos/linux.py +509 -0
- angr/simos/simos.py +444 -0
- angr/simos/snimmuc_nxp.py +149 -0
- angr/simos/userland.py +163 -0
- angr/simos/windows.py +601 -0
- angr/simos/xbox.py +32 -0
- angr/slicer.py +352 -0
- angr/state_hierarchy.py +262 -0
- angr/state_plugins/__init__.py +84 -0
- angr/state_plugins/callstack.py +398 -0
- angr/state_plugins/cgc.py +155 -0
- angr/state_plugins/debug_variables.py +192 -0
- angr/state_plugins/filesystem.py +463 -0
- angr/state_plugins/gdb.py +148 -0
- angr/state_plugins/globals.py +65 -0
- angr/state_plugins/heap/__init__.py +15 -0
- angr/state_plugins/heap/heap_base.py +128 -0
- angr/state_plugins/heap/heap_brk.py +136 -0
- angr/state_plugins/heap/heap_freelist.py +213 -0
- angr/state_plugins/heap/heap_libc.py +46 -0
- angr/state_plugins/heap/heap_ptmalloc.py +620 -0
- angr/state_plugins/heap/utils.py +22 -0
- angr/state_plugins/history.py +564 -0
- angr/state_plugins/inspect.py +375 -0
- angr/state_plugins/javavm_classloader.py +134 -0
- angr/state_plugins/jni_references.py +95 -0
- angr/state_plugins/libc.py +1263 -0
- angr/state_plugins/light_registers.py +168 -0
- angr/state_plugins/log.py +84 -0
- angr/state_plugins/loop_data.py +92 -0
- angr/state_plugins/plugin.py +170 -0
- angr/state_plugins/posix.py +703 -0
- angr/state_plugins/preconstrainer.py +196 -0
- angr/state_plugins/scratch.py +173 -0
- angr/state_plugins/sim_action.py +326 -0
- angr/state_plugins/sim_action_object.py +271 -0
- angr/state_plugins/sim_event.py +59 -0
- angr/state_plugins/solver.py +1127 -0
- angr/state_plugins/symbolizer.py +291 -0
- angr/state_plugins/trace_additions.py +738 -0
- angr/state_plugins/uc_manager.py +94 -0
- angr/state_plugins/unicorn_engine.py +1886 -0
- angr/state_plugins/view.py +340 -0
- angr/storage/__init__.py +15 -0
- angr/storage/file.py +1210 -0
- angr/storage/memory_mixins/__init__.py +317 -0
- angr/storage/memory_mixins/actions_mixin.py +72 -0
- angr/storage/memory_mixins/address_concretization_mixin.py +384 -0
- angr/storage/memory_mixins/bvv_conversion_mixin.py +73 -0
- angr/storage/memory_mixins/clouseau_mixin.py +137 -0
- angr/storage/memory_mixins/conditional_store_mixin.py +25 -0
- angr/storage/memory_mixins/convenient_mappings_mixin.py +256 -0
- angr/storage/memory_mixins/default_filler_mixin.py +144 -0
- angr/storage/memory_mixins/dirty_addrs_mixin.py +11 -0
- angr/storage/memory_mixins/hex_dumper_mixin.py +82 -0
- angr/storage/memory_mixins/javavm_memory_mixin.py +392 -0
- angr/storage/memory_mixins/keyvalue_memory_mixin.py +42 -0
- angr/storage/memory_mixins/label_merger_mixin.py +31 -0
- angr/storage/memory_mixins/memory_mixin.py +174 -0
- angr/storage/memory_mixins/multi_value_merger_mixin.py +79 -0
- angr/storage/memory_mixins/name_resolution_mixin.py +67 -0
- angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
- angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +266 -0
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +743 -0
- angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +65 -0
- angr/storage/memory_mixins/paged_memory/pages/__init__.py +26 -0
- angr/storage/memory_mixins/paged_memory/pages/base.py +31 -0
- angr/storage/memory_mixins/paged_memory/pages/cooperation.py +341 -0
- angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +92 -0
- angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +55 -0
- angr/storage/memory_mixins/paged_memory/pages/list_page.py +338 -0
- angr/storage/memory_mixins/paged_memory/pages/multi_values.py +324 -0
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +419 -0
- angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +36 -0
- angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +52 -0
- angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +503 -0
- angr/storage/memory_mixins/paged_memory/privileged_mixin.py +36 -0
- angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +74 -0
- angr/storage/memory_mixins/regioned_memory/__init__.py +17 -0
- angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +36 -0
- angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +31 -0
- angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +9 -0
- angr/storage/memory_mixins/regioned_memory/region_data.py +246 -0
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +241 -0
- angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +119 -0
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +441 -0
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +69 -0
- angr/storage/memory_mixins/simple_interface_mixin.py +71 -0
- angr/storage/memory_mixins/simplification_mixin.py +15 -0
- angr/storage/memory_mixins/size_resolution_mixin.py +143 -0
- angr/storage/memory_mixins/slotted_memory.py +140 -0
- angr/storage/memory_mixins/smart_find_mixin.py +161 -0
- angr/storage/memory_mixins/symbolic_merger_mixin.py +16 -0
- angr/storage/memory_mixins/top_merger_mixin.py +25 -0
- angr/storage/memory_mixins/underconstrained_mixin.py +67 -0
- angr/storage/memory_mixins/unwrapper_mixin.py +26 -0
- angr/storage/memory_object.py +195 -0
- angr/tablespecs.py +91 -0
- angr/unicornlib.so +0 -0
- angr/utils/__init__.py +46 -0
- angr/utils/ail.py +70 -0
- angr/utils/algo.py +34 -0
- angr/utils/bits.py +46 -0
- angr/utils/constants.py +9 -0
- angr/utils/cowdict.py +63 -0
- angr/utils/cpp.py +17 -0
- angr/utils/doms.py +149 -0
- angr/utils/dynamic_dictlist.py +89 -0
- angr/utils/endness.py +18 -0
- angr/utils/enums_conv.py +97 -0
- angr/utils/env.py +12 -0
- angr/utils/formatting.py +128 -0
- angr/utils/funcid.py +159 -0
- angr/utils/graph.py +933 -0
- angr/utils/lazy_import.py +13 -0
- angr/utils/library.py +212 -0
- angr/utils/loader.py +55 -0
- angr/utils/mp.py +66 -0
- angr/utils/orderedset.py +74 -0
- angr/utils/ssa/__init__.py +457 -0
- angr/utils/ssa/tmp_uses_collector.py +23 -0
- angr/utils/ssa/vvar_uses_collector.py +37 -0
- angr/utils/tagged_interval_map.py +112 -0
- angr/utils/timing.py +74 -0
- angr/utils/types.py +151 -0
- angr/utils/vex.py +11 -0
- angr/vaults.py +367 -0
- angr-9.2.165.dist-info/METADATA +110 -0
- angr-9.2.165.dist-info/RECORD +1409 -0
- angr-9.2.165.dist-info/WHEEL +6 -0
- angr-9.2.165.dist-info/entry_points.txt +2 -0
- angr-9.2.165.dist-info/licenses/LICENSE +27 -0
- angr-9.2.165.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1409 @@
|
|
|
1
|
+
angr/__init__.py,sha256=Jzf5SkZpGKPPRzfua6STXqvMfUyT2S0lcUDuVZKeRGk,9246
|
|
2
|
+
angr/__main__.py,sha256=AK9V6uPZ58UuTKmmiH_Kgn5pG9AvjnmJCPOku69A-WU,4993
|
|
3
|
+
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
|
+
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
5
|
+
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
6
|
+
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
+
angr/calling_conventions.py,sha256=BWed6JA8QRDwqOdDLqeSzegjHtsd4jgiVhaTIVf_NMQ,101396
|
|
8
|
+
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
|
+
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
|
+
angr/emulator.py,sha256=572e9l-N4VUzUzLKylqpv3JmBvVC5VExi1tLy6MZSoU,4633
|
|
11
|
+
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
12
|
+
angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
13
|
+
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
15
|
+
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
16
|
+
angr/project.py,sha256=AJmBgv3U8iv-hGEfnpmESVVjK16NiBAemmahLuqz7yk,38096
|
|
17
|
+
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
18
|
+
angr/rustylib.abi3.so,sha256=0N4ZrEX5aqbiVVKG6_HltT1-aYY_xhMld0nGhsrijZA,5643936
|
|
19
|
+
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
20
|
+
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
21
|
+
angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
22
|
+
angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
|
|
23
|
+
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
24
|
+
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
25
|
+
angr/sim_type.py,sha256=Z0gWJaTVwjC6I_O7nzwa0DtEXZSFA9ekikm-U2gxCR4,135357
|
|
26
|
+
angr/sim_variable.py,sha256=3DssmMw5G7m_-MYToJ3LBP-ooy2UQEuI2YgxIuX3d4Y,13177
|
|
27
|
+
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
28
|
+
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
29
|
+
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
30
|
+
angr/unicornlib.so,sha256=utvVO8r0boAiqMp3J2xZRZTKCB5AaAeLVVgxBxeK1Qs,348280
|
|
31
|
+
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
32
|
+
angr/ailment/__init__.py,sha256=X1LTS6MuTovGtbXBjZendUVOzRk-ib-bP0imuqJDOYI,2039
|
|
33
|
+
angr/ailment/block.py,sha256=rkmimsNPhrUabVVbRd2IgCaW0hA2_isvAsKlYtHZhgY,2428
|
|
34
|
+
angr/ailment/block_walker.py,sha256=pAIHNaN0BMxz8iEy-_4qWz1xX-QFSSPr_iA1qqIWsa8,31734
|
|
35
|
+
angr/ailment/constant.py,sha256=UG4OKm6VL3uBW_0NxlosWKBqK49gyduJjw64nBcfFfE,64
|
|
36
|
+
angr/ailment/converter_common.py,sha256=6MxxI3PRZBlFlIP2uZhQAa8vDvJr0nMDd-QnTbPLn6o,180
|
|
37
|
+
angr/ailment/converter_pcode.py,sha256=gKyshI--_hzO3CgSD85ehXmgrd8DzL_Zhc740U9KOdo,23721
|
|
38
|
+
angr/ailment/converter_vex.py,sha256=yIe0hFwuc_2mHVWw_F31u7hDPBQ-7VwuPXaQyNmqfXo,28159
|
|
39
|
+
angr/ailment/expression.py,sha256=8gmRcBOBdNitm9xLj7ZRyc8OWhYHep5ANSyQo7EIcms,48632
|
|
40
|
+
angr/ailment/manager.py,sha256=N6yMJnBdxJfj568KYZbKYERHmQIQpMf_hZPwfpdk9Y8,699
|
|
41
|
+
angr/ailment/statement.py,sha256=3JEhg-JDRrNjaeHFgO-liEIrZRW6v5sIsOqcGHiuM3A,30472
|
|
42
|
+
angr/ailment/tagged_object.py,sha256=48xIMC5WKebEpA12Zq6dQz3evvKxT3ULEu2cPdw9w-Y,1566
|
|
43
|
+
angr/ailment/utils.py,sha256=YprhO7yJcd5jUKDbCXFMmPdCd8BIOhqXti-zb3mtxRQ,2830
|
|
44
|
+
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
45
|
+
angr/analyses/analysis.py,sha256=2ABUppMZr97ZEAmxOQuXo-eyw5aF0ZASAii8SuuncNo,15685
|
|
46
|
+
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
47
|
+
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
48
|
+
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
49
|
+
angr/analyses/boyscout.py,sha256=KIxl1chV_hQV2Unn-vnoYne1dmFVy1WTUdoidkUpQ8I,2469
|
|
50
|
+
angr/analyses/callee_cleanup_finder.py,sha256=lQRn5rHS6mGNOqDh-UsxX-gs4cDpwQ6KNjvzQFVCdio,2800
|
|
51
|
+
angr/analyses/cdg.py,sha256=UxKp30a1pq0q-FsgmutHU3sdXFwXOjlcal0wzX4EYJM,6229
|
|
52
|
+
angr/analyses/class_identifier.py,sha256=7zOIryNL_DrXW11GGzZjp6TPwv--2VZ5ZuSzYpXirmQ,2951
|
|
53
|
+
angr/analyses/code_tagging.py,sha256=Gj7Ms24RnmhC9OD57gw7R6_c-pLfqSug-LVUMw_JmXE,3510
|
|
54
|
+
angr/analyses/codecave.py,sha256=k_dDhMN4wcq2bs5VrwpOv96OowQ7AbZSs6j5Z6YbIpk,2209
|
|
55
|
+
angr/analyses/complete_calling_conventions.py,sha256=nVrDHhCV3cawD_KxkAYj2fsszAskkFUHC1677rI6xEM,20490
|
|
56
|
+
angr/analyses/congruency_check.py,sha256=QeYRrdrs_iluLLnKz3KUHkCTPRVl5PgM2T0ZXd786HA,16165
|
|
57
|
+
angr/analyses/datagraph_meta.py,sha256=Ng0jqLD5ucRn_fBXhYq3l6scs3kczRk6Sk-Sen1forc,3414
|
|
58
|
+
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
59
|
+
angr/analyses/disassembly.py,sha256=YgU--tr1mZtlNhXTTWLBD4s-4g8vUs-01Vk6A04f5ng,46192
|
|
60
|
+
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
61
|
+
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
62
|
+
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
63
|
+
angr/analyses/init_finder.py,sha256=lSiBfmKExmhK7wsLGsBaJYQKjW9t7S5mlcH3U--B6CI,9259
|
|
64
|
+
angr/analyses/loop_analysis.py,sha256=up6N3SZzya6N6OlKldo_MP36DqiY_tMbVdFWSM8fByU,9311
|
|
65
|
+
angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7030
|
|
66
|
+
angr/analyses/patchfinder.py,sha256=yf8FwkWPVOrvMRA90dKZizVz4s4QE-upq6B0Xxn8wj8,5063
|
|
67
|
+
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
68
|
+
angr/analyses/proximity_graph.py,sha256=KoRvdQswRrDygotrY_6hPnrzUf1U5c5mht-b7lowyFM,16087
|
|
69
|
+
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
70
|
+
angr/analyses/s_liveness.py,sha256=mSWwwAPpXl-dIZNx5pAHA5vWXqCO_OivOXWoiaI7tss,7984
|
|
71
|
+
angr/analyses/s_propagator.py,sha256=pEq11sNPZoR0PrWLdIIjE0s5IEmOpCpNxYYnf2qMURY,24872
|
|
72
|
+
angr/analyses/smc.py,sha256=UyVaTBms0KI9jRUBhbnz1s6ez_K_oRy4qoPsvxwnoQY,5177
|
|
73
|
+
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
74
|
+
angr/analyses/stack_pointer_tracker.py,sha256=MX4wcvmTpV9HsCybYofYdkSt3aaCwXL94RSJJ1tPD5o,38082
|
|
75
|
+
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
76
|
+
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
77
|
+
angr/analyses/vfg.py,sha256=04X_mup9P82bkQIXMju3_DBPPJB1TytA_7RR9uAu3tU,72868
|
|
78
|
+
angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,16136
|
|
79
|
+
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
80
|
+
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
81
|
+
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
82
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=vdGqrv7SQDnO6Rg9rgDuQSUPxHYGRgEeneTEQhGM-2M,46762
|
|
83
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=SCdNm-6qfgj-SRnbtPpzzkZBS0nH0Ik3zPn5wLG6-7Y,28480
|
|
84
|
+
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
85
|
+
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
86
|
+
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
87
|
+
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
88
|
+
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
89
|
+
angr/analyses/cfg/cfg_base.py,sha256=eleUmM_znfsl6KV7T2tUmSEy2iLmPsrT3dNB2BYudd4,124964
|
|
90
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=4lKrmGVfCGt8l3Nz9zH6EcUcAVLwyOM7p81DlxUVNGA,148351
|
|
91
|
+
angr/analyses/cfg/cfg_fast.py,sha256=e0rl_AIM1ne-GZK7yuDPNkceyNSZIYY77sg0-jvjsyo,232943
|
|
92
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
93
|
+
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
94
|
+
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
95
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
96
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB91fuXmmDPWQg1YkWNz015OiRQfNhE,1777
|
|
97
|
+
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=KzX-BYgEM1npZYipMvCU-YJ4phdLyoM5LnrxJ0LEPFg,5347
|
|
98
|
+
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=eo9Bn-lVAzsx-Y7ncr647enHmWyAZIehc9_Q6Uq7xc8,15517
|
|
99
|
+
angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py,sha256=iADDFxnMdIOaN72a0FcODG79dcMzlesYT6LGmQKJxAc,3728
|
|
100
|
+
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=Gec_CgniGF9kXcbYfsocYbxhkTncI4MzfzDLxq_4cuk,1741
|
|
101
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=TNLmG4a3lZXZox5vjYmmETwS2KsNA1uJR55VwrPcrZE,103658
|
|
102
|
+
angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py,sha256=jmCiDkloyyqb6iRfjXBlu2N9uwYhiqeiXWhnUXW27dU,2950
|
|
103
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
104
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
105
|
+
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=nc6JSi-h0xaC-xbBIZMXuQ8qroo1T9AIHUwyDswMZjw,1810
|
|
106
|
+
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
107
|
+
angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py,sha256=ZSzhpqSIdlXXheMDmbOsgpChq5yWxOTYQR341vAMTD8,3160
|
|
108
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=j7Kf1TOxw5h-WfyskU8uKaDEFj1fkiJOkTVTplwK5ag,2927
|
|
109
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=6ITAIIPBST7-AuvzLMeUsU07H8UhehWmnCn7BAQ7Ndw,1553
|
|
110
|
+
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=YaWvUc-iQ--9tnsCgHYy1lbe6M7cQJljppMPkJ0ZK_o,267
|
|
111
|
+
angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py,sha256=DV-dDQJd6T_vRwowoPjp02mc8yrgsjabNrHtR3oGvTY,3963
|
|
112
|
+
angr/analyses/cfg_slice_to_sink/graph.py,sha256=80erWbctYEpsLjpw2TNjntDLDGQFdYRo-c9zwvOYzEY,3590
|
|
113
|
+
angr/analyses/cfg_slice_to_sink/transitions.py,sha256=9Y1qG789dsAcv73FwgYtppUzPWXbKdV5qIfIZHfhfmg,888
|
|
114
|
+
angr/analyses/data_dep/__init__.py,sha256=ea8DhrS1mec_6CSSv6QxqXtcaC27DxjYM2o0acVQpuE,401
|
|
115
|
+
angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaakDHZOCXnUF3eEybRVoue4,24978
|
|
116
|
+
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
117
|
+
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
118
|
+
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
119
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=s9hFXhNwU8fBKDOkw4vtSWhSWy9xBdF9p1463cO5930,93071
|
|
120
|
+
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
121
|
+
angr/analyses/decompiler/block_io_finder.py,sha256=9J56W0_SQPczZ2-VoxqSv61T57foHmzy7wPtUtQKffU,10943
|
|
122
|
+
angr/analyses/decompiler/block_similarity.py,sha256=S1lTlXFyOmJlQa7I3y7xgLsENLS4XGET7tdD55k_6Vg,6859
|
|
123
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=XcX9wsBM4AL_WWqmFrtSUDeSv0a125cC1-Q1NhmTrNE,14777
|
|
124
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=O7vjwNTmCLijzjKgSCaoX3IX4_sC-u-OqoKhE7lahlc,23427
|
|
125
|
+
angr/analyses/decompiler/clinic.py,sha256=1TnX_kIvZ4kFoK818Tyq98ONATP82T9n7fB4akx9yHg,150921
|
|
126
|
+
angr/analyses/decompiler/condition_processor.py,sha256=ECv0HHJt48tOGjzKUQezZ1lUS3_Qqu2a8E-6W5SMerI,54425
|
|
127
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=gAZtyXs-eoFj3680bTrJVAZcIoaPsFK0kayu30NYLb4,1509
|
|
128
|
+
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
129
|
+
angr/analyses/decompiler/decompiler.py,sha256=3TsG9Tz4OQInSXcHhoASqxY7VhRsaK8xw-ZV9-Y-zhc,30533
|
|
130
|
+
angr/analyses/decompiler/empty_node_remover.py,sha256=4CdxTM1AVmRoEdRIwJg1YEy10AgkEoRmJ8SU7xGbKnM,7424
|
|
131
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=lBtcsPu4V5JJ_u25GF-BJ3vaybu8TRr9XxmnjOrA4J8,10367
|
|
132
|
+
angr/analyses/decompiler/goto_manager.py,sha256=wVoeXJcadIda84LloGgqW-rL0QHLv3fx4vZHLhmz-_o,4027
|
|
133
|
+
angr/analyses/decompiler/graph_region.py,sha256=uSDdCLXfLZJVcb0wMdgBh-KtBJUUhLGHQ-Ap4dNs8wo,18186
|
|
134
|
+
angr/analyses/decompiler/jump_target_collector.py,sha256=CucT99luxIVrioM-keMMjyNKWE5QaXEFQOFphtyU8b4,1189
|
|
135
|
+
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
136
|
+
angr/analyses/decompiler/label_collector.py,sha256=fsCkldy8ZKH4FjkREByg-NDmfCd7Pmuz2K1Dks9oVjM,814
|
|
137
|
+
angr/analyses/decompiler/redundant_label_remover.py,sha256=QV0puQwNprJUBQxU6NOAjcozowrvQSdoVOnuzAXdkiU,5895
|
|
138
|
+
angr/analyses/decompiler/region_identifier.py,sha256=nEF81cgJolpFBMBv2COehOJKFUJ1fYFil2PMB_Kdr4w,52132
|
|
139
|
+
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
140
|
+
angr/analyses/decompiler/return_maker.py,sha256=b7R8ipU-sdFfXEHVDGt4_eNXz0Nv4kawzzPNAP6v_p0,2566
|
|
141
|
+
angr/analyses/decompiler/seq_to_blocks.py,sha256=4-tqstendHHO2J0WD3JHQkm8c4c2KG3AO3mYWrn4xvg,569
|
|
142
|
+
angr/analyses/decompiler/sequence_walker.py,sha256=zLwCK1_T9ufGH3RCGjLAyWJTwrBSy8IG-2e-zlgBEow,9933
|
|
143
|
+
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
144
|
+
angr/analyses/decompiler/utils.py,sha256=uDB7rFq4_Vityq6DZhgE5dS8nd_nDJHqJ5YEAdl1XAk,40914
|
|
145
|
+
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
146
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=8LA05CKwFzoNAloOJ3KF4AkFM3bDTQdstr1_46WauxM,24958
|
|
147
|
+
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=9BiexqY0fgB_UTmjcql71tg9HALx2mFhQMP1IVYAJpw,512
|
|
148
|
+
angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=dvdiAXWGte_4xcDZnP7h980DVZqpxMgQt-fTC1nxChQ,13437
|
|
149
|
+
angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
|
|
150
|
+
angr/analyses/decompiler/counters/boolean_counter.py,sha256=FG3M8dMpbU_WAyr8PV2iEI43OLUxoZ6JQ1johkMtivw,893
|
|
151
|
+
angr/analyses/decompiler/counters/call_counter.py,sha256=qf6IZYMIqv2NpYtbJEUfxMW638jDRYMaQkalqxILsCU,1839
|
|
152
|
+
angr/analyses/decompiler/counters/expression_counters.py,sha256=8O9pKz2J8z30nxnAIGz0kcMKI2JsPZYIt5Wt77Mh3PM,2875
|
|
153
|
+
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=gyNYOAo3baoh13D3puv8oWV33aJM1eVBdpou8FBWveU,2336
|
|
154
|
+
angr/analyses/decompiler/dephication/__init__.py,sha256=xd6YSsoXLKVB2g52l-TZGsDwN5Vm3p4b35lqAYcrlhU,280
|
|
155
|
+
angr/analyses/decompiler/dephication/dephication_base.py,sha256=C0ShonhyTRXUxhiouIIDBKwE4xGBGSa-_c7nMyTrlHA,3450
|
|
156
|
+
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=OB3wLoUtfSTyZGIynmEjd4vhZ7DGtbrzHum6myLHA0k,2393
|
|
157
|
+
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=cRMrYJgGV57H5TzWY70S8tl3D9GVkrzOetkxCUevyW4,3502
|
|
158
|
+
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=wvGWiSOa-2PnHpsLn3UkYwOYnFGJtFj0SpCn0bWl6k8,16224
|
|
159
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=qBX6yrtJQhjiSRBz0mBjafF1lTrl22oToOErxIFSr4w,18623
|
|
160
|
+
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=kigkzU78eNe-zD16hUI2YMNt_jHvixpohHpnLhAHMlw,5437
|
|
161
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=y7ND9Wg98M5SoMGuOespoLeh1s-wFqKyeW2_4esDsiw,5236
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=-kuCQk0ALYM1rmr6VaijrZYgHseeXqlWECaekKfI6hE,6120
|
|
163
|
+
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=INLmzfGDMsVzyQF2S6uwiQSoNcxM7DUBJrdWlL2gqlY,1325
|
|
164
|
+
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=fdUvRseuFiH6ehpk9uWWMityDuBs_kqmIjYMi92dDkw,15353
|
|
165
|
+
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=8UBN17ya-Nstwzj7OXYxrhsZIdHT-NG1eIpFMu8kiPU,9126
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=-vvd0QvLCmnRREmvN5LCLeKpUqisyPWj0yw1CHY8TwQ,10505
|
|
167
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=uccjVWihM5Vu7k8JcEwDhvuAQqdmbOWDBQ6Df0frdzo,13260
|
|
168
|
+
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
169
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=RMvKYw0aWrisO6DB_g3BTY9CgIgAJ6JZXpOnOOm7fpo,2737
|
|
170
|
+
angr/analyses/decompiler/optimization_passes/determine_load_sizes.py,sha256=cyDEGP7be5FAHX32eTE6FD_RZHF6G3vRo5rCYrNCfJM,2246
|
|
171
|
+
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=di_yaOo_cBzau7tNZHmozCwNNkNou1LH99cUrsU2AKg,18744
|
|
172
|
+
angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py,sha256=O5EVUgJxPnRXBaReF8gxQlWFeFr3V1V313qe_QFS7bY,7087
|
|
173
|
+
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=rz40qdnq-5h-G_aWUwQSbMOqDwXXwNXutvgTF8gC_NQ,17548
|
|
174
|
+
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=GNrqp7-CakO6JmxXHoaDKqiNslRI0mSBoNmImU5rNh4,4730
|
|
175
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=ez0tzV2MqNVBW7hhvNyJWQpJQUntLA4etK606hXixJM,5206
|
|
176
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=CLljV06M63QRbyA-HW5ArXA9c2F3qlfOJgul7UWxJOo,25456
|
|
177
|
+
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=DA2H1Uk8ZUTBcebQ3SFFl5n8pDSsZnQZC1Hnjv-A1a0,7835
|
|
178
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=8Q2Yh7QcKuoO51zfEa0abnTPES_QQRWbjiu3ZUntwvQ,13792
|
|
179
|
+
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=YMJDmKsGkF9_32w1_7EAWpH4m7jLU4rZPtWVysAwhis,42129
|
|
180
|
+
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=9ekxyvxF8g3tN5oanUg96HaYiyYVbj5Nf-vSeeq86kI,3384
|
|
181
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=gbgqCCPOs_9kyf4p1I3PPffZrjd5lGAvZS3n9ihcQBY,27845
|
|
182
|
+
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=-MoVamrPN9fMakQMZPwRYQ5rbeuQURXvyELuUhPVXKI,9088
|
|
183
|
+
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=A7azHMeTQDXPFj44lI-mK7wnbJZ6cdSL-lwwqxiBTk0,6420
|
|
184
|
+
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=hqOBkbiyQwGDoPdkMLwJjJOI_90QQ2R6ESs2HQ4z0iw,8005
|
|
185
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=cU4p-QGklqgillWLdD-o1nBPAsrfZS66GfAhuhHSz1I,27395
|
|
186
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=iOaouK9G6GkDyQ-IH_VVoi_JAyiriUK3YBGN0l13LaM,2084
|
|
187
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=Y1r4PBfnh5P3TZHxwQo6oPuKk7V-BJ45PVCZSMeax4s,10167
|
|
188
|
+
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=z8Fz1DXuwe0FVAvwPTJfrl6G9QsHoX0RI7gcB57jupU,14709
|
|
189
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=154pzAHjRaDJA1bc69Z49qDBouToemUL0BoT2ybmjw8,6476
|
|
190
|
+
angr/analyses/decompiler/optimization_passes/switch_reused_entry_rewriter.py,sha256=6-b3u4zCwSQkMaYXDP4aTjTZdFTlIWlYfd8zC1vNuRM,4035
|
|
191
|
+
angr/analyses/decompiler/optimization_passes/tag_slicer.py,sha256=VSlwk9ZdnFZnAAxL0gUAgqAtP6HEk4fqcYGWlD3ylGg,1181
|
|
192
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=FBz1UGl5rj13GYSF2tYWaQR135q4VQUxCBPW6SgdQ2w,19485
|
|
193
|
+
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=aTQV3_yQaAKhQ24V66alxErjg7jv6gellWCqsT9G-lE,3104
|
|
194
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
195
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=vTXXuELU2hMG8FfN8ESiHZzkeJFcr19byUyjo6wDZi0,21668
|
|
196
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py,sha256=2FnHnj5m6m-oXNsQ0aTzXfpl-ReozeVsfBf1KV5j9dg,52846
|
|
197
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
198
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=H9FGTyxHm-KbqgxuTe2qjMotboRbUyOTeiPVcD_8DSk,4411
|
|
199
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=_WiRuxiMaxRAYtU5LiHGQ383PiI0sCt-KgG2QFG0KX4,5176
|
|
200
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=TSpLThx8U5YK05r779be8SozeTya0zbziPOZDKCGa6M,4930
|
|
201
|
+
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=HY6EQkThiyMaahz3bodJUqLBKWY2n4aKGbKyspMXN50,1641
|
|
202
|
+
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=-V60wMaBKz1Ld1NcaQ8Dl0T4Xo9Qq6nfAQpXJ-MNsDI,1379
|
|
203
|
+
angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py,sha256=5Gsq3DSQEWt3tZSkrxnbAEePkKC_dmpoQHZ2PVNlSfs,1158
|
|
204
|
+
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=UIdsR1_ST2-NGXR5QtKM0GcuSd8teKOhafTzb7UvTO0,1142
|
|
205
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py,sha256=XuR33qLQRVD_fX1kqyAdG2NNi4o6bJGvvxXD8uzfzmw,963
|
|
206
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py,sha256=LsLcmnVNsjUJFzirktx0rFApex0ZXzn8T8_Z3ZGZH5A,1262
|
|
207
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=3ByEh3bbqaIeWcniCtKqzWFQqsULfeVEJlcEopN9iq0,667
|
|
208
|
+
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=eLy2wdVZgk9s7yH49T6-8mTkQhXXWtcoUmKSs8KB6t8,9302
|
|
209
|
+
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=Dv3LmnS94CFlgCS7e99-6uKSa32yfiIJKYCaCv7ZUpo,5009
|
|
210
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha256=8TLjoRzG2ym6ebc8CNj9vj0jUYI7pMhKrDovfGSxUKI,1096
|
|
211
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=2Tb4zGnFA5hZH8oI6t1hoRstGDmOBsOoQxf6fU5Ct7A,1105
|
|
212
|
+
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=09PA82Sg2FlBp2XZd4-WSES-8BQesXPXvIlpuuGByvM,1306
|
|
213
|
+
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=vLXt0ekjRep4SgaNq1wyxVkBTzOMTa03d3rgkjUOcUg,995
|
|
214
|
+
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=fXV_a58W2X30KCanYeSHdZ2yPcfDlyZq_OkYNMkglrg,6420
|
|
215
|
+
angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py,sha256=B1FJjIWOo12MwV5X1ybpz69U0zkyeSlW4zmCPIZcXv8,4129
|
|
216
|
+
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=sJV-8aP9KUx5Kt7pZmb3M28K3z2bGD3NWJFZOdYaBYc,2662
|
|
217
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=fXq-qFe7JUdD5LdtUhoA9AF3LnY-3Jrmo4t3ZRJIIiQ,1414
|
|
218
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=--C1JQluHt8ltdfUPBHvRD3SjW_ZcBU3oWdFwpCtpuw,1072
|
|
219
|
+
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=-eQ3nI-3-aeD-2dsA-H1NS5N6JtcCWeBTpjFiN94QBw,1774
|
|
220
|
+
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=4fZUQGdEY2qVANb6xQWZJRf5N7X78R_gyECxzhC_5vU,2384
|
|
221
|
+
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=STmu5FE0EHOkCdxFJt44DhMAjbAagnuics5VV6aNmnM,2110
|
|
222
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=t1Kn5ffzwio7AUO3EDtAbGvBFiR2gaRLIXBpOZ9LSIU,20612
|
|
223
|
+
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=NU1D1xqyQi4SaCUrJ9bk51-hjcFNseQgqD0wgQkh558,2049
|
|
224
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_memcpy.py,sha256=5OAgdFMTRlTggLQSUbVcUdgUmkJN7_p4wYkqt1A4AYQ,2944
|
|
225
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=q2IVsIFhfo0TGY3PfeOmCZqdpzUI2B3Tjv_p3_jpwl4,8668
|
|
226
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=d-O_rIm0OrwK88P0zYBZcOY0ewTdCp4bnkJZDdWUUVw,4883
|
|
227
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=irbBK2HB75f27L2EnHPuwDHumz1GBYqVwB96zoe-SFM,6787
|
|
228
|
+
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=hRx0tuK_s47AEgPfaWYbzh5lPfBhx_anGDTVoIxHYkg,1990
|
|
229
|
+
angr/analyses/decompiler/peephole_optimizations/modulo_simplifier.py,sha256=M09Whprj6tOJdFI5n9a7b-82YZOgnm3QvIbISJ9Lvaw,3724
|
|
230
|
+
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=zljXiUnoH6AwgAoXVRwz9dXEedW7RiUTkHvBMZIA-o8,1140
|
|
231
|
+
angr/analyses/decompiler/peephole_optimizations/optimized_div_simplifier.py,sha256=M4GxEWKs6V9aEYejGluZ8w8QpvPKpaESeFFzid88HjE,14208
|
|
232
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=JK8VIopPY29wgbd4EDGI-uAVfphARL4bqByj5iDRujI,1820
|
|
233
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py,sha256=jaZJu0oo8zEuvvQ30IqxeH3CEIugZKBkVktK3SCzWFY,1010
|
|
234
|
+
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=lq41TsLU8kSEduzt66i-Jva_HB5Pqlg4Q6acO-nGAYw,1612
|
|
235
|
+
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=KRjv1VUMmzkmax_s1ZM3nz24iqz1wqInMgJn3NR9kd4,1788
|
|
236
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=FUf1bg9nADlwT1upwTKcVhhPcvZ98C-8PlmkWoHqwZ4,4787
|
|
237
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=VJCK1yPM2DBQpxuJ3ED-YpOfmDSpOE4pUdD8rPkGAkA,11130
|
|
238
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=1pbXLE65KwREUoB9GqCXBgz-BeUrzXxoIRFUYZAnBVA,1133
|
|
239
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=E2HMxTqzmuhvv7PhT3HhnRWmBCe2b9cTfr57J4UoGds,1883
|
|
240
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=V5Vm1zUGjsauyOYXbUgDfZEgmChLbY8wnvmcRbfdMk0,1278
|
|
241
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=NpjPio84lBFY76hPyvOWChRo1jgFEj9XKmSh_A3A-bg,1430
|
|
242
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=0R_ja5u2fO_BMSpfSk68sDMfhwpvBpyCBKahQh-SB4w,3997
|
|
243
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=pMdKsNJtAIPqyWsR8cUEyujdF7e7kbqqvVgelVmKtqY,1610
|
|
244
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=tezg1gsxxH-iMmo_346NYO0YHwJz_Gpb8Ztm526o0G4,3300
|
|
245
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py,sha256=nhV4URuLjH_G-te15cJJ3O2-9VJvpOnkRJjdHSBRoko,1481
|
|
246
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py,sha256=UGOXLJuW2nDGILv4x5RqoowZxJ3dNq1pdCp6DnnRaUk,4137
|
|
247
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=YMfsqffIzsB7YslHVohBOeOWeNJydsrBowJ_6oD1QyY,1909
|
|
248
|
+
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=hrtAJaWTZgphP6Wex50uz9vHIBeXy1ie5M5CBSruY7Y,5144
|
|
249
|
+
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=Qwodlh1Lk283GqSEWo8bI2F4yR5_VnOcJC9xO8y_9Jk,6503
|
|
250
|
+
angr/analyses/decompiler/peephole_optimizations/shl_to_mul.py,sha256=LHR5izaUNdsYIHJYNvf_14wdWrFrMqgqAesYM3C2sos,788
|
|
251
|
+
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=2LQQqyEEiNAUneq6hYIv9P50ZjmvOkfe4Wx-TQzG77I,1904
|
|
252
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py,sha256=3eQSTFUNRDWz0No90GzxM_TaIYa7-xouf8afytds5Dk,2967
|
|
253
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py,sha256=lxDgPnnkiFEnYreHvHM0bBP_-udl0WUDfUx3B4_YGGE,984
|
|
254
|
+
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=8gPWhFTcezgO7pZ_v0pxR7pweds4_GrrY82ur6Nrlf8,4796
|
|
255
|
+
angr/analyses/decompiler/peephole_optimizations/utils.py,sha256=KYDiAt0PUA4PcOlBK-OS0aBr16_ZSETMISPAnaUJiLM,724
|
|
256
|
+
angr/analyses/decompiler/presets/__init__.py,sha256=NWARH5yOyBz4-5qKhzH56PNfPNRViNKMDeESlpplFxo,375
|
|
257
|
+
angr/analyses/decompiler/presets/basic.py,sha256=KDHlMq_XWonN2-JIYYVIhbI6FbfzXttmkgXFrwi5MiA,803
|
|
258
|
+
angr/analyses/decompiler/presets/fast.py,sha256=52ZiYOp165AaCjRok6P7WP9HCzMMYgWX8kMQgTNKkTw,1542
|
|
259
|
+
angr/analyses/decompiler/presets/full.py,sha256=NbyJ3h589kWlYL6uDz6rv0R9gkGqX2TF0i-OLZM3Jb4,1786
|
|
260
|
+
angr/analyses/decompiler/presets/preset.py,sha256=sTK5fJfx_Cdx0Gjn7y4bOrDp-2eFPeg1e1d5Eyc9uXk,1256
|
|
261
|
+
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
262
|
+
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=xVY1NUqFudjdcFFO5RAfbdIlHyCRPLYDVPM8Z4J6uic,3832
|
|
263
|
+
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=kPWajH8__ap-7713B-rT3Dun_O1gYW-AoS5gJHRoMlY,2610
|
|
264
|
+
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=naCgnDUjdiDsh6dvoNO-VARfbTfaEYpu3EX9HkJ1cqE,31790
|
|
265
|
+
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=z2fZYNK5DsiHdOBLSEeZ-_CC6_5bBZDVV7N6z-wD_TE,6117
|
|
266
|
+
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=FPTNUKPB-7kABEXntq6x5pUfVzGgVR25h18h2HTTv5E,4422
|
|
267
|
+
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
268
|
+
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=iU2lG-O0HUqxkKtY3ydmKh2pL1TPxEttdUV_oiB3qn8,6331
|
|
269
|
+
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=saxgjw416DtUlMsE7kvLL5pTr5CUffRNHWwvXhEe9-s,616
|
|
270
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=kN8NWmdNrZIY-YiwQFE2PsvxgCupyGCczH7kmKPfUQM,9536
|
|
271
|
+
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=QYrSLtD9zvfJnU8VwFa0E7NaDfKkA8vF32s2G08wTho,24926
|
|
272
|
+
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=YSmBBC1MIr4Na1DDFiw-309nkyNTnL-9hucM8gZf-C0,3351
|
|
273
|
+
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
274
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=aIYuFGlroEXqxaf6lZCfodLD2B53Sb8UJgl2nNb4lg8,15076
|
|
275
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=IrEznHKUlzuAufysLgQ1fyoEt_f25pMvNXdONzmQ1n4,40925
|
|
276
|
+
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=NAwVcBYh-BQo9K7nfnUlNDBAYflfFMgBYzsVD3BwiN8,1898
|
|
277
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=LGRFDz6tQmKeJKomSQlxTTr3ILdJaI0iYBaizE5BNCI,11288
|
|
278
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=rvFatMUpQQMbENCsPoPogAbBv0AAaCDcKiNvh6GOVeQ,4027
|
|
279
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=MdmNKWN2LVQ9fH7O-E4yNn5oXUS2p2u1qHM_OayPJ-k,11466
|
|
280
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
281
|
+
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
282
|
+
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
283
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=MvVnWYmvV5KhcQY9bg8X56z45HnRkSwM0XKKXvhuz0g,148169
|
|
284
|
+
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
285
|
+
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
286
|
+
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
287
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=_4JrXwF32UKoUOak_matUa81MwRptyXvEmOfygt-ix0,48736
|
|
288
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=3FZ9mxnFhqUExqW9DdTKQagtyiFuUJI1LvtRCI0Pd38,144326
|
|
289
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=iWFZdM54C1q2ezL7ouhH6rygJiGO2OCUH5JKXKgrf6w,7422
|
|
290
|
+
angr/analyses/decompiler/structuring/sailr.py,sha256=aJCES4r5HaLs-l1tXagIPtXpWnqY_uTlJn7wCYKnwTg,6127
|
|
291
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=HDztcvr4eJx5oqzZIXRjS8AhYBT1RESxLnaC4C4ISoI,47427
|
|
292
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=3T6QPeD1KlLkcjMDBblQCb1Cf50VF36C-hlFhiKi9nc,12823
|
|
293
|
+
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
294
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
295
|
+
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=jtUxKYTdmGu0c_8zmP8V3JUYzTcac0j1CNctic3e7QA,2215
|
|
296
|
+
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
297
|
+
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
298
|
+
angr/analyses/deobfuscator/string_obf_finder.py,sha256=cbwako92izix5V6tct95PpqK6nUE7YEUyNU8EAcyTes,40528
|
|
299
|
+
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=YzrsEKsUaUPshB8LqfwDso8aK7m0ySmR3i50T5ZiwNo,5360
|
|
300
|
+
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=_VQv2E2yOAZDAi53smQL5KcSLNe5FMqNUYC8jNSYXGs,1957
|
|
301
|
+
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
302
|
+
angr/analyses/fcp/fcp.py,sha256=djkJsvSja_De7ptNwllmTHjvVl62BFcH_haBhwhzFtw,16373
|
|
303
|
+
angr/analyses/flirt/__init__.py,sha256=1jKkwUDhwwnxG5BRcYtwogLHLBvtZApXgvcAcHrJrdw,1293
|
|
304
|
+
angr/analyses/flirt/consts.py,sha256=9ldvicgtJZa8Hw8cWOKxGkCYtc09I2q5ZWxctXcg20w,4861
|
|
305
|
+
angr/analyses/flirt/flirt.py,sha256=UNXtUBs11WafKeMAW2BwqKJLFhOyObqmRhfCqYdsJpc,10762
|
|
306
|
+
angr/analyses/flirt/flirt_function.py,sha256=IHskIu5XTTCLKfmow23ig4HIqzs7oGbw7iktIfv40O8,420
|
|
307
|
+
angr/analyses/flirt/flirt_matcher.py,sha256=nzhvPTIlVwHrn07qLLSRvgfpyOnlNRsziDCls_xh0Gg,6353
|
|
308
|
+
angr/analyses/flirt/flirt_module.py,sha256=pUP6vbujzceJMXFxvLAPgek5Y2qPv3KTlKY8ZWHeIQU,920
|
|
309
|
+
angr/analyses/flirt/flirt_node.py,sha256=ecfJq4Ymp38zzvoZPDfLcLSR045GNOM9je-F_NPM5e0,638
|
|
310
|
+
angr/analyses/flirt/flirt_sig.py,sha256=9cWSXqFBEIpui7pluMTaskfD0mVMomNt1mPXN6pIdjg,11574
|
|
311
|
+
angr/analyses/flirt/flirt_utils.py,sha256=ojZ_01s7O23vU7dN6xZL7Wyx5M3pgm43frxjbZzSmyU,819
|
|
312
|
+
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
313
|
+
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
314
|
+
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
315
|
+
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
316
|
+
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
317
|
+
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
318
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=jsNSspZGRjtp9rsewA3qtBhVduJTR8WAK5rLNQOnlfQ,7788
|
|
319
|
+
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
320
|
+
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
321
|
+
angr/analyses/identifier/__init__.py,sha256=82MTyuTZqSyaGz8iIMkkoTm-nIpQfXcoYDiifDuMLfk,96
|
|
322
|
+
angr/analyses/identifier/custom_callable.py,sha256=3Lg29e-cLyRJmiX4vT65rU464xLh70p-h7idX-iiMbI,4752
|
|
323
|
+
angr/analyses/identifier/errors.py,sha256=xVDh09xs7TQQBq7Y1ijdVqsclhgBNbIt61o4Lba-lVI,194
|
|
324
|
+
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
325
|
+
angr/analyses/identifier/identify.py,sha256=w2nsv6YBXBFibsGk5yvsoVDO4Mp6Y-ga6jaG6ztp4q4,32657
|
|
326
|
+
angr/analyses/identifier/runner.py,sha256=1X8lo2ZTBSJcK9fOkTE1ox-HtdgTwKDQPH-bABfvObo,13760
|
|
327
|
+
angr/analyses/identifier/functions/__init__.py,sha256=mMMRS5wAMgy9yazu7tiMWzp-vTQ5UToyba_X7PogA-Y,1080
|
|
328
|
+
angr/analyses/identifier/functions/atoi.py,sha256=4ccnAkkUydyG_c-kvjyT_PLZfSqv_XSJIBQZ8zataC0,2125
|
|
329
|
+
angr/analyses/identifier/functions/based_atoi.py,sha256=snS0mY0XdIZ_0cSo8mzCN1pxA6HKGrujL0QOlqTN3qk,3272
|
|
330
|
+
angr/analyses/identifier/functions/fdprintf.py,sha256=CYGzKe7WYokoIQHneRWYbGlgVnVkX5siLjplDCa92LQ,4411
|
|
331
|
+
angr/analyses/identifier/functions/free.py,sha256=NbWtNUmGh0QBpRLV8IJeARNZLy4l_JCJLOL0YUeR8qI,1991
|
|
332
|
+
angr/analyses/identifier/functions/int2str.py,sha256=3ooGmIs0Lfcls-ZeiKNFZXF2vN1X8BBlI8u1_nudAH8,8403
|
|
333
|
+
angr/analyses/identifier/functions/malloc.py,sha256=2ofilCKAw7K7z2AGLEhykYwZmH3F-goJomplglhwDxY,3863
|
|
334
|
+
angr/analyses/identifier/functions/memcmp.py,sha256=8Ns87XcNuxhiRldgk4bZd8HstqrYyM2DFk7vQRr7_zs,1974
|
|
335
|
+
angr/analyses/identifier/functions/memcpy.py,sha256=LD0UDK4CG0Ffej2A0__hJr3EHpZhon6YQMe-lFbUFFI,3228
|
|
336
|
+
angr/analyses/identifier/functions/memset.py,sha256=KsITPGDbdv2mIH0SIsaeiwcBuCAgkEt2TIfRNPwkkH8,1226
|
|
337
|
+
angr/analyses/identifier/functions/printf.py,sha256=0E1-lG-2pdZPclmEXgfiQShD3xntQS3fE8Tz0gYOAT8,4365
|
|
338
|
+
angr/analyses/identifier/functions/recv_until.py,sha256=GWmQbXch0FoxXB5X-JH4Op9bj3bkBSa4m_F__yMUf2U,11561
|
|
339
|
+
angr/analyses/identifier/functions/skip_calloc.py,sha256=hENwon4VCSHRehxAUzeVOo3MLuZggYCiBjUk_xdhCH8,2416
|
|
340
|
+
angr/analyses/identifier/functions/skip_realloc.py,sha256=Y5x5TpFGGXys9lKYpAigNcxS5xodCMjtaA-RYi8MgYg,3204
|
|
341
|
+
angr/analyses/identifier/functions/skip_recv_n.py,sha256=o-D8_rlvr9ILIcdh6-_F534hFOkxHMKyTqwYFgazt0M,2884
|
|
342
|
+
angr/analyses/identifier/functions/snprintf.py,sha256=3JSZWZz52LdgnAez9ZyGDkqa-_wj1TnNY1sv6mPqFdU,4198
|
|
343
|
+
angr/analyses/identifier/functions/sprintf.py,sha256=uxQMdJzwzlB56w2higJwO0YA5jZkIel5XtkqerBChtQ,4177
|
|
344
|
+
angr/analyses/identifier/functions/strcasecmp.py,sha256=vwJUmmhe-uK-D4oMoe9gjpVQC8FCl2yGNduZ8OM0qZc,841
|
|
345
|
+
angr/analyses/identifier/functions/strcmp.py,sha256=Cw5_4XPrVn3gYPBaoRvwHU6OBX0av_7uEel9UCxMK6U,3512
|
|
346
|
+
angr/analyses/identifier/functions/strcpy.py,sha256=VYidctE-t9LiXxYAq6PW6_Ens7ar0Mo4FNmFq5jLRpg,1225
|
|
347
|
+
angr/analyses/identifier/functions/strlen.py,sha256=gbtQT2XXneGYOlNBcmgIeJo8cLCdx2xfQx-OrJH8mkI,811
|
|
348
|
+
angr/analyses/identifier/functions/strncmp.py,sha256=CXoeiJmlEUSGW48SFkpcJoN3ZeCDEJgqSELjcQHDxxg,3350
|
|
349
|
+
angr/analyses/identifier/functions/strncpy.py,sha256=y1w7A9255j91TGKVuJLXj67lADci16EzVqQWzJAkTHo,2046
|
|
350
|
+
angr/analyses/identifier/functions/strtol.py,sha256=e_XbqYSa-s3CjDcPJkSaVnDjnTp2Z3ian67BXMxkrnE,2437
|
|
351
|
+
angr/analyses/propagator/__init__.py,sha256=lxvNUfUJYOPqO8se8Nej_NNCObLt90QFIrZhzgt5a_o,114
|
|
352
|
+
angr/analyses/propagator/engine_base.py,sha256=cZOwG1Qn44aoQ4-L5O4yQ_FhA6k0jwOMNfB27nyK7Tk,1960
|
|
353
|
+
angr/analyses/propagator/engine_vex.py,sha256=ZqSKJ3PqlBI-lvLZFwl3beiknNIyUxHf_lGvzyhlIhE,12522
|
|
354
|
+
angr/analyses/propagator/propagator.py,sha256=6YfXkqt6I2IgBf8Pt7NCDUucnjKKNX9kMxzYBNdaq2A,13257
|
|
355
|
+
angr/analyses/propagator/top_checker_mixin.py,sha256=Ket9h9TILsceIi3YoMbjeDF8PA6n3BelRDaL59vheMA,8852
|
|
356
|
+
angr/analyses/propagator/values.py,sha256=L41ue9PjPpA_tEe8YlTwv3ly9o3Sbo8uQESALfbUr4c,2026
|
|
357
|
+
angr/analyses/propagator/vex_vars.py,sha256=PRZOccwfdNRqEywPU-Mor3LGhakM5ItK1lRfay_T8vY,1462
|
|
358
|
+
angr/analyses/reaching_definitions/__init__.py,sha256=lqe-S7Jl9ZlCGgJT0kUZtNMLzmySokDz72v0pQBHh4w,2060
|
|
359
|
+
angr/analyses/reaching_definitions/call_trace.py,sha256=osabHpgiV-dvifwej3mwOxckeZmG6JIXb6FDSCFzfVI,2170
|
|
360
|
+
angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquqg0_u4TMBbKVEupJrL4,15554
|
|
361
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=PPIqp8XaERWXLNUQN_ALzFcQeKHQe5nZdwoHtoLxWwg,46639
|
|
362
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
|
|
363
|
+
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=MoZSB49ia7BXzdRmlYJgUFY36IDuEpY8FSn99eBjrq4,29217
|
|
365
|
+
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
366
|
+
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
367
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
368
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=EeA2qJZYOtnb_cbIj8YJQMCtUt_ra0faDiRCMjtw4ho,23719
|
|
369
|
+
angr/analyses/reaching_definitions/subject.py,sha256=DxhzWhZz_EJo-Cs-u-kB29M-sVxCqtfXkSv72WEYZp0,2021
|
|
370
|
+
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=elHg3doPsR68R3mZJM85qmDhy2OaCc347O-RaUaTDqY,458
|
|
371
|
+
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=dPGE2mjCFCCKX-0ixzJ_dwU97QAte3jzkLZGdRMz4YQ,11416
|
|
372
|
+
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=YRNWe87eQ9aJo-m0IvN_nRIqQLFJxb9kfN3cboN3218,8124
|
|
373
|
+
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qh7XJXiSuT5dwUjnYKSo6RhGQbsMjJm97mma1gypNG0,8825
|
|
374
|
+
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=oO2HROZZWsjPlCLMxEo7T4M5JkYRlkc9BLLYLwY1SfQ,2370
|
|
375
|
+
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
376
|
+
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=FJSge_31FFzyzBJA1xm7dQz40TfuNna6v_RWAZMZvi0,5801
|
|
377
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=r0UThjO4ZhrlCUuMYflzMoH5spObH25A65-S2koY5vM,13807
|
|
378
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=gNdg8xpu5by_McWU8j0g0502yQsO2evkTlben9yimV0,7826
|
|
379
|
+
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
380
|
+
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
381
|
+
angr/analyses/typehoon/lifter.py,sha256=hxYJmM_A0Kl6YgY7NyWBtA3ieaY49Ey3ESCHC61lMys,4000
|
|
382
|
+
angr/analyses/typehoon/simple_solver.py,sha256=CCGsuxzcRwPxh3S3fU_CJNQ7KVJaTP_SzH5ZImuPhDw,67609
|
|
383
|
+
angr/analyses/typehoon/translator.py,sha256=_UE1JC4KNDXXl4plula9OApK1ee07z9BFdX9HKa5uqw,10568
|
|
384
|
+
angr/analyses/typehoon/typeconsts.py,sha256=5xyZakTTra4K4-8icVqT5JMM__ZfnBVEBV_1kydQn50,8028
|
|
385
|
+
angr/analyses/typehoon/typehoon.py,sha256=qj5MBJdzVB-5f73N_Da0gs5fG-eIFN272VNfsdYn7lo,12777
|
|
386
|
+
angr/analyses/typehoon/typevars.py,sha256=ZDnKaGEwBTzYWUPQzacQkJ4rMpUDlnLzzJuKyQuEEtA,17839
|
|
387
|
+
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
388
|
+
angr/analyses/unpacker/__init__.py,sha256=tBXwDMFKN0Hp8YP0DK-c6deo0Muc_LNopvoKKbzp3Tc,190
|
|
389
|
+
angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ7N1i99utC8Vkbtptw,3502
|
|
390
|
+
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
391
|
+
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
392
|
+
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
393
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=8yqrl_qfO_DCvaIxwsa_eits5rIbly4rBEFh5W_U2O4,33709
|
|
394
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=MJ6h-dq_0r-3I3ZOhR8E4So2VqxlyudNeSrAHyQCNRg,53171
|
|
395
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
396
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
397
|
+
angr/analyses/variable_recovery/variable_recovery.py,sha256=I45eVUpOOcSobA_QyXl3aRNa0kppJH_7YOj95fPPTdE,22272
|
|
398
|
+
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=Ewd0TzNdZ_gRYXtXjVrJfODNABMMPjnuvMy9-Nnyui0,16813
|
|
399
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=xahVegmxq0jl_mSu0EuoQLO_-GHtARPFPwoLyppBnHY,27910
|
|
400
|
+
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
401
|
+
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
402
|
+
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
403
|
+
angr/angrdb/serializers/__init__.py,sha256=xeDIqw9DoggjZCtUw79jwRq_PGD_K9HZGLy8rNDeirQ,184
|
|
404
|
+
angr/angrdb/serializers/cfg_model.py,sha256=Uxy1VDKAy_50dMXUykpEsl_zp3ko5ETuKNPRAd3Xsek,1314
|
|
405
|
+
angr/angrdb/serializers/comments.py,sha256=oHlwu9weMpFJrVBo19Ud1OB-XtpUPrdH9MWZy7QnQ40,1578
|
|
406
|
+
angr/angrdb/serializers/funcs.py,sha256=twDiZ5rx88kat8llBwsukKtg2lgklQpmHJ7X9lLI-DY,1727
|
|
407
|
+
angr/angrdb/serializers/kb.py,sha256=vDC9Qh27L4NTRd1nplRwRXDUWXyZT2eOTz-8pEBu2js,3889
|
|
408
|
+
angr/angrdb/serializers/labels.py,sha256=wShkd0cnxUc5ZfeRAAZYChTUgstQRElhrEI7_T9tPcg,1472
|
|
409
|
+
angr/angrdb/serializers/loader.py,sha256=xgvlp8t0H4tKgU680SpIW3r5DcrbU-qHtU_L_S_5B7E,5248
|
|
410
|
+
angr/angrdb/serializers/structured_code.py,sha256=AYaSZneT5py8IxZSoDk-itN-xwjhrH7-M_MhRk5t27A,4309
|
|
411
|
+
angr/angrdb/serializers/variables.py,sha256=LyrBqhn4B4u6y8_WBiE_JF0vwD2j6sAjIOlWPw8VqxA,2392
|
|
412
|
+
angr/angrdb/serializers/xrefs.py,sha256=C28PKZVmTJMFjycPttBckvCrrMsRDAzIcU52LCwWjq0,1205
|
|
413
|
+
angr/concretization_strategies/__init__.py,sha256=8IfQ7QmOsRRt18ru2cNF_P23Bo0FzyKrCDDtHEyE8h4,1309
|
|
414
|
+
angr/concretization_strategies/any.py,sha256=-F91Zxym1PJXgB8rNUfyAyqwiCdGBRaYkUGoUkLRXhs,472
|
|
415
|
+
angr/concretization_strategies/any_named.py,sha256=EqSOcHMUG0b4aRfCrsS58TJewL-8-JOLIwqzRKhEr4U,1384
|
|
416
|
+
angr/concretization_strategies/base.py,sha256=dxybixYIcEgrLBJNBOcI5ELs2qZzvx3xYG3V8hRbVOc,2977
|
|
417
|
+
angr/concretization_strategies/controlled_data.py,sha256=Rm72mjyv6IuLsvCfsXp-EjkBxx_2KjYJD2liDUC8eEM,2250
|
|
418
|
+
angr/concretization_strategies/eval.py,sha256=ekzs5D5l0pKDqGxMYfmIrWcOmnJ-t4v3fCNPyBqkesE,635
|
|
419
|
+
angr/concretization_strategies/logging.py,sha256=JOu4fUO-gNfSw5jM9xNsThIL6gTZbQxOy1qWsklS4BI,1196
|
|
420
|
+
angr/concretization_strategies/max.py,sha256=nX4xN-zDEKjtRxarFUr5cfKvggMlaFoNfjLXPBaLNpY,1011
|
|
421
|
+
angr/concretization_strategies/nonzero.py,sha256=iitrFMwbt56c1CnAszZtWxGS9IuKDxnFjgK4-mlmZm8,576
|
|
422
|
+
angr/concretization_strategies/nonzero_range.py,sha256=X4JVAbdfSkWpxQZDSBlipYytfpqVQAghCVtjfevKk3o,827
|
|
423
|
+
angr/concretization_strategies/norepeats.py,sha256=j4Jy9OShW9_KgZvlm4p7lCzOlzvLZEbaDRN066kTGrs,1465
|
|
424
|
+
angr/concretization_strategies/norepeats_range.py,sha256=eyefZDYmkFvCmpT9snoVBkyie0CEZBSUG6HI2iVyjic,1607
|
|
425
|
+
angr/concretization_strategies/range.py,sha256=jXylwOLabqfJrQx-7HRZaJKlX6pB6rQO2vX0LYEiLX0,595
|
|
426
|
+
angr/concretization_strategies/signed_add.py,sha256=kLIkHDjlhY6QoRj3g8gzY8y3bV3WqgIYeCs-kqV-sDE,1225
|
|
427
|
+
angr/concretization_strategies/single.py,sha256=VFTkSrCXXK367e38rHEwqo0e8oGJoytXnJ8u02_XSPA,418
|
|
428
|
+
angr/concretization_strategies/solutions.py,sha256=nGsRdjgmUPiJplktGYzKdJE_6H3J0svwsBIn_y77hgY,571
|
|
429
|
+
angr/concretization_strategies/unlimited_range.py,sha256=fdQ54qrJ2nj47AKJPw6yuiDsemFRfJ35UsOk17NbC1Y,569
|
|
430
|
+
angr/distributed/__init__.py,sha256=KbEuL2qYp5UN8c0mv_38rfZefTvvvtMkp6_ejWVFpOQ,204
|
|
431
|
+
angr/distributed/server.py,sha256=g3STpFQ48AScjXciwCt1sGE-qWAvi3GHwb8tdScL1CE,6645
|
|
432
|
+
angr/distributed/worker.py,sha256=MZVlxC9ksC6xUG2fy5h08Vv9R8RiG7QBQIomPYdFIJs,6065
|
|
433
|
+
angr/engines/__init__.py,sha256=_3oRkiTrPO7QPiCg3qXymt4o9ZAOrAHt5pdfjkp3W9k,1661
|
|
434
|
+
angr/engines/concrete.py,sha256=kEt6Dyp8QAIaOP3oW5lRcDs_2UMP2vbiNzylGiqvf7g,2143
|
|
435
|
+
angr/engines/engine.py,sha256=2kwOT-sbxKXAVX2PmsPTr8Ax36Vxq6hkRdDKaITBQNc,657
|
|
436
|
+
angr/engines/failure.py,sha256=redqmkSuJoIc828hpmX3CTk4EqQ-PeEn7MK2uIqSAc0,1040
|
|
437
|
+
angr/engines/hook.py,sha256=lAEYYAXQY_GDOpsz3JZ7IswxrBccZnZ6EaQwyNBb4W8,2590
|
|
438
|
+
angr/engines/icicle.py,sha256=8mAL_YEumoP95C3p0r7yoGdi68Xq2sz9-qpGjAu5ffE,10333
|
|
439
|
+
angr/engines/procedure.py,sha256=8kgFH56nkqSWm0p1apuGBaFngl-4BnAzE0bXhq9mc6Y,2561
|
|
440
|
+
angr/engines/successors.py,sha256=oQCW7Knxb4zz7EP6Mi6RrRNrwuhbv5fnX8UL76nn0sY,29501
|
|
441
|
+
angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
442
|
+
angr/engines/unicorn.py,sha256=fq2akQ4dVFAWqek0Yr4JTaTJWwp5vICiSQ7Sg4wuDJE,24533
|
|
443
|
+
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
444
|
+
angr/engines/light/data.py,sha256=bSJOryON-SWSLNo8PDJJBzL3xPsNnlO-ECj5h60Tf5E,21259
|
|
445
|
+
angr/engines/light/engine.py,sha256=zH_wcZu8L0Q7rHv_OFhxs4nCe3GZ7iYbra8YWpmG5g4,46445
|
|
446
|
+
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
447
|
+
angr/engines/pcode/behavior.py,sha256=9lSyjTUW_mbi6nvZ028cVI4-1NQ0A2NSY1RRQmNThhE,29359
|
|
448
|
+
angr/engines/pcode/cc.py,sha256=brVglfSNnpDbRRcG-KO9EZ5NMMlmtDzP1n4kap7gKRY,3236
|
|
449
|
+
angr/engines/pcode/emulate.py,sha256=YlFHfXk8WmABiwVRJINP4ekMAY2b7dbvrpLrE2BfLXQ,16670
|
|
450
|
+
angr/engines/pcode/engine.py,sha256=aFVvBYkVzZ8A5NkC2SblDU6Mlfk0ioVn7xDhp0iG8-8,9930
|
|
451
|
+
angr/engines/pcode/lifter.py,sha256=KOSKbMG34kqYLUkBnRibEejFv1TRZRFxDL3uUX-7cQk,52336
|
|
452
|
+
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
453
|
+
angr/engines/soot/engine.py,sha256=rHKbnO9YBOAd1DJ-a33vAMseFt_b3iDhArTFdgmyVsc,17065
|
|
454
|
+
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
455
|
+
angr/engines/soot/field_dispatcher.py,sha256=WelL0r0f2hSUki4Xw0myHlzvnzqhnN9l2JyByJsB-2Q,1893
|
|
456
|
+
angr/engines/soot/method_dispatcher.py,sha256=Ooj7DwtXDcgvw6Wt60Q7Z_Xj6lEKR79ncVW_HCZphkQ,1759
|
|
457
|
+
angr/engines/soot/expressions/__init__.py,sha256=FO2AAkrv9ky6Wi22ziXnGWVwpXytzMfQispza--D-yg,2544
|
|
458
|
+
angr/engines/soot/expressions/arrayref.py,sha256=G7Pr-fe1sYg_PFT-5Q8TwnAZZ4uTIuXEsVqXFmTsVQs,908
|
|
459
|
+
angr/engines/soot/expressions/base.py,sha256=7y6a_euE8TNsrCA1jZfyjHjh7TH91nKaP_Z80PBICPY,496
|
|
460
|
+
angr/engines/soot/expressions/binop.py,sha256=8u6bII365ueXXQ6Mu4jmdYNRiRmAzPpERRtfRB1XJI4,816
|
|
461
|
+
angr/engines/soot/expressions/cast.py,sha256=DlBC9cq4KpcH3qfyI1QabFs1mLRzsHa4NHBPc7bD_I8,804
|
|
462
|
+
angr/engines/soot/expressions/condition.py,sha256=j3IK72n2pXgzgfmvmr1zh-6f0I7CPeZb2TDfug-BCF4,1315
|
|
463
|
+
angr/engines/soot/expressions/constants.py,sha256=eHeWXIy181RSJRaBOsUijac19IDwCJshk9h9X8h87o8,1403
|
|
464
|
+
angr/engines/soot/expressions/instanceOf.py,sha256=XRlCa-LaVT03Zf09dRzrl3eIuZjR8P5Q8ti3Lvt6wB0,345
|
|
465
|
+
angr/engines/soot/expressions/instancefieldref.py,sha256=KWx8sfhLHIxlbScdp_Eg8IvWDmSgoXhxau4S4VOJW70,269
|
|
466
|
+
angr/engines/soot/expressions/invoke.py,sha256=OtD17xGkWtqStQB55wHr4WkSemQNdffK8QUtTLnD8Mk,4482
|
|
467
|
+
angr/engines/soot/expressions/length.py,sha256=Ae2UIK1UCbUm65Uq05Xkzerro4quOA3knv_mMbnt5hc,224
|
|
468
|
+
angr/engines/soot/expressions/local.py,sha256=n8TYrHylKmj8a-zGbFawnF-ofNjo_QShpvCDGcnfS_s,250
|
|
469
|
+
angr/engines/soot/expressions/new.py,sha256=uFTtVYcCYsbFCLja7ybZx4Qi9zo03qY-2VCG0erffF8,603
|
|
470
|
+
angr/engines/soot/expressions/newArray.py,sha256=KbzM2zro0jaXveM2l3LWcQMMX3Xz4kzOXdulICZEdmY,2032
|
|
471
|
+
angr/engines/soot/expressions/newMultiArray.py,sha256=HWnuyfYxTBZof6k3t6BNLTGaI0XbFkDV4GuZPfyzw_g,3440
|
|
472
|
+
angr/engines/soot/expressions/paramref.py,sha256=zkL142Vb4oDWlp-pv8NZSQcFsx5fmuCh_YgbEhoSiRI,259
|
|
473
|
+
angr/engines/soot/expressions/phi.py,sha256=XS44tYMD-70WCL0EH0BdVcLIfYXLEHgSW9Tywl67uIk,1227
|
|
474
|
+
angr/engines/soot/expressions/staticfieldref.py,sha256=LlrlCaDSBv9tCa8TNK3UskVshv2bT8dyt8JpdI3gn1I,267
|
|
475
|
+
angr/engines/soot/expressions/thisref.py,sha256=ofsOlxQ9TX992FEmWRDhDuxZ34F56QnzwVxWrrJ0dOg,184
|
|
476
|
+
angr/engines/soot/expressions/unsupported.py,sha256=PAg0gAByaPAlj4GTsYJMNc72MPkLPB3xjYNRw6EbPYQ,148
|
|
477
|
+
angr/engines/soot/statements/__init__.py,sha256=r6cR4JUWLUAJvyqcXmc-BLSPzO8uLtg22bIYSClD2ng,1193
|
|
478
|
+
angr/engines/soot/statements/assign.py,sha256=MQJmr3EN1wylmW7j9aO2qIrz1HulXa_-wk0yVEcuy_c,1322
|
|
479
|
+
angr/engines/soot/statements/base.py,sha256=cOF5oCzq10X1erMe4A96GKg0q4wvEeCf1kqCeFJRdIk,2143
|
|
480
|
+
angr/engines/soot/statements/goto.py,sha256=M1ECqzQQJtdn3vbP0J5k_3Qvhu_Uilkq22y0JmoVAv0,368
|
|
481
|
+
angr/engines/soot/statements/identity.py,sha256=d1ldd4tJiRPuh2TOTAkjfL72-lWmPinoOrA1cBXk7zY,456
|
|
482
|
+
angr/engines/soot/statements/if_.py,sha256=OZFSR5yojJzZjs63hF9yxGAcaIN4MqCOjWA84rbOE2s,603
|
|
483
|
+
angr/engines/soot/statements/invoke.py,sha256=HbR2ke7Kcrns8e3dzjxYoxEzm4UnWjQL_EY9Vz1BWTY,319
|
|
484
|
+
angr/engines/soot/statements/return_.py,sha256=4IIqto1nstQ-pGJYp8c7mrPRVyy41yeofQTqUcq9nUE,501
|
|
485
|
+
angr/engines/soot/statements/switch.py,sha256=dJrJ5-_dogvoAfzuYYWjDZn6o3p02AX9qgCtMn3WftA,1340
|
|
486
|
+
angr/engines/soot/statements/throw.py,sha256=k41dYR-h63tjJ1xC_0npo3pMBFaX0nJqRZ0vsHzJ5fU,397
|
|
487
|
+
angr/engines/soot/values/__init__.py,sha256=L3oz1NXDxvCTsdU8chpszGBuVIrWWSNS0LhHk0lrPhI,1101
|
|
488
|
+
angr/engines/soot/values/arrayref.py,sha256=lki_NAPesi8FM0glJI8qM2cja5K0BCSxtRdVSrTCljc,4405
|
|
489
|
+
angr/engines/soot/values/base.py,sha256=nTETgLhh4EST1ujvbXG-3fG-ekAMF2f6WiQzsjDtkI4,156
|
|
490
|
+
angr/engines/soot/values/constants.py,sha256=S9iY6vQui2ATFJTMcZCpdbrn9ttBcj3xFOLRInlcpHk,438
|
|
491
|
+
angr/engines/soot/values/instancefieldref.py,sha256=FrwIT1NkyMzJfkbQd3d_K1lh8ahw-EfZi8rXeQYw4go,1652
|
|
492
|
+
angr/engines/soot/values/local.py,sha256=KUnMtcxlemPXhu7zufUDUluaLpaWs4dhEbg2hK30YC4,420
|
|
493
|
+
angr/engines/soot/values/paramref.py,sha256=zDxRKZ2YquslhE41BZbBeLcW-PFAcTQLggvuCE_SPB0,446
|
|
494
|
+
angr/engines/soot/values/staticfieldref.py,sha256=fYucDqKryaZbCWm2iOSsVi7FdGRIm9jncK-rA4tIXMU,1291
|
|
495
|
+
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
496
|
+
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
497
|
+
angr/engines/vex/__init__.py,sha256=k8cIQpJO2Wv6erLCOa4boEywRcwlFOTgAgGP6wNQcwM,525
|
|
498
|
+
angr/engines/vex/lifter.py,sha256=BqeajzzpLL32nmGaszWASBPDhluhTec2m3ods1ZTIIo,17207
|
|
499
|
+
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
500
|
+
angr/engines/vex/claripy/ccall.py,sha256=1ozZd6hLoFFcbREohzqJPu8zc34QVrYomnjwtgM40JI,82955
|
|
501
|
+
angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8ElSuJcFzNQ,4971
|
|
502
|
+
angr/engines/vex/claripy/irop.py,sha256=_xiVGT5YbguTm8c0DaAqHnPUVrD2lp3ELtiBJTPwTOA,46240
|
|
503
|
+
angr/engines/vex/heavy/__init__.py,sha256=XkIvjUOyEY9XN_zjM3ozzdSDqbMJHGm1XbehwhshlBE,376
|
|
504
|
+
angr/engines/vex/heavy/actions.py,sha256=Q08wb2TK5HfDduAf8PRXY58h8iIOeCuArNzALzIf0Tk,8668
|
|
505
|
+
angr/engines/vex/heavy/concretizers.py,sha256=SHojrhwpJHlSTOPooX_2IZOv0kOOr9D6PJs52rdUlIQ,14826
|
|
506
|
+
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
507
|
+
angr/engines/vex/heavy/heavy.py,sha256=tbLzoyzKKTTfhqxT_VUR0ANkcRwCaF-Cj9UvHuLS1EU,15571
|
|
508
|
+
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
509
|
+
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
510
|
+
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
511
|
+
angr/engines/vex/light/__init__.py,sha256=U31OCY_B_kjtpewghpiFa7mYNBGNVj6CoeOiKAhUUkE,224
|
|
512
|
+
angr/engines/vex/light/light.py,sha256=YBBUOIJrE8YkbW_JNBVyjqpwVymsf1mOuqYl6bpUE_0,21685
|
|
513
|
+
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
514
|
+
angr/engines/vex/light/slicing.py,sha256=JtUtOeE9h-xBtrrVvY9T8ttYG-T4cllhRyR6zUcxiG4,2009
|
|
515
|
+
angr/exploration_techniques/__init__.py,sha256=5LJEn_hYBNxcMA_gnMFU_fkGp4NBRowQPVWpJTqF0pM,1390
|
|
516
|
+
angr/exploration_techniques/base.py,sha256=AoM5IInQExOxC5sHdm_ZNj2HxQE3QeBVzZWVQP6510Y,5535
|
|
517
|
+
angr/exploration_techniques/bucketizer.py,sha256=BvkBr5SBbWHT6Z1G8AJaNA7BmN9NqRmyr1J98yQ6Ou0,2563
|
|
518
|
+
angr/exploration_techniques/common.py,sha256=_FmR6IxiCm_lal1rP6382r-1hCj-EirDsq_eQdD3x3s,2277
|
|
519
|
+
angr/exploration_techniques/dfs.py,sha256=_pPa8qdusyGN_98FSmqEDNKrDWsBYVJb7Swn55Ngbh8,1208
|
|
520
|
+
angr/exploration_techniques/director.py,sha256=sdqTSCNoieBWln7egJBh7gkJoZAo7zpWC2telwEsn1w,17865
|
|
521
|
+
angr/exploration_techniques/driller_core.py,sha256=ZguyrKpC0kHLotJOkdVX553JBMwvAgUtQW244EUf78k,3450
|
|
522
|
+
angr/exploration_techniques/explorer.py,sha256=_SKBIFX-YDd71aIAJaV9MwCZt64wUvvZmZiBjrjuruk,6243
|
|
523
|
+
angr/exploration_techniques/lengthlimiter.py,sha256=To8SlXhtdDVSqAlCSIvhvqyY8BUs37ZU7ABymhJDz14,590
|
|
524
|
+
angr/exploration_techniques/local_loop_seer.py,sha256=qcXC3XByVc1WkznVoqCNt7MqBX_GL_qSwBHmwbHphmU,2605
|
|
525
|
+
angr/exploration_techniques/loop_seer.py,sha256=SmLTC45QmPWiRt9w7KV6EXo0SjZ_K1Q0jhKmrWyao1M,11616
|
|
526
|
+
angr/exploration_techniques/manual_mergepoint.py,sha256=H7eTs1fNhkbLo5go2EwRq2U4Wy9yQxqj99qb-3I2we0,3138
|
|
527
|
+
angr/exploration_techniques/memory_watcher.py,sha256=9grrkwq4ha5u8gtJIqTFhVG9Yur18r7Tec7bv_HpNlw,1312
|
|
528
|
+
angr/exploration_techniques/oppologist.py,sha256=qginjebD4HFsz0UDr75-387YXnqKkjqlTSML-oXu86I,3525
|
|
529
|
+
angr/exploration_techniques/slicecutor.py,sha256=_IIg7Jl6gZStumtlEwyY8eu55BM1ex11DpKgTjreoYc,5170
|
|
530
|
+
angr/exploration_techniques/spiller.py,sha256=B5qy8B3l_0JSo8YDH9cJUX97anf9YdDeJMVAsN1xZi8,9415
|
|
531
|
+
angr/exploration_techniques/spiller_db.py,sha256=ccbjeAtlgD23tMt8gGbJL9r8Tc4aOJi3Rjn6hg70dnY,811
|
|
532
|
+
angr/exploration_techniques/stochastic.py,sha256=SpCsWPQpqUQ92Bpf7r2EpWz8ucMU1rHfbSduiQRvY_k,2040
|
|
533
|
+
angr/exploration_techniques/stub_stasher.py,sha256=gDcazGeSyLCUFTutF_HQFDfDgye0vo7ZG1j9vQW1qK0,499
|
|
534
|
+
angr/exploration_techniques/suggestions.py,sha256=h15TEcP_qW2gk5q7Qwj41xF884dO6jy7e3lSLgn-nkE,7012
|
|
535
|
+
angr/exploration_techniques/tech_builder.py,sha256=jjW_3KobHh_phQ9zJp7SuWzIrJl7HUosYjKUemAoY_M,1626
|
|
536
|
+
angr/exploration_techniques/threading.py,sha256=QJcgyCYRE7iECxr4fczz5XO6C_R3KHNWH7fyCkxBdnE,2487
|
|
537
|
+
angr/exploration_techniques/timeout.py,sha256=JbKoV1MXYHVaiMERUy0gbEV7yeRy_uDjsgeNTFyjNOM,964
|
|
538
|
+
angr/exploration_techniques/tracer.py,sha256=QqxsNn4jPwbpquZfjZDMlyIyAoZa1cOodDJhvS41Cx4,50111
|
|
539
|
+
angr/exploration_techniques/unique.py,sha256=UqB8dUzvgaSfYBfm15g8XYlBsS8Out0z1loN4sjBsNw,4453
|
|
540
|
+
angr/exploration_techniques/veritesting.py,sha256=8F7emyvQa8SOjr7Ztk7Bw-aIrYjrvmXBeaavMlNLvxs,1392
|
|
541
|
+
angr/flirt/__init__.py,sha256=uPA4ff2d8FQYfGzq2rgM5pJ9PAH82275On3EFKqXktE,3514
|
|
542
|
+
angr/flirt/build_sig.py,sha256=AO48uuWi76eMiw4-RTJn58j6DDyziy7HCuWMNpApcOQ,10020
|
|
543
|
+
angr/knowledge_plugins/__init__.py,sha256=T8ovRNYYhqk_QkKN2OU5JXzeYZob8iq3v0ZlnX8_Hho,1160
|
|
544
|
+
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
545
|
+
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
546
|
+
angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipYKJgGH9vxLLA,1037
|
|
547
|
+
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
548
|
+
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
549
|
+
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
550
|
+
angr/knowledge_plugins/labels.py,sha256=Q7BTpBWRfJl3vxtd0vci91EA3KXiIwLNPyO5UQh6QEA,3156
|
|
551
|
+
angr/knowledge_plugins/obfuscations.py,sha256=n7qPreGLXJf2pADtbonv8JToKL_9IQCYfqGmSyV_3Y4,1465
|
|
552
|
+
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
553
|
+
angr/knowledge_plugins/plugin.py,sha256=8tPrsgo1hsZG3ifXs4mWsKkeyB03ubfZdY5YArWw9-Q,766
|
|
554
|
+
angr/knowledge_plugins/structured_code.py,sha256=9IKRF1Pb7E0eBz0uMK36Pk8HL0fmI7JqVaeihu7uiRQ,2167
|
|
555
|
+
angr/knowledge_plugins/types.py,sha256=EjskCalakpsUi4CKvjrP530VsWFBGkM4xmPbGN2ymRQ,2076
|
|
556
|
+
angr/knowledge_plugins/cfg/__init__.py,sha256=oU07YZ4TIsoje8qr6nw_nM2NXizEGKuulD1RDxk4PWI,418
|
|
557
|
+
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=QGXCsdoLiH_vW7LP1EWGLlRVlMSqAM06l6qWq7uxQJU,2651
|
|
558
|
+
angr/knowledge_plugins/cfg/cfg_model.py,sha256=Z5HOM7xh285gF5DGmQGRSWWD9KJyjXVWLvl0i521OkA,41722
|
|
559
|
+
angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWBsLonpNpLA,17183
|
|
560
|
+
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
561
|
+
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
562
|
+
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
563
|
+
angr/knowledge_plugins/functions/function.py,sha256=8DsaHa_mcMZ79zRw804f5q6Vj1XRCwL7XUZVA3F2X88,71180
|
|
564
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=StsK3biTFRRA2ugrmeQLuHiN894p789Tlw1CIKlE0PY,23462
|
|
565
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
566
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
567
|
+
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
568
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=dKbhvROB0cKSIZC1Z29MvIUmEHx5Ke6rK1lMgmKNdV8,11149
|
|
569
|
+
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
570
|
+
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
571
|
+
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
572
|
+
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
573
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=LYLFUutUqWB1jSOjWh7b_JQtIaT08duv8_TUZIt5R-k,3313
|
|
574
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
575
|
+
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
576
|
+
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
577
|
+
angr/knowledge_plugins/key_definitions/tag.py,sha256=QWtBe5yuMei6t2NRPwolVyUa1XyY2khMeU6pQwb66iQ,1710
|
|
578
|
+
angr/knowledge_plugins/key_definitions/undefined.py,sha256=9_lhbftnUqPGBc1boOoZtUQnNFn0eXsl3Xty0y79z2A,1273
|
|
579
|
+
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=i8n31KYwD044UlJ2qswIPUWYr_tutnBQOy6pT_ZsBU4,1547
|
|
580
|
+
angr/knowledge_plugins/key_definitions/uses.py,sha256=BQqNeI4Ow29oWpCrkZbw8bLSKUXrP0vFNZewxJcjcgI,7356
|
|
581
|
+
angr/knowledge_plugins/propagations/__init__.py,sha256=tG2ER9gilu212YgjfNB7-J8cLSw8kuE1m-UaM8wjljE,202
|
|
582
|
+
angr/knowledge_plugins/propagations/prop_value.py,sha256=FFRNqHaEKzYF4sIMRoqemoEqTJxyrI9kvTgC5MdzEK4,7597
|
|
583
|
+
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
584
|
+
angr/knowledge_plugins/propagations/propagation_model.py,sha256=IL8cxQ1uBiUQ8-GkMGVICpV5Gfftv-PNR7OX-6NdR5o,2898
|
|
585
|
+
angr/knowledge_plugins/propagations/states.py,sha256=lcjKdXShcahTXVUpeJoxYEdjBLBZosOot5qz1kTJ_EI,18956
|
|
586
|
+
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
587
|
+
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
588
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=1zDV7R_hn6qoblQWK0jxf3GKjSKYJ_iVb6ETx9nGbkk,55706
|
|
589
|
+
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
590
|
+
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
591
|
+
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
592
|
+
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
593
|
+
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
594
|
+
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
595
|
+
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
596
|
+
angr/misc/bug_report.py,sha256=ij7XdCiW5hADjmfw758OPQ16p6-FNCeRDcOJLbn570s,3954
|
|
597
|
+
angr/misc/hookset.py,sha256=mP4qYEwBGYHWqJ3jhCL3x-Bvppmc3nqhTdYv4kSAdtM,4549
|
|
598
|
+
angr/misc/loggers.py,sha256=Vfr2GQFpDjxSG5RRrUd3q9JJctIY3Q027Hu2OSLYWKU,4247
|
|
599
|
+
angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1311
|
|
600
|
+
angr/misc/plugins.py,sha256=1NzhTd0rSY9oPElCeMGMZXLHEclOWVIEgdq0JvxpUMc,9385
|
|
601
|
+
angr/misc/telemetry.py,sha256=M6MhDs3kUg9AYTHA1WWu5GyQQKJgJuALloeHh4cJiDY,1217
|
|
602
|
+
angr/misc/testing.py,sha256=b3CWR7bv38RP-IjGKKjZmvCLyYvvSNPSdZu5MgniJ50,626
|
|
603
|
+
angr/misc/ux.py,sha256=3iU1tDj4_pZZ_FEouoD8S1frjOGjY9w5gF1sqjOqnXY,742
|
|
604
|
+
angr/procedures/__init__.py,sha256=eTLs6tsx6qjSJs26uUbRL14qs7Dnv-2v2HRmczjtgag,263
|
|
605
|
+
angr/procedures/procedure_dict.py,sha256=JyGzAqIycONIOCVlQhciJdFZunZrn_oGP67M_uE3Fms,1907
|
|
606
|
+
angr/procedures/advapi32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
+
angr/procedures/cgc/__init__.py,sha256=GFTI1FuWVFmdqaBoNSFREIw6JiGKw6ajJVBbTgu9j28,76
|
|
608
|
+
angr/procedures/cgc/_terminate.py,sha256=PjYwBy475tXOEnxv9oPXIxndCgU94L2_KsgP0fxUhtI,259
|
|
609
|
+
angr/procedures/cgc/allocate.py,sha256=te23YiFch2SyJZ7PxhAHFDg1Kl7UJCDIv59I_NZahlw,3288
|
|
610
|
+
angr/procedures/cgc/deallocate.py,sha256=xX6HLeiCmyLXa3sTrsiQ6Yipln34zelHrZyFoGgEZHc,2200
|
|
611
|
+
angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI,2711
|
|
612
|
+
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
613
|
+
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
614
|
+
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
615
|
+
angr/procedures/definitions/__init__.py,sha256=96f2EG0ZumyXek8lbsW1hrFD5VMiWD6o46LuDxsWqtk,31941
|
|
616
|
+
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
617
|
+
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
618
|
+
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
619
|
+
angr/procedures/definitions/libstdcpp.py,sha256=IoPJJEFQZR6ysOYvU1EmVK_IyQPuoq73ehImJuGS3JM,750
|
|
620
|
+
angr/procedures/definitions/linux_kernel.py,sha256=xPpfHkfaA_5jS6mPX1YDCPLHEAirAmeGW6mLDBKIlC8,239128
|
|
621
|
+
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
622
|
+
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
623
|
+
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=ssyMjeyuPVYHnbmArwDPO0XXMW1n5Odv__n17cdLVcY,1823
|
|
624
|
+
angr/procedures/definitions/parse_win32json.py,sha256=dcpZ63xDX5lXyaONOn6pB0_afEBxTPI-w3r0a6sVH3A,110462
|
|
625
|
+
angr/procedures/definitions/types_stl.py,sha256=4fsMlaDLQ7IZfL0jQX4ZvTkqBg5tsoeZAfSwupZm1gI,816
|
|
626
|
+
angr/procedures/definitions/types_win32.py,sha256=Iv1JT_JwzhfUpnxcKMgAwSw_huuwhi_rKkD7NMO8sow,9998099
|
|
627
|
+
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=dC8j-gGlKujHqmTaVvMhgUjvTPEEJ3oZ2h1MODBK7a8,1450
|
|
628
|
+
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=ay_JhCAB5sn6mKm_l7wjfi7PTqLdKQmHoDNwgdGl5dA,992
|
|
629
|
+
angr/procedures/definitions/wdk_clfs.py,sha256=0SBGwAqe8ekgURZCtElqG4tZ_i31m8YQCDOWzXcq4pk,22844
|
|
630
|
+
angr/procedures/definitions/wdk_fltmgr.py,sha256=dGdrv4Ur34I9xXS0BxZ_eVLx6H-NvFvPb7MOicXx9iY,111973
|
|
631
|
+
angr/procedures/definitions/wdk_fwpkclnt.py,sha256=60dkkrBlG46R1KP_p12fW3U2IhIvKrmRQG-LDtl5n58,1722
|
|
632
|
+
angr/procedures/definitions/wdk_fwpuclnt.py,sha256=FnDMFdUcC0GIks83_I_58PT-iQhRHNq-bovk-UCm8Wk,68438
|
|
633
|
+
angr/procedures/definitions/wdk_gdi32.py,sha256=HmpcvTQXkg3vkYgXMTVmMMXKBYDHTVoJC1ANWbRNe6s,37299
|
|
634
|
+
angr/procedures/definitions/wdk_hal.py,sha256=uc14u5RQNCpEp3XWQdIysHmkiucPIGlsJXm37q08wGo,11407
|
|
635
|
+
angr/procedures/definitions/wdk_ksecdd.py,sha256=vC7-NlK9GNg6Kxa_uQ1rMMf6uJQonFYp-m6jruF6vww,12519
|
|
636
|
+
angr/procedures/definitions/wdk_ndis.py,sha256=f2xC_cOb6UpEuVeH3-tVLG2geA7SnJkbNapa9jnjjGM,33940
|
|
637
|
+
angr/procedures/definitions/wdk_ntoskrnl.py,sha256=v5hHRx5u3-4u1T0rCkyP34cE-UzDNlhupPMD2gNlFjM,593189
|
|
638
|
+
angr/procedures/definitions/wdk_offreg.py,sha256=A3zzsljBMDhkN0J0TuRvi8iwh79N3iHDwFdCLb6uvlk,9854
|
|
639
|
+
angr/procedures/definitions/wdk_pshed.py,sha256=5Tof5cWI03_fqGTJmfa6uOTyRRI-puotQIhCibAJslk,1972
|
|
640
|
+
angr/procedures/definitions/wdk_secur32.py,sha256=ac9lYP5SWRg50vQn2ZpYbc6AHAZPW-Rh64V0UW2Cxl4,3470
|
|
641
|
+
angr/procedures/definitions/wdk_vhfum.py,sha256=IgjZqXURbreT6oLKOsgcEdt0dwI7dhg6qqxGDH6kXeY,1934
|
|
642
|
+
angr/procedures/definitions/win32_aclui.py,sha256=3A727qFw0alO6ggiRpJquLjaWYuLbM3jPYeRSjvLa5k,1545
|
|
643
|
+
angr/procedures/definitions/win32_activeds.py,sha256=8IUHw5XB8XYKPFVkbBdh3Y2PQaFQEtDLgcn5er35qsg,7869
|
|
644
|
+
angr/procedures/definitions/win32_advapi32.py,sha256=Csghzk2bulaCoe1eWJUgFgeRb6suwVAjC18bgeZL1os,310921
|
|
645
|
+
angr/procedures/definitions/win32_advpack.py,sha256=wIjhi41Dlwy6Y8oIAK92NflZ9e8A52Qf4F8AIssJ_Ns,22306
|
|
646
|
+
angr/procedures/definitions/win32_amsi.py,sha256=VHk9sV3FYMXeTdeIK3tcIjYsE1rAg9Z5HQeRCrNetjU,3422
|
|
647
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py,sha256=16z8nm7u8vVC9sophnN0gzO0oPrXQtuTwjC_kWiP1E4,3761
|
|
648
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py,sha256=Qaszl8P4Vn88YQPFjP_ZGRvpv5QLvq7k6dNN0nlcGPc,3043
|
|
649
|
+
angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py,sha256=IzO1invMcelZCy0mG3B44SiBlamBVqg-Ct2QIeXjPqY,914
|
|
650
|
+
angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py,sha256=x4rgMZS6SBckFqGxbD6EDZ27QdX2DpiUhcjIeNmkjfY,978
|
|
651
|
+
angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py,sha256=8jrLAwUyfufaeY7y1A0iuOJp4JG9xc1Owrg7mz4UVW8,1052
|
|
652
|
+
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py,sha256=LxuNoY-QtOPzMKBzyPLfF1Tn4dngQ26fCogpfLS9PCg,1126
|
|
653
|
+
angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py,sha256=Ss6ePfyW3auD1Oxg0xtnK9CP2kS9cOnhNMozv-rYy4A,1159
|
|
654
|
+
angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py,sha256=C-jiewfdpI8X_dMgHZBtWeAZHmL6huIlBjD_MhpGmEU,1480
|
|
655
|
+
angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py,sha256=gUdKOGKtSXa6nTpT5krAIeMvoEPRpFX6SMLma2IarbU,1029
|
|
656
|
+
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py,sha256=6F3mPWE9kiFVV-fZfQ0xndPdws3_YsACs2n4IN5bDq8,2309
|
|
657
|
+
angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py,sha256=L0_-ey6xbFA4pP-zGhVTKZ_L_vp9pWKQ69qUPFdambc,1209
|
|
658
|
+
angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py,sha256=YDz5kCZIB-iyA1bA4jA_EfmiO8dDKDOYI4G9AkuJGxg,4866
|
|
659
|
+
angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py,sha256=lY62q3EuOpWJyobgMWTC8QTatvMFxDShk35W-oQdTBo,1117
|
|
660
|
+
angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py,sha256=cMkmAZCkC8gg9WgjfA-oXoNMJFGd2GcpXw5Mey97h-E,5156
|
|
661
|
+
angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py,sha256=LIRlekQZ9V384eAOH46lwsB92-yWhtZp55jUDkFzzOE,2211
|
|
662
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py,sha256=VL2ujpJMiYsc8tkfidTjwAOXaCIT7HjEsCf51tsz1-g,2520
|
|
663
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py,sha256=LEsL3kN16nKsY2Tmat90e_GjwnZmn9Ra3ANH6p9NWDo,1484
|
|
664
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py,sha256=fKOkMnDwxCPxlpVEkgzZQeJHCoB3qzKBbYRzRfOk9Wk,2220
|
|
665
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py,sha256=PzSjp9VyFA8ZzaHNM6hGryIHcSq9CIfeL8_8usB9FpQ,3859
|
|
666
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py,sha256=jsS_6bgMGmT8-bAj2Yy2Fc6bDQvSJXMuYw-T7JU3nsg,2354
|
|
667
|
+
angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py,sha256=yqrHWUUUn34uek7X_pkGhiUam7P4gdW2r1vZqQqvrTw,2370
|
|
668
|
+
angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py,sha256=mjOQNEz1GoUOu1xXZHjOrYuhYGYYM8zkRpyn5a_c2TM,8398
|
|
669
|
+
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py,sha256=AIjIqZHh_2e_TA85LDZhv-S9LSDI4rc4RnsF4Ipa_iQ,1539
|
|
670
|
+
angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py,sha256=LajBEbjBbZEGhLsfTGQecwX6aRgLJ4aHOUchkBkvep0,1554
|
|
671
|
+
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py,sha256=1nH8n4MF-TbYeR6uIW0ei-aNVDMrronIopxHoJc2Ayg,1421
|
|
672
|
+
angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py,sha256=ZvDZOntZ2fJJRMtTSXMnoKdVSRWTS--Vj20EBiN9kYY,1842
|
|
673
|
+
angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py,sha256=1KX89ZH0vsiQwW5_1J8nA2icqzyRpH8CyMmur9NYnjU,1273
|
|
674
|
+
angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py,sha256=ll9oV71UsQTeqE07wKNlT3wLtD6j2_SQf2WmcOfsiBo,1674
|
|
675
|
+
angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py,sha256=1bxxAEYieA0-yej69EgZLGXTjjxOgrjmcc6zMWoRDjc,1532
|
|
676
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py,sha256=lcC3WkAeTdMy1LDpviqoEAxKotaYI2DkA4u1_Zk0VVM,987
|
|
677
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py,sha256=r0cArK5vDsc_SlPBn3wBAA01oyo1xn2iCo78gkhpLiU,1176
|
|
678
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py,sha256=lbMkuid3dWTSGIc5Vh3jfxpa5EYqZ-ztzvrdHogc3AE,1459
|
|
679
|
+
angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py,sha256=BrCIRSqmTfy-V5LZhH9L0o9xPgZngeB7odZMA3oxe1o,943
|
|
680
|
+
angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py,sha256=OOYSzf939k67RHYcS5R2W3vTj-1-Ug4bQ3J3Ly3mOz4,1529
|
|
681
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py,sha256=j_5qAi-2FCj5nho354PgX_F_wFyCWwCwPCllBl5Of7U,3288
|
|
682
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py,sha256=BlFbC_Jc9Dy0Dz3DdjvYO4gu8JYZm3KRSqBQmFI1ra8,3797
|
|
683
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py,sha256=RsMqPcnAmQKugTtNhrEFgAbw1QIjA8QZsRkx_uzicuI,3248
|
|
684
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py,sha256=eCyIVcolHQ52r0uLrfsSqLDzgkhQMLObIVUSzM5W3p8,1182
|
|
685
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py,sha256=Mac_MgTdmHR7lTi_L1nG2SmsATrdeHTsKluxXgRif1Y,921
|
|
686
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py,sha256=Lft9_jJFPBjQbY0yEL7xI83VC5lLcHTnPkN2DKD9200,1714
|
|
687
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py,sha256=em7BXHO6UXyQLg6Sjjf8rVstzPdCVJiVRG7jv9zfog8,11006
|
|
688
|
+
angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py,sha256=QTERj__q6PlgW1ecYFPOfI97Y9DUR9___0OgXuSYPDo,1570
|
|
689
|
+
angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py,sha256=kOPAAOwWwLHJ9P9aljIHzQY7zt384yqGSTCNwzTlXfM,1645
|
|
690
|
+
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py,sha256=M-gablG4RZez5-fZ8SIubmWD0HQxhYJDOJQIGAgfsBk,6941
|
|
691
|
+
angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py,sha256=-8jhbS0U9JPTlSYf02w4RxMz_P9IEuAHHj1LSE6PUzk,6672
|
|
692
|
+
angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py,sha256=ZRN6x33ppDF23ZwS37HNm90MTUAUOvohqzXlT7Z8vVM,892
|
|
693
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py,sha256=XhjKWcE1f-gbbkkufvYmggTlN3WQr9atLususGWfYiM,1035
|
|
694
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py,sha256=V0bV6Kpdr5PhhgpZUhaS0RMa9GeKTWaAYlFN0nzOvf8,1339
|
|
695
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py,sha256=TrRMP12lAE7-LnUMOl_-e8Pb5mg2fqBCZ6e_BA0MjGY,3975
|
|
696
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py,sha256=dttr0WtnDrhzJgvCQ-y_kE4FuP0tBiW4YLcFaEv45z0,1745
|
|
697
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py,sha256=E2D63JWwf5ya59jhQe5wsNm5cGEEX0XrsuJHcWwpj2M,5006
|
|
698
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py,sha256=puKbx2vG42UoS0st9HA0n05Bo-zF-j_Y01mlGct_0rY,2225
|
|
699
|
+
angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py,sha256=WTfAC_vkIaTqH7rlNXNprXQ3GSxnd1iHJqp9_1JSrIU,4351
|
|
700
|
+
angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py,sha256=5Yo3lkc7V0VMRZNDs1wkWn5AYy8Yo-DTFnFK5CTaz0A,1199
|
|
701
|
+
angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py,sha256=r_fmWtpvPIJAdE866gl2zvzjLcpqNj2vxpjsmYn_cTM,3904
|
|
702
|
+
angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py,sha256=Kr45T3KQ3us53ljA982LL7KgZmqOunoKArxPcQzAiJs,1426
|
|
703
|
+
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py,sha256=1SDj0OJBH3LKysaPd-QL_CwBQzN-P3z_vigR6zR2Wo0,1033
|
|
704
|
+
angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py,sha256=Zo8TX4TfEjmQfxUoykkGRZftCvFa-_HqPBoqJafd-zY,1092
|
|
705
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py,sha256=Whhq6lxiNTNSov1pCQ3U2yi_96-QPMntzFtzT03pnLA,1281
|
|
706
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py,sha256=dzz8McDfUNAwcwU3mPtUNEp2Nd9n8TAzMUhZ45lwSks,1336
|
|
707
|
+
angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py,sha256=9bDf4nHm7aQSOPasFY644l7Hjl2OOPjdzwb44hzi518,1825
|
|
708
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py,sha256=9yFhRZAwSoOICspy2B-22Zn3DMJ7nt0NfaaZI776JCs,1679
|
|
709
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py,sha256=EGwohUv_zCkeOAx9gVcqVE-Nvo4-ucLWp-UC94oGgiY,2537
|
|
710
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py,sha256=6NPGnc_ao6N8bOn-xWg3uEd1pVFWHX8FWCQRBPAlZzA,986
|
|
711
|
+
angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py,sha256=J0GeOsW5Gkm5-QQErWK34TlupXqKeyLJSxV2S9xkiIQ,1837
|
|
712
|
+
angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py,sha256=GkNo_52-9St11ep4sVUwsTduJKZ6vSGtiZyiNYCoI3w,3578
|
|
713
|
+
angr/procedures/definitions/win32_apphelp.py,sha256=sNRIUTFnsSJCTDGTzwjANsuc8_P46L2ONTMqJbi0s9M,1109
|
|
714
|
+
angr/procedures/definitions/win32_authz.py,sha256=deAHvT2Gx7ZuSWFHFt3C208KxuH0eFtMGWJd4uWF4UI,17581
|
|
715
|
+
angr/procedures/definitions/win32_avicap32.py,sha256=DzFM3gc6rzffrhi1BshvBRhY90Y7TzCvcoNHG5Jr2Sk,2876
|
|
716
|
+
angr/procedures/definitions/win32_avifil32.py,sha256=bxz9WgQkodEkrsXq9hTZxtwujLOvH13y4FekgqFN_Qc,18930
|
|
717
|
+
angr/procedures/definitions/win32_avrt.py,sha256=Z1GlNhxZXo6v8DClMPyBBxMpWOz6RHE7LU51S6EzYz0,5521
|
|
718
|
+
angr/procedures/definitions/win32_bcp47mrm.py,sha256=YNQXw9uVYUXKaMQ6VEseLc5NhaXut3N1yo6Dyq87YPw,1320
|
|
719
|
+
angr/procedures/definitions/win32_bcrypt.py,sha256=uQpPExtpXX3JB6HBnkGpSriU5ax1uO3XlG3wiYeBDq4,24325
|
|
720
|
+
angr/procedures/definitions/win32_bcryptprimitives.py,sha256=K8CgarfXBcZHNKy6Xzejv3l_d5oZujneTg_wFV_PPQU,1317
|
|
721
|
+
angr/procedures/definitions/win32_bluetoothapis.py,sha256=VqkksnfWOxprm-s-06YzGOlyYbhlTVqBdHIdUpL55sc,17633
|
|
722
|
+
angr/procedures/definitions/win32_bthprops.py,sha256=zkmhpbTfJxD5vlYTHm7xl7bqeIOTM1QGz_uw8QyQ1Ao,10970
|
|
723
|
+
angr/procedures/definitions/win32_bthprops_cpl.py,sha256=JNoVypTXJEp4Hqqk0_GpLBDJ0KHYNPlW7J14BfIJKnE,3086
|
|
724
|
+
angr/procedures/definitions/win32_cabinet.py,sha256=IJmNcLooR2IzyRLU9naaAZHzJH9ZOfdCs-iPAxQlA9s,16634
|
|
725
|
+
angr/procedures/definitions/win32_certadm.py,sha256=-3AF3OwyF8nvw3a__OvjHMk3WV8eNP8xdKjbuctuwWw,6812
|
|
726
|
+
angr/procedures/definitions/win32_certpoleng.py,sha256=53gM181wzmFYvp3wKgeUJbbcWtZO74h4EWMTHwstbgY,4337
|
|
727
|
+
angr/procedures/definitions/win32_cfgmgr32.py,sha256=Or_iBLeM4AGL5_-RrMmT_R9_VjoHkqmcMypAggGduas,101552
|
|
728
|
+
angr/procedures/definitions/win32_chakra.py,sha256=TZaIRk7NdX3fcblsB_c74LZ3ueDWqbK0QlZ4EGYlMts,26399
|
|
729
|
+
angr/procedures/definitions/win32_cldapi.py,sha256=W-oVnDR0Td-wpMKFDG6atd0rwvNB2DoGQNw99LqZZOU,14263
|
|
730
|
+
angr/procedures/definitions/win32_clfsw32.py,sha256=FEV_mpZRmLK7YL-Awa0-3kAlAJAoQ01JAu200OKPBWo,24130
|
|
731
|
+
angr/procedures/definitions/win32_clusapi.py,sha256=JNZOR1FA5Ga9U3BgKz9fnI-CluaN35400CQlkGML0f0,111733
|
|
732
|
+
angr/procedures/definitions/win32_comctl32.py,sha256=D6GcVQdHdx3z23QATUITig2bhv96zcJyU5LNwn1gLZQ,43357
|
|
733
|
+
angr/procedures/definitions/win32_comdlg32.py,sha256=1SBp3D4Nox4A8o23n1L2ZkjXRCiIL9O0QRFr0eHq2QA,4886
|
|
734
|
+
angr/procedures/definitions/win32_compstui.py,sha256=JFDRMGe8VckN_uXEEpZ89HnX9tE1L0nPeOj_qEXwGic,2643
|
|
735
|
+
angr/procedures/definitions/win32_computecore.py,sha256=JVd017xX3_7Lei5KmgsqJ2stMA0N16Xh9bv3Wh0gVM8,19466
|
|
736
|
+
angr/procedures/definitions/win32_computenetwork.py,sha256=7eeyAdnTkOC2c0wNUe7D-_VkE4_ktM15AHgBlM1byFM,16024
|
|
737
|
+
angr/procedures/definitions/win32_computestorage.py,sha256=kTXvsqIz-lBLoUhBSsvpNSPpsTjrzOTDKi3baKszCFk,4397
|
|
738
|
+
angr/procedures/definitions/win32_comsvcs.py,sha256=YrTsBCYMlTbB0QeIxSmXEKOrIESE3Pelm0de6cyaA_c,2233
|
|
739
|
+
angr/procedures/definitions/win32_coremessaging.py,sha256=j6eEdncUCfrYUUdu-8TTBkuHv5gOZqTpsrJxE02LxbQ,1221
|
|
740
|
+
angr/procedures/definitions/win32_credui.py,sha256=f9b5rv5qmBwpmAJ-cx0G7385gRtI806FMJ7n9E-za9k,11815
|
|
741
|
+
angr/procedures/definitions/win32_crypt32.py,sha256=KEtHYJXcIvR12GtOTBwLsz6oMTkoXEePpgm_h5ElzzE,105551
|
|
742
|
+
angr/procedures/definitions/win32_cryptnet.py,sha256=8DuKkPrHcMOfCkRXa_SffbP8rqzsKS6qu0MntshKozc,3856
|
|
743
|
+
angr/procedures/definitions/win32_cryptui.py,sha256=PK_gUEtgVthshK6DJ74abDaWDFPeQ_pJKBNWlaCTkX4,4927
|
|
744
|
+
angr/procedures/definitions/win32_cryptxml.py,sha256=SMHDzN6NBk3uhHWczYXN91gAMCJCpaI5d1b05vukIDs,9057
|
|
745
|
+
angr/procedures/definitions/win32_cscapi.py,sha256=R4A0v5FI4kf0N3oM10bsU9T99ZH3tJIaTsaio1aLF1o,1761
|
|
746
|
+
angr/procedures/definitions/win32_d2d1.py,sha256=YZ_-Fy9TIUbM5JbP2Uq37fHXVGZzyhcnJh7kbhI1WKs,5245
|
|
747
|
+
angr/procedures/definitions/win32_d3d10.py,sha256=XFSlExxFAqT9KOylk_uKsH12l9OhyvuUSPBkU5NWM9o,11538
|
|
748
|
+
angr/procedures/definitions/win32_d3d10_1.py,sha256=kqUn13EOtrWT6BotAS7PjeVlmHokDlPGQWNbFCrPzhQ,2110
|
|
749
|
+
angr/procedures/definitions/win32_d3d11.py,sha256=JvvUneVqsbiUY9-bt5D4Y3hH4Td11ViR7iLNSNcvoiY,3567
|
|
750
|
+
angr/procedures/definitions/win32_d3d12.py,sha256=9BhIb0HGxujKM-7e8vEqXWNLUPbfl8Cu2SCGSXRo3rg,4070
|
|
751
|
+
angr/procedures/definitions/win32_d3d9.py,sha256=YGDXcsdLtCRf0i-LkflxUatWlaRw9-H9KWhVxyPvN8k,2994
|
|
752
|
+
angr/procedures/definitions/win32_d3dcompiler_47.py,sha256=zlT4tbspfdyuxVr66J45bDf5RVRMuZAuWge-Fwwp3V4,13424
|
|
753
|
+
angr/procedures/definitions/win32_d3dcsx.py,sha256=IulrVTPfMplatB4sw2wJLNjwv1lQlk9b6n_jKReKxHs,4819
|
|
754
|
+
angr/procedures/definitions/win32_davclnt.py,sha256=fml94AcHQtMbK2Hd_2M-0IjCMP_aObn7PvbtDwNOtwg,7258
|
|
755
|
+
angr/procedures/definitions/win32_dbgeng.py,sha256=kCs3SRJXhVYdP7F_6cXeGebr6aVzSBhEL18yDhU0H_o,2055
|
|
756
|
+
angr/procedures/definitions/win32_dbghelp.py,sha256=72d5Zqcpb9w8mducP_GhYwct959zaSHjSsCadu4niEY,109034
|
|
757
|
+
angr/procedures/definitions/win32_dbgmodel.py,sha256=qMdg9kelaP0DdjJDoxVdCouE90Nb0b06SAlGYsoXA8M,1020
|
|
758
|
+
angr/procedures/definitions/win32_dciman32.py,sha256=DjVGhtH2ZOozgqEPNl_mUyO10Pz5nsM-3gsZwSmE9oU,7143
|
|
759
|
+
angr/procedures/definitions/win32_dcomp.py,sha256=VXUEnpsp4SpG5RlVgdacriH1F0WqjjoAB0OUT6fvPlo,4829
|
|
760
|
+
angr/procedures/definitions/win32_ddraw.py,sha256=59nVdKe8aJkhhy3GSHxASpDWB7ooMpYOsrzfDim6XOo,4225
|
|
761
|
+
angr/procedures/definitions/win32_deviceaccess.py,sha256=xy5U2Of3bS06ujOjIB4J85rgUn9u8l-DGbYMzTgeuN0,1126
|
|
762
|
+
angr/procedures/definitions/win32_dflayout.py,sha256=6duz78-5R1HcakwIGt8dFv0fPTCARbPCHPhgGUpSt-Y,1137
|
|
763
|
+
angr/procedures/definitions/win32_dhcpcsvc.py,sha256=pqva0IsZuUsgQlbVMLw8qxf4bh3XLlpSd0FYjL8o4pY,5562
|
|
764
|
+
angr/procedures/definitions/win32_dhcpcsvc6.py,sha256=w4HJxfmQQ1UOmLzt1Y_L1t3mJMQkZ8S-JfDTz8pFepE,2959
|
|
765
|
+
angr/procedures/definitions/win32_dhcpsapi.py,sha256=06Rjx1FR9PxBch_20cs7LPGcZSD7WMKTOSTdLJ0J-t0,81402
|
|
766
|
+
angr/procedures/definitions/win32_diagnosticdataquery.py,sha256=5lO8NjVa_r1I6T_vUiSzVLaso0nGSGZeppcty6bbu3Y,13689
|
|
767
|
+
angr/procedures/definitions/win32_dinput8.py,sha256=169DawMLaQd4_zRTdhWN66tvzE-mFy0tLrU8dOu1Yx4,1235
|
|
768
|
+
angr/procedures/definitions/win32_directml.py,sha256=eqdZVBWkD8-wmST8kW9H5mfII77xoGmdgjLzuLln5hY,1613
|
|
769
|
+
angr/procedures/definitions/win32_dmprocessxmlfiltered.py,sha256=_0C-wMLpX1lWV6NZXnHBtNV03Uw3LmXLu31gRs-Q-xM,1253
|
|
770
|
+
angr/procedures/definitions/win32_dnsapi.py,sha256=8ELTv4u6HH_yxXsccdVp18gqhPtuFMPFw0f1tRFQ2oo,22807
|
|
771
|
+
angr/procedures/definitions/win32_drt.py,sha256=WFWFK5AmoWau6yUXSyEULMYZUuu0nRui5aNOAMfI28Q,5571
|
|
772
|
+
angr/procedures/definitions/win32_drtprov.py,sha256=G9fARdpdL_NFMVS67lEzPOATA6R6nOxVS8dlPyIm7JU,3365
|
|
773
|
+
angr/procedures/definitions/win32_drttransport.py,sha256=tqA0YXSK6I4Hy6MYOJ_HBWyzgXRRmuN71_yUXYSPXok,1437
|
|
774
|
+
angr/procedures/definitions/win32_dsound.py,sha256=jZrSPZMAi-JK5BeVqbFHHFOp8RNG350acG-nMeGUv6w,5359
|
|
775
|
+
angr/procedures/definitions/win32_dsparse.py,sha256=mYNsoUkF4Pn-_WkPJac7J3XujZrh7-hvYrgYmwylyWI,11574
|
|
776
|
+
angr/procedures/definitions/win32_dsprop.py,sha256=OhKPA5WYKUBN4dfKvjO86X_mCiDv5FChAaUXcIqZD5c,2927
|
|
777
|
+
angr/procedures/definitions/win32_dssec.py,sha256=XYNfQFWPJnX4jUsZU2g1yopeYisw9dmSoRwde_BicCo,6181
|
|
778
|
+
angr/procedures/definitions/win32_dsuiext.py,sha256=LNw4klBHHsjPSYH9q9kblmPb22htD57eF91hAKBl6ds,1847
|
|
779
|
+
angr/procedures/definitions/win32_dwmapi.py,sha256=kQ3IpwQ4Ang70BIddIKEf52Ksxr6bRQhE8WhaRGx-OA,9707
|
|
780
|
+
angr/procedures/definitions/win32_dwrite.py,sha256=dA2-ynZw8PUt438S5-LE2E1TmMbZsjlj1vd838okWN8,1112
|
|
781
|
+
angr/procedures/definitions/win32_dxcompiler.py,sha256=KbRyYn-v4MDUbszbji8ntrIcn3EYV1gdsC94gk56Bos,1476
|
|
782
|
+
angr/procedures/definitions/win32_dxcore.py,sha256=6DSUIczUhVDUg5A19IzCvlP4_D1JwFNz1hxI79KfbbI,1053
|
|
783
|
+
angr/procedures/definitions/win32_dxgi.py,sha256=Z24RsPDZ0hCcvcAAS5KSekFh4A2Bi_nc4REbaCbFXD8,2177
|
|
784
|
+
angr/procedures/definitions/win32_dxva2.py,sha256=K9FHB3vpiBAmrVjljcG8GR9uLd9yTZ_ePX-wooBRo_k,14546
|
|
785
|
+
angr/procedures/definitions/win32_eappcfg.py,sha256=yg3Vk01QtIL363d_9JCWRHxU-hqrqovT6BXRsW_ql1s,10109
|
|
786
|
+
angr/procedures/definitions/win32_eappprxy.py,sha256=SSb606EFRCGBA0oqsSH98fT8Lg_xaHJZqsZ0ay7EAVQ,9170
|
|
787
|
+
angr/procedures/definitions/win32_efswrt.py,sha256=Ccba4h7UbdR6nnsLqynI6uHYQNon1mN1q-93iB_bfeg,1303
|
|
788
|
+
angr/procedures/definitions/win32_elscore.py,sha256=LmtINAHpijSDBjnaCEKJn1SJiqUMNhxJf-FuluaSL1c,2438
|
|
789
|
+
angr/procedures/definitions/win32_esent.py,sha256=TpPJx65kqHrUhnaHC5HZfvJPcSy47rxjhaH2tQIy3NA,105919
|
|
790
|
+
angr/procedures/definitions/win32_evr.py,sha256=idX3REAxfCSDT9-ebS7ymu6OwKRJw_4KhBSZ2c2uleM,3138
|
|
791
|
+
angr/procedures/definitions/win32_faultrep.py,sha256=fO_ajAYmRnAmqOBIppzfQnClIgPFOcpY1x43RulT9ws,1679
|
|
792
|
+
angr/procedures/definitions/win32_fhsvcctl.py,sha256=WPQ_KDGrF7ytu11m8vhElLVzyTUwNCuEoacVfgxo7pw,2393
|
|
793
|
+
angr/procedures/definitions/win32_firewallapi.py,sha256=2w6Pqv-M8r2lKzfZVWVZiSjsvTRlA7ME7jHj1WhW080,2003
|
|
794
|
+
angr/procedures/definitions/win32_fltlib.py,sha256=fcdwW04L6Yt_WWAWWEUS5mH1NotWjNlfWT3tH_M5iXQ,12012
|
|
795
|
+
angr/procedures/definitions/win32_fontsub.py,sha256=HM_1qdQhWsNxR7B75mA21nkfrvAspOpvoo0wzhohhI8,4097
|
|
796
|
+
angr/procedures/definitions/win32_forceinline.py,sha256=Vf8qn1HTYrDg0siG1dgByxCHiMU8daTIQOaGOEYXGa8,1219
|
|
797
|
+
angr/procedures/definitions/win32_fwpuclnt.py,sha256=QXIDBpeDZcnrp6Lonn_8AxqLFVRZIx6jx0_ZNyrpoAM,93540
|
|
798
|
+
angr/procedures/definitions/win32_fxsutility.py,sha256=MpVFDGULIm13OOIj9OcZu4N-b2VGR-i7yFwwXdnquVw,1121
|
|
799
|
+
angr/procedures/definitions/win32_gdi32.py,sha256=raENZtv7QmLPw8d7sVIzrXkEn2m09-1nGgIgZ0zavBw,148166
|
|
800
|
+
angr/procedures/definitions/win32_gdiplus.py,sha256=yS8ph2W6NTQA3PbP3Z3jnxcxtvMhv9ZpQ74_HcQ1Vr4,247475
|
|
801
|
+
angr/procedures/definitions/win32_glu32.py,sha256=cBReI92_VLXWvyl5RjTKiM-UlCFSIrC_hK75R7FcBSI,16763
|
|
802
|
+
angr/procedures/definitions/win32_gpedit.py,sha256=QWZGpRJsYdptLcFkO5rGFfYb-TyA2mP3fMHyYopWgpg,2154
|
|
803
|
+
angr/procedures/definitions/win32_hhctrl_ocx.py,sha256=txOZaV9LOlhCmLd7aLZJvvfOI8UH9VmjoiWZEL-Fgss,1670
|
|
804
|
+
angr/procedures/definitions/win32_hid.py,sha256=sfx6MSvfKU_CkLkBA8LGWnGX0CoPnr424MHfztwcMmI,21789
|
|
805
|
+
angr/procedures/definitions/win32_hlink.py,sha256=ic3EdlrAwdxNne7yNxJrjrqCCoxpgL43xqw3M9xjGKA,12504
|
|
806
|
+
angr/procedures/definitions/win32_hrtfapo.py,sha256=t0lDQ54PuBHlNbA7GMkhh8JWP2S9KvHVLkKkYVpUJhQ,1019
|
|
807
|
+
angr/procedures/definitions/win32_httpapi.py,sha256=j83l17f_-XcckANj7d6w5Sf1Hgd4-G19fyEKMLv4ZG0,19725
|
|
808
|
+
angr/procedures/definitions/win32_icm32.py,sha256=k17u5QXxmHK8dsar-eQdrYTWkaYquRC7pD79jVBadMM,12525
|
|
809
|
+
angr/procedures/definitions/win32_icmui.py,sha256=e3KKw_F0zVFHaoGT0tYhdx2U_a6raA97Kh4PLEkU4eQ,1153
|
|
810
|
+
angr/procedures/definitions/win32_icu.py,sha256=lsPug88ztv2R9DCxXuKVpEcE3rYXbiT4MXV3viE0blA,373751
|
|
811
|
+
angr/procedures/definitions/win32_ieframe.py,sha256=Ru_nkH57CvxHix6tSdJfTfJqtBwVFM8uR2xGl9MamBg,10121
|
|
812
|
+
angr/procedures/definitions/win32_imagehlp.py,sha256=JPD2CNQaHWCnu6PWIe4DK8B8im4EKOsKjuhbtjVs5ws,11551
|
|
813
|
+
angr/procedures/definitions/win32_imgutil.py,sha256=COsqa839xczE44g9_8Q52n3B5BNLqA9uQvzsKTuCCRc,3876
|
|
814
|
+
angr/procedures/definitions/win32_imm32.py,sha256=fTU0RaotFyr6Cwidj433Nh21M5T69NfWGVITDtvwPk0,28238
|
|
815
|
+
angr/procedures/definitions/win32_infocardapi.py,sha256=IUfI500LbKeUElUV5a7pnH8XXrJaXDyICjVWgqM_e5w,8092
|
|
816
|
+
angr/procedures/definitions/win32_inkobjcore.py,sha256=0Q3vOrPlycrbe2c_M64By_XfmVPZ3lOdKPV-naFdNZo,8935
|
|
817
|
+
angr/procedures/definitions/win32_iphlpapi.py,sha256=HQdoH5sfAEYVNbcaZhMwIxarEwpf_E4dA6J7UMNeQ5Y,65721
|
|
818
|
+
angr/procedures/definitions/win32_iscsidsc.py,sha256=QEA2kryYZCMHzt5HP2b1vTOk7lHFXd7YBf9Z_8764NQ,28591
|
|
819
|
+
angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py,sha256=hvXYx8mP1S1XtDqpYklhyi7PZBbYkfwlP74GYs7yjo4,1285
|
|
820
|
+
angr/procedures/definitions/win32_kernel32.py,sha256=LajGuUX9flc4oM7m00PPaUNbuM-AnO19Pr-mP70TTJ0,505045
|
|
821
|
+
angr/procedures/definitions/win32_kernelbase.py,sha256=CKHNdAjM4T5qqJGpsqcfDi6YZ0PtUy74hlq-TV6b6i8,3150
|
|
822
|
+
angr/procedures/definitions/win32_keycredmgr.py,sha256=4XyRo52UQvTSmGkAI8JEMdhmHxZEEDzuYY4zH4xZL9o,2052
|
|
823
|
+
angr/procedures/definitions/win32_ksproxy_ax.py,sha256=kU1dvayKuT7yZr0oOU68OZqL6DjGviVY0sK0F5dMWgM,3681
|
|
824
|
+
angr/procedures/definitions/win32_ksuser.py,sha256=fu7Fw2Yki7AetHpTq6XxMGiTbO5_KTjkF20o6X6eEkc,4320
|
|
825
|
+
angr/procedures/definitions/win32_ktmw32.py,sha256=D44zBExiOxebM0_tyTGuZtAEElcgev_BYIubXEYfS0w,14599
|
|
826
|
+
angr/procedures/definitions/win32_licenseprotection.py,sha256=mP8wzULwUNR13AGsMG-b1dsvVff3x9DsmkHkntHPyR4,1574
|
|
827
|
+
angr/procedures/definitions/win32_loadperf.py,sha256=Uy3DnEeSwibXFl0JYtw6L-HAnwOSONRhnJL8Zu7Tpno,4326
|
|
828
|
+
angr/procedures/definitions/win32_magnification.py,sha256=bZj41JiJipIfQJw5G5DYE2ykcBVn2vXR-DNlPpIpxIo,6870
|
|
829
|
+
angr/procedures/definitions/win32_mapi32.py,sha256=m_ncy4zT_pP4lhgofvbLrjLpUl0oy0mq3Ap6qaXGkWc,25161
|
|
830
|
+
angr/procedures/definitions/win32_mdmlocalmanagement.py,sha256=uNy1jpm-r6IXnPqx6XFV4h0V39wOOq7GVVxsjaq8adM,1403
|
|
831
|
+
angr/procedures/definitions/win32_mdmregistration.py,sha256=JtVAlCYBvJgBrMsQwCsVTI1bBqpRkQTlTPlYHr6uY4k,4757
|
|
832
|
+
angr/procedures/definitions/win32_mf.py,sha256=TYv2bKV2Ij2bPsLzlhfo6SNB7H0KpoEY3NdoF9nuHCY,17499
|
|
833
|
+
angr/procedures/definitions/win32_mfcore.py,sha256=WmKfb4WR8L7aPvazqEARdK5KsNTQePoyPYtS2r1RW9I,1350
|
|
834
|
+
angr/procedures/definitions/win32_mfplat.py,sha256=PAPtSzu38PYlVEcfcfxfKO5cIBjDytVayGpnm0NawtI,45677
|
|
835
|
+
angr/procedures/definitions/win32_mfplay.py,sha256=XQ-oRlMfjIjrfKlYJTds5FTo2iYnUip2vZ_goq09mTI,1318
|
|
836
|
+
angr/procedures/definitions/win32_mfreadwrite.py,sha256=vwnPzq1j_gCl2YbZa75tQn5MpLgKaa1IZAMJeV5jdKQ,2421
|
|
837
|
+
angr/procedures/definitions/win32_mfsensorgroup.py,sha256=I8EdDWlk0PVEoPi0q-B0sbxURRbGrv82bYYy0T50Qek,4355
|
|
838
|
+
angr/procedures/definitions/win32_mfsrcsnk.py,sha256=8CRRV0TMo5u0cL0ofz48pa_yIUhcGlS0TGuPfFE2dQ0,1443
|
|
839
|
+
angr/procedures/definitions/win32_mgmtapi.py,sha256=GfWNJplXALHe0cxhVA3Mkd9xSb09KO4p2_yK0IKGys4,4523
|
|
840
|
+
angr/procedures/definitions/win32_mi.py,sha256=J_HoXt1Mie3yTmW5DNGyOp-fB39YSRy_L_BSYlD4n8Q,1224
|
|
841
|
+
angr/procedures/definitions/win32_mmdevapi.py,sha256=OhHrZ1Mgxx-0nJwPKiRCDkxde_mZ_-Wd7fxNlqF09x4,1318
|
|
842
|
+
angr/procedures/definitions/win32_mpr.py,sha256=2khZYCd2e3brOU6tP3GIIey30g-ZxNky5m-l47ucMLI,19233
|
|
843
|
+
angr/procedures/definitions/win32_mprapi.py,sha256=qN1VDouPrt9R6yGRzdXbyx4zAPBz1luGAVvBs_27SgE,47658
|
|
844
|
+
angr/procedures/definitions/win32_mqrt.py,sha256=IiljU7hD9OmkYy3qzq7xI0TWbn8_hmz6rrE4CEf2XXw,13029
|
|
845
|
+
angr/procedures/definitions/win32_mrmsupport.py,sha256=dQKcJY7v3_EabkacbOj4Lem-1h_7A3UEpcGiYuOKUlw,11728
|
|
846
|
+
angr/procedures/definitions/win32_msacm32.py,sha256=MJdHuoLYCNhfAd7MUI4WFBmlt1yd6sUQtECFrMpPbQo,19422
|
|
847
|
+
angr/procedures/definitions/win32_msajapi.py,sha256=vP_zACa4lgc0LMs2DI4AamRQxdPrmySAvsk9XemsVEY,183416
|
|
848
|
+
angr/procedures/definitions/win32_mscms.py,sha256=E17ePlFXxs6wryZlxI8JSWHyvZBdYogDQ26Jol2izrI,34887
|
|
849
|
+
angr/procedures/definitions/win32_mscoree.py,sha256=6MGJcPTkB8fUzQ4CWCUUeMBcB8FTR60zgp7UbeufZTU,11967
|
|
850
|
+
angr/procedures/definitions/win32_msctfmonitor.py,sha256=FgXuhLhLnsVPZh1pBnHXptIq8SSEeeQYrSaEcpZPuzQ,1319
|
|
851
|
+
angr/procedures/definitions/win32_msdelta.py,sha256=XjL3hhdE0TIejKzQzHgAY-HANtcHko-tG5ltWJ-c4c4,7679
|
|
852
|
+
angr/procedures/definitions/win32_msdmo.py,sha256=4khYEEfFnw1sf8jU6ajyto1A54f5EJ8UpxDnsK9joCM,4581
|
|
853
|
+
angr/procedures/definitions/win32_msdrm.py,sha256=DRT5G7f2JZAHhhrv12YuE0aL4H6p-k0ZziklAkBH8pY,39068
|
|
854
|
+
angr/procedures/definitions/win32_msi.py,sha256=PnFOWdOhlPZ5-DVbMQsjE6ycQzdjCFPWwW3sWxilP4M,103098
|
|
855
|
+
angr/procedures/definitions/win32_msimg32.py,sha256=bLRtn4X0eRU7-6xjM0s4ftfRFwrSa0t66E-gQt4OztM,2788
|
|
856
|
+
angr/procedures/definitions/win32_mspatcha.py,sha256=M2iGYsBPp-pwt4r-fcgV6s7haHhJ9Cm9wHQIXEarPZo,11173
|
|
857
|
+
angr/procedures/definitions/win32_mspatchc.py,sha256=AWae9Owhlce5QI8XRcQYP-huj8R7hzW7K086nzuXRR8,6003
|
|
858
|
+
angr/procedures/definitions/win32_msports.py,sha256=Wp2Z5mxwHF-4vQR8Mf35EQpWTQSnN03lN5z7a4fJO6I,2836
|
|
859
|
+
angr/procedures/definitions/win32_msrating.py,sha256=aTl-75e6RaeMdpoFif7tU52cuwn3hAOgNS4I0amqScw,7463
|
|
860
|
+
angr/procedures/definitions/win32_mssign32.py,sha256=D-wVe_9l3RfaHP2qLco4hgdsmRcQdxV4Kecu3mIeUm8,7586
|
|
861
|
+
angr/procedures/definitions/win32_mstask.py,sha256=enI8zHw51vt5VnbRlb6t8SkzGOeUaP-m1ulBCDzNGTA,1444
|
|
862
|
+
angr/procedures/definitions/win32_msvfw32.py,sha256=96B8NcKhWhXS59--gPdhMsb5UShEnHJrlEm4Vp4o2pM,16741
|
|
863
|
+
angr/procedures/definitions/win32_mswsock.py,sha256=DBdUe7AmOk_G5njNAqHqrc6p-Mav8IANUB4ItimbSz4,9182
|
|
864
|
+
angr/procedures/definitions/win32_mtxdm.py,sha256=a8hKpLo8tBMCj9JlnHoI1FQwLeHu1dYSftZQ0AQ4Fbo,965
|
|
865
|
+
angr/procedures/definitions/win32_ncrypt.py,sha256=9IJihpDmEW0Wt2X_LAuUfv_1iO_4ppGmcz2IvUkeKIU,19685
|
|
866
|
+
angr/procedures/definitions/win32_ndfapi.py,sha256=euNZbj4cNvRYQbHHWdBqIB1u73WlG1EGTjsjU_g5n6M,6192
|
|
867
|
+
angr/procedures/definitions/win32_netapi32.py,sha256=jFhLhY-X9e64Io30IRQzBIxpRhY9kovxMkd3MSJ4_ak,86049
|
|
868
|
+
angr/procedures/definitions/win32_netsh.py,sha256=PpQm_FgKz4tDbhbwb3BJ5SlYYnFuSjE4JHWBeIgYS14,3428
|
|
869
|
+
angr/procedures/definitions/win32_netshell.py,sha256=bM4eSY8pUy9TjcOXEfhcdYm9sgrAycBo48K8f3Pf5qA,1143
|
|
870
|
+
angr/procedures/definitions/win32_newdev.py,sha256=mjVtc5wCYu5swZPrbFcSxw0WGBLTpkVWqexIYeGwhXc,6093
|
|
871
|
+
angr/procedures/definitions/win32_ninput.py,sha256=fQhZ1EIBch6i5DaYIszR8w2njGSJwhJ72vqunnei6Ts,11160
|
|
872
|
+
angr/procedures/definitions/win32_normaliz.py,sha256=RuXWnIyuXJqVbrOLEI_d1Xr4iO7FrEaW0zG9kP8Q3w0,1676
|
|
873
|
+
angr/procedures/definitions/win32_ntdll.py,sha256=6ySi6r8KPrQ0qnnmsB0u8utYoDMiCvIZrfSpvk2ZnuU,27734
|
|
874
|
+
angr/procedures/definitions/win32_ntdllk.py,sha256=hI4GFrrMuJOLhmfzKppf5zOvlIpsqQGsvarbetRSQ6Q,1079
|
|
875
|
+
angr/procedures/definitions/win32_ntdsapi.py,sha256=8pj3CMG8Cgg5u3CNkJu4AoOo_Rq1xhz3EuOo1G7iVvI,35631
|
|
876
|
+
angr/procedures/definitions/win32_ntlanman.py,sha256=U0KJjMRP575WfXGyr3gXGkn6NNLn1X3fpFGFeAOx0dE,4399
|
|
877
|
+
angr/procedures/definitions/win32_odbc32.py,sha256=YwYAsHrHaJ1XBRVdvyPgPcV4NGMJBkOCGfY-IXfcvuw,94752
|
|
878
|
+
angr/procedures/definitions/win32_odbcbcp.py,sha256=zwUASCLKsp7DHwe9oX10Iap2VOfBQ6CUq3_8JMZ69so,8501
|
|
879
|
+
angr/procedures/definitions/win32_ole32.py,sha256=KZWlkNIsv4A2ubJhOYzjwFMNltV5S7sExb7-7jnhV9U,103804
|
|
880
|
+
angr/procedures/definitions/win32_oleacc.py,sha256=4lvDkR7NnFOUF2-NKVqUid5rtxgEqjXwqHfcACnqwAY,6999
|
|
881
|
+
angr/procedures/definitions/win32_oleaut32.py,sha256=EvEao1DFd75n45_gPBnePkS65NNN8rx_xhqLqOA5jCo,123402
|
|
882
|
+
angr/procedures/definitions/win32_oledlg.py,sha256=y3mNvGXKigkGkANjHa80jz7m22OUWQ0Sxpj2NPdgRcQ,6803
|
|
883
|
+
angr/procedures/definitions/win32_ondemandconnroutehelper.py,sha256=BYqqo9N9E2yf9WPDKDBIITjxp2WAIfc9SssNXOi2JAE,2601
|
|
884
|
+
angr/procedures/definitions/win32_opengl32.py,sha256=83Nhus3XimyZZlm6n8VNO-jxehL8Fot6VMDkNJa7zTc,75459
|
|
885
|
+
angr/procedures/definitions/win32_opmxbox.py,sha256=QnJRyMNlLptD8_glbJB2jItwfHsgC5XcLYnPHgWjRhs,1453
|
|
886
|
+
angr/procedures/definitions/win32_p2p.py,sha256=YVHsqgL40pEd1ix-CS70UR_5Djr_m7wJMaQkyxJfGQM,32515
|
|
887
|
+
angr/procedures/definitions/win32_p2pgraph.py,sha256=PQUoedkAn7kWRVu5tDU4TvJVOiyxeJu4w9U13wXI24Y,12447
|
|
888
|
+
angr/procedures/definitions/win32_pdh.py,sha256=rTLi27Q3u_5EkW1zpYEtXQiHUSNjCxL_fQ_ddRdoRDg,39407
|
|
889
|
+
angr/procedures/definitions/win32_peerdist.py,sha256=-yPyYfKiRQOZzufetfV6wwhq2XeIxSy1q9PPlkzRupE,14285
|
|
890
|
+
angr/procedures/definitions/win32_powrprof.py,sha256=ROuh9LTx-x7B7AK8Pw-dCO9aUl60HuMn8cgjuLu9MEU,32172
|
|
891
|
+
angr/procedures/definitions/win32_prntvpt.py,sha256=V5DWTRPnfwfKP3JfILLEDogOZ8lzcJENpkZYzAil_l0,5238
|
|
892
|
+
angr/procedures/definitions/win32_projectedfslib.py,sha256=TaZT4YfRnpmrPVQNiGbb8eyTXSXJoGNjl1kNle7dy8Q,7990
|
|
893
|
+
angr/procedures/definitions/win32_propsys.py,sha256=oeo8lv-YXVNJzX2lXpyhGVjTfQfaKlTB_IJCH8ERHWE,69938
|
|
894
|
+
angr/procedures/definitions/win32_psapi.py,sha256=fCTzMYa5s6bRsAiQ1E-piRuZd7PJ1CPeLonvO0y9A9w,10752
|
|
895
|
+
angr/procedures/definitions/win32_quartz.py,sha256=Rmrgjjg52Cn9rAkpsYcd9ZjVGnDkUTsSySO3l-PznY4,1354
|
|
896
|
+
angr/procedures/definitions/win32_query.py,sha256=UrUjLfKR_6qbQu_bJHQslWsuoOWSdtkAkzEJM0o62Qw,2043
|
|
897
|
+
angr/procedures/definitions/win32_qwave.py,sha256=q4thSA38tUbrztJXPSOFIxGdSvmKE1-KuGz2R26M4qk,5245
|
|
898
|
+
angr/procedures/definitions/win32_rasapi32.py,sha256=QMy5KhHICtfGb9lLGCcjvIUYROHs2ZCaaU-g2QRhzeo,30981
|
|
899
|
+
angr/procedures/definitions/win32_rasdlg.py,sha256=ZZiyTwzgISq7T-rCvuOShA8qDxDSVYlRtDUI1Q_KyGg,2812
|
|
900
|
+
angr/procedures/definitions/win32_resutils.py,sha256=P0yJDA4W9sCTfo9FN8HTXWPPAjrCY3wuUuLUrHsbqS8,54558
|
|
901
|
+
angr/procedures/definitions/win32_rometadata.py,sha256=MapRhes-P98s8W5gJ6W97158IRG-_cdUpRpW0XhfZLY,1032
|
|
902
|
+
angr/procedures/definitions/win32_rpcns4.py,sha256=41hMirgwR1QttEQPInN44L6kC6BetwT1TG5Ns2W70EU,22439
|
|
903
|
+
angr/procedures/definitions/win32_rpcproxy.py,sha256=8quOIumTrYSlOptpxcp0VwkexsdSKJp57vqAHgpSkTU,1675
|
|
904
|
+
angr/procedures/definitions/win32_rpcrt4.py,sha256=rraBdfvzEEuAmqh2CvYqrJ1qL0xbquOm_dWW0f3W2mo,148351
|
|
905
|
+
angr/procedures/definitions/win32_rstrtmgr.py,sha256=IHNk9w63yAcGe04DQvptv3ZwY_lf5TxKdD_ZXBQXE9I,4980
|
|
906
|
+
angr/procedures/definitions/win32_rtm.py,sha256=uq3r3zJAQbCsKeRhlqRiIkd5F8CuUtDK1StZ1f3NAIY,36035
|
|
907
|
+
angr/procedures/definitions/win32_rtutils.py,sha256=hPD0wRJGTyDEiaDh1XJtR3nXIypQtdwmyBF0kyy3Uq0,15128
|
|
908
|
+
angr/procedures/definitions/win32_rtworkq.py,sha256=uDjiVYaEA1Rpt29RA_abbo-U8G4Nnqi8_i0TbEFEx38,9070
|
|
909
|
+
angr/procedures/definitions/win32_sas.py,sha256=8JsHcUJV7OSrBK_1FLrXi1IR8xOl4fHgmE5NgS685DI,912
|
|
910
|
+
angr/procedures/definitions/win32_scarddlg.py,sha256=V0NyszmM0Jdvwe63RTtORBMMUudDb2IKWd58Yf92_R4,1638
|
|
911
|
+
angr/procedures/definitions/win32_schannel.py,sha256=g_9AAdU1Ifsz0GVWaK8HLMksejnsfHq7FmDjiwGedfU,3580
|
|
912
|
+
angr/procedures/definitions/win32_sechost.py,sha256=YKb2rEzX7kJbolnjYr1C1VKv24vsbgJJ-hU1nfw89jA,1704
|
|
913
|
+
angr/procedures/definitions/win32_secur32.py,sha256=twAQZs-JxsnX4C3OrTX6hyUEOeRNbej4Otr1jwls9jE,37542
|
|
914
|
+
angr/procedures/definitions/win32_sensapi.py,sha256=MN09sE4a9nPC0Fh6Ld8m6vsSAJM8Skm2xLYsCzmAaOs,1487
|
|
915
|
+
angr/procedures/definitions/win32_sensorsutilsv2.py,sha256=KDyTzmK3mB5TC2Bzh7qef5ileIl4Gk7zyfyDtpnXJiA,13276
|
|
916
|
+
angr/procedures/definitions/win32_setupapi.py,sha256=Ml0eCe8t7uumnTKw3BOD8M9IOmJP7agWSR0_Mtr2z5w,157757
|
|
917
|
+
angr/procedures/definitions/win32_sfc.py,sha256=o5k6l6JGW0pY9BskjCV-DnY72QZXEmi6s0Yh7UQGbYg,2538
|
|
918
|
+
angr/procedures/definitions/win32_shdocvw.py,sha256=aWn5s7H1hX4oIZFUAipTvNQFNClRBowGjrCeDO1x3Yg,1924
|
|
919
|
+
angr/procedures/definitions/win32_shell32.py,sha256=yH4Ye7trdBRbMIeYKWLELQYenzq8RnaeLmRW_-q-K4Q,81133
|
|
920
|
+
angr/procedures/definitions/win32_shlwapi.py,sha256=R9x8CdMJP47IwMutBl2w-tSxHo-89zFjlz_uVqc7q9w,108101
|
|
921
|
+
angr/procedures/definitions/win32_slc.py,sha256=emMkFTBJ3Z6TR6YiLpXMwNFOdK0gldfq8Vy4GQ1EVAw,14342
|
|
922
|
+
angr/procedures/definitions/win32_slcext.py,sha256=EoKNonONVLV8SWnnexhnbBV1TF55BjleQfpliapz2X0,2842
|
|
923
|
+
angr/procedures/definitions/win32_slwga.py,sha256=XtxFrlEhr0uGz7e8lTMPKB5k-1sSxoj8HqvxS28bkdQ,1135
|
|
924
|
+
angr/procedures/definitions/win32_snmpapi.py,sha256=R08Z8carrCEJaZSd10C379-hkSM-U_SWEM3wv63AuSs,6435
|
|
925
|
+
angr/procedures/definitions/win32_spoolss.py,sha256=431Ou1rPIZFpDu8Awc12b6wcG0XJim4TXYwWwKO9S5M,9677
|
|
926
|
+
angr/procedures/definitions/win32_srclient.py,sha256=QAkBP643Y-Guek-ThDyYcSMbAOuCtJmE1hs3exRzxpw,946
|
|
927
|
+
angr/procedures/definitions/win32_srpapi.py,sha256=ueg9Zgq7XAqqlrvxgzJOq3_m34VeLONXtKoLgVL4xzY,3744
|
|
928
|
+
angr/procedures/definitions/win32_sspicli.py,sha256=6lWIz-v6h9_tCvFlDA-p64FL17t4Vp353SEl95buT_4,3024
|
|
929
|
+
angr/procedures/definitions/win32_sti.py,sha256=2ofYXORuVeg9a_QU_LYKZLNYPshhd5IjKaecBRdHEPQ,1142
|
|
930
|
+
angr/procedures/definitions/win32_t2embed.py,sha256=7_9wAN4VLcTQUF2j6atTULOM0TZXYLjf6fWvlWMQSbw,9589
|
|
931
|
+
angr/procedures/definitions/win32_tapi32.py,sha256=PBzdhBdDaSQH8k_PAXJEqublRhBuBto7WJvyd-FZtfc,94958
|
|
932
|
+
angr/procedures/definitions/win32_tbs.py,sha256=oil6ieTY2hMZS0H2BN1A20Yj6ypBSeRgIBMttm2Gcos,4943
|
|
933
|
+
angr/procedures/definitions/win32_tdh.py,sha256=BBAherwEdmgEQxJzAJhat5YpPoTWrYEESZMnmCa8ObU,11381
|
|
934
|
+
angr/procedures/definitions/win32_tokenbinding.py,sha256=LeCmEllCT8h9MaiG1NeNSq_T0B1q05bjbW2frb9dovk,4736
|
|
935
|
+
angr/procedures/definitions/win32_traffic.py,sha256=3b-2Z5gA-CAoGw0Ylp67-U6mKDgzGae5R3noGXIZL58,8270
|
|
936
|
+
angr/procedures/definitions/win32_txfw32.py,sha256=1LlcFk6KqUdZIyUueLh7M-LyPW3RdnqdTj5AipfTVKg,4319
|
|
937
|
+
angr/procedures/definitions/win32_ualapi.py,sha256=94P5F7e6SSPydrzThUzI5QQlkhVR_8ZiDb6xDwdDS58,1619
|
|
938
|
+
angr/procedures/definitions/win32_uiautomationcore.py,sha256=oiyun1DRPKG1ODwfTpT2vvVyVTyP8GnNImY326p_7Rc,31548
|
|
939
|
+
angr/procedures/definitions/win32_urlmon.py,sha256=4iIVPL2_3MrmwHqQM5sYU7sNfJOzKo_qUvTjbXgmX-Y,27733
|
|
940
|
+
angr/procedures/definitions/win32_user32.py,sha256=5vRPc577O2kfBZ2dheMa7f2eRGEtibnignNf4i3mzz0,252463
|
|
941
|
+
angr/procedures/definitions/win32_userenv.py,sha256=CrW61q_wHyz9MgIk_8eBDdqqMoXoubO2OcFXhRELVxE,15830
|
|
942
|
+
angr/procedures/definitions/win32_usp10.py,sha256=9pHWy39LmwjVFGsZtRwV7yRVu4yrhUfliLmoLHg4P3I,23749
|
|
943
|
+
angr/procedures/definitions/win32_uxtheme.py,sha256=y_FDDd99s6y_2V81PMaipUqOk5U4jJMGlLL7cwQLsjw,31227
|
|
944
|
+
angr/procedures/definitions/win32_verifier.py,sha256=3NbQCD0xCa81E66LILLg38JaITddDMo-L_jrri69Xks,1559
|
|
945
|
+
angr/procedures/definitions/win32_version.py,sha256=bIiZ7JWJ8bE8sbrGlnWLogqp6Xpwbw0ZTerwzFbDuTk,7227
|
|
946
|
+
angr/procedures/definitions/win32_vertdll.py,sha256=xPMmCHxgHpQcbNpbUCgr_99QdWcEJFbySdsXVEHTxp8,3651
|
|
947
|
+
angr/procedures/definitions/win32_virtdisk.py,sha256=e_ls1jVTjqjqsdht_4G2KKZkDIqWkmJ5GmCxLarepq4,13499
|
|
948
|
+
angr/procedures/definitions/win32_vmdevicehost.py,sha256=iVT_x5qvEekiVpDD1Md3YyBaRV7zYYZ6IjSH9_ma8sk,6024
|
|
949
|
+
angr/procedures/definitions/win32_vmsavedstatedumpprovider.py,sha256=6wnUYLhpy8KxzoPlUGM8IWQdHfdUyY1_vQjUqoMGH1g,17629
|
|
950
|
+
angr/procedures/definitions/win32_vssapi.py,sha256=pbygP1KlSIVUfKHV7yAKMHzCD1ZQAslJcb3y_vsx5_w,979
|
|
951
|
+
angr/procedures/definitions/win32_wcmapi.py,sha256=w0VaSxOrX0ZnJCIqxgEguSJ8bQfE0w00XQ2m8VbRc2U,2690
|
|
952
|
+
angr/procedures/definitions/win32_wdsbp.py,sha256=n6tVCIUjyiMfNh5aOoAJWuoPQRZ39LBuO13dSxGuTBI,3331
|
|
953
|
+
angr/procedures/definitions/win32_wdsclientapi.py,sha256=hP4uxHey0fRs2oVXepkfe5b4fRpd91ispaNfBPjKDOk,13936
|
|
954
|
+
angr/procedures/definitions/win32_wdsmc.py,sha256=xIUBja-r8KH5nt3aatq0QTQHnj0D7Dp8kPp8LAb87q4,2838
|
|
955
|
+
angr/procedures/definitions/win32_wdspxe.py,sha256=AQWUX5P7QkBWO3zGk6g0nQ7PkCia86avBYNMQP8RAk0,13240
|
|
956
|
+
angr/procedures/definitions/win32_wdstptc.py,sha256=zi4sfWh2wmIzvw3FBfKa_msfLer5YZdFom7zsIpQGdA,4141
|
|
957
|
+
angr/procedures/definitions/win32_webauthn.py,sha256=ywYgiExUh1Aj-nGFb4cX730aVYb5_bR77M6tI5FjOHs,4700
|
|
958
|
+
angr/procedures/definitions/win32_webservices.py,sha256=cfEaxcfVRYHavA1gZbBDXcpGzFnQTxK5zYSLprHbHxQ,106072
|
|
959
|
+
angr/procedures/definitions/win32_websocket.py,sha256=7FBPfc8m1LGq3nJkkolmma9NxKHnYKmiSTbZZ7t9mcc,7425
|
|
960
|
+
angr/procedures/definitions/win32_wecapi.py,sha256=MoQGekzUTCXme49sstJA9f4xLvyIjf7BjuKIykh1mME,6411
|
|
961
|
+
angr/procedures/definitions/win32_wer.py,sha256=TcnxeBpiprjlFss7WEjdzzF6WhaHN5sRu3s174ozaok,7700
|
|
962
|
+
angr/procedures/definitions/win32_wevtapi.py,sha256=qk8vLlSDYvExrVK1TOHtL7uSpjmw-R_QuAz9TCgs_WM,16147
|
|
963
|
+
angr/procedures/definitions/win32_winbio.py,sha256=OjN7C9HgzvbyYgqyss97RHVwH7rROAGyJn-jqnUKG2o,21471
|
|
964
|
+
angr/procedures/definitions/win32_windows_ai_machinelearning.py,sha256=oeXDmFNHk0lOBk6Nb9fnAM_mELH-jHeXGCGKdNNkAwk,995
|
|
965
|
+
angr/procedures/definitions/win32_windows_data_pdf.py,sha256=4J0O9Utz1DwGhIVqX830UVgxkugaXdOC636gyd1glM4,949
|
|
966
|
+
angr/procedures/definitions/win32_windows_media_mediacontrol.py,sha256=KYLlPZhJK8dqTbp2kqXsTcbljq2jm0muhBCcMoaarNs,3252
|
|
967
|
+
angr/procedures/definitions/win32_windows_networking.py,sha256=12OOlKShahgmLEwKUht_cJqBiB4CmrmXFL5DiUEbR2Q,957
|
|
968
|
+
angr/procedures/definitions/win32_windows_ui_xaml.py,sha256=y_qF5r2LORpLPMaN6vHnDZ_fnLrJxYUJst1caFem-AE,1714
|
|
969
|
+
angr/procedures/definitions/win32_windowscodecs.py,sha256=Erfy7kf5-s23stwXDSoJfYGvFTr0ZkhUbH0kYgks6g0,4480
|
|
970
|
+
angr/procedures/definitions/win32_winfax.py,sha256=LDxx_GOx2JKQu3ExxbKO1vsZdWzxqMr8m-a55qt9hWA,22670
|
|
971
|
+
angr/procedures/definitions/win32_winhttp.py,sha256=ZGCKmVOzGZFU7XlNufLpqXihg--aM3rZTGZZH21IGQY,22800
|
|
972
|
+
angr/procedures/definitions/win32_winhvemulation.py,sha256=tNbplpwo9iIhGQkV9d0mUi1D6r7lgt4_YU1d3t_Hszg,2744
|
|
973
|
+
angr/procedures/definitions/win32_winhvplatform.py,sha256=JHFL8GJ2JyXHX5CgbRogNKsjs9Z2x_O-3mP7wyC7tjI,40934
|
|
974
|
+
angr/procedures/definitions/win32_wininet.py,sha256=LmXNl3Z-zeOn0jYGInGMRpPg_q3hO2IOog6oqEirJzg,116009
|
|
975
|
+
angr/procedures/definitions/win32_winml.py,sha256=ta6ZoeHoDKwUI8cko-j3qXGEbYOPZURDw5UcH_JEglk,961
|
|
976
|
+
angr/procedures/definitions/win32_winmm.py,sha256=u73oYmBoYfwG08_5IdoqdLlb-D06pBdWB0zslBuGN-A,55053
|
|
977
|
+
angr/procedures/definitions/win32_winscard.py,sha256=cvGWWiqFd66wqX_ZdNEF5F9nkxyj4Jxw1M5RjJlUsr4,29213
|
|
978
|
+
angr/procedures/definitions/win32_winspool.py,sha256=9Stgr5jJZFFMtY4O6I56qw_ioU2VBGXzP4VP7N4oHYk,114676
|
|
979
|
+
angr/procedures/definitions/win32_winspool_drv.py,sha256=vX2rem6BU4xp7-x9ie6oHGt9kRwPIHqncQDtD4WE0vw,70034
|
|
980
|
+
angr/procedures/definitions/win32_wintrust.py,sha256=0MSHLEzbAtFPukQnxs0gelJVpqVvf2bAAZMSuCIfi74,22334
|
|
981
|
+
angr/procedures/definitions/win32_winusb.py,sha256=sAmGDrsgJ5jPle3kHuY8M-oeLJlSLFU6wB1eXLBNr0w,14531
|
|
982
|
+
angr/procedures/definitions/win32_wlanapi.py,sha256=LBW7i2sXK1hmjJndpUkVKwOchMO9uIhDZUqKdzOYM2g,30087
|
|
983
|
+
angr/procedures/definitions/win32_wlanui.py,sha256=oYiHndv9JrPLzUMPv1fHAZxKlMO69wgQhxLQzA5ODeo,1404
|
|
984
|
+
angr/procedures/definitions/win32_wldap32.py,sha256=h0mV6c8IXVx9GyAHlzlQpJopc73alfe4jBwhgOeRPLY,97423
|
|
985
|
+
angr/procedures/definitions/win32_wldp.py,sha256=5hYR3Ohh1sGPY6w3xiOXcYgs4Pp5mteIzZG3pGH6GL8,4194
|
|
986
|
+
angr/procedures/definitions/win32_wmvcore.py,sha256=9VDgbx9ki2t3vMWNpHw51dB7jbmySTIFutlTYXegjJM,3231
|
|
987
|
+
angr/procedures/definitions/win32_wnvapi.py,sha256=HJ31H9V7Tvl1RaXQt4Lj7-gYc5rmgyTlsfMZCCFDd6E,1377
|
|
988
|
+
angr/procedures/definitions/win32_wofutil.py,sha256=111yIBa5BLFMgXga6gBVFbgijQ5a0DRjd9Qj1nlWiAc,5263
|
|
989
|
+
angr/procedures/definitions/win32_ws2_32.py,sha256=_9KHCQ80VJTjrxbU-eY9MehtVj6kgQBln53CZu15DgA,65601
|
|
990
|
+
angr/procedures/definitions/win32_wscapi.py,sha256=Z2rcJuIMyvq308bV3JdmRWAmabxvI0giJViay3dDIkg,2267
|
|
991
|
+
angr/procedures/definitions/win32_wsclient.py,sha256=_PkYQWzNCxG5lz7Vl7WngKHJARSxtihK18O8x25TLEM,1463
|
|
992
|
+
angr/procedures/definitions/win32_wsdapi.py,sha256=R393P3fL-BHYq3B1C0fpYCnj7g6Kq7ZcNylqpiljPv4,11192
|
|
993
|
+
angr/procedures/definitions/win32_wsmsvc.py,sha256=oL0r_E2WdqgDf1e0mShfB9X7sXPFIUEgB-hjfvCuOz8,16321
|
|
994
|
+
angr/procedures/definitions/win32_wsnmp32.py,sha256=K1cEWMeFLv81hSk-BzyH9G2qB1JeaO0d2ocD9DzbE0g,17707
|
|
995
|
+
angr/procedures/definitions/win32_wtsapi32.py,sha256=VvNM4RFoBtkKeFGkcyyy74CdBy0cllSPu-KuR_67Z4E,25856
|
|
996
|
+
angr/procedures/definitions/win32_xaudio2_8.py,sha256=trHs60ORzwVn4w-qnoTtsilIIItnS6fifkP1NptONeI,1868
|
|
997
|
+
angr/procedures/definitions/win32_xinput1_4.py,sha256=SC3KL-Frk6ir_c16tubZbbQaUWVNNRB0wTEcxElE8Ck,2908
|
|
998
|
+
angr/procedures/definitions/win32_xinputuap.py,sha256=Ik9wzDDpVpujR3UZlv8Ts6_SmcGwxvSaaWhdBgpvM94,4594
|
|
999
|
+
angr/procedures/definitions/win32_xmllite.py,sha256=kJHhVcLj2KBTXYQmqJHcjVYf_N4n3S7mH73MJ1eCfJI,3093
|
|
1000
|
+
angr/procedures/definitions/win32_xolehlp.py,sha256=Wce0nVWNPtSnAJQe5haaebB4cDUqKWDkuWKCS4DtrUY,3086
|
|
1001
|
+
angr/procedures/definitions/win32_xpsprint.py,sha256=T7dqikrmttMtjH5xYcR_CXy6w-U13JO1PP15u0ScfB8,2379
|
|
1002
|
+
angr/procedures/glibc/__ctype_b_loc.py,sha256=_TrQI77tcrItX2F56os-4PvWHiPfCQCGeFn3XC1aSW8,770
|
|
1003
|
+
angr/procedures/glibc/__ctype_tolower_loc.py,sha256=OrdiNrTKy_4DbWjxTWh_tfkg6dHOMLriT7k2FAe-goE,795
|
|
1004
|
+
angr/procedures/glibc/__ctype_toupper_loc.py,sha256=f_7QVgjBwqX0C-J1FLPSVwTcYJy8lnRUrdMAkr984rw,795
|
|
1005
|
+
angr/procedures/glibc/__errno_location.py,sha256=2vsI8nPVYcvxGTg4UZ_cEGJT-Xh3Gk_nbV1PSObr-nE,192
|
|
1006
|
+
angr/procedures/glibc/__init__.py,sha256=NjNtLNzO6f70tY9_LCv4-QRIC4g7o9y5CELaX1VUMyU,110
|
|
1007
|
+
angr/procedures/glibc/__libc_init.py,sha256=xYokoQsAc-eJQPW4sp6EQR9X22mzF3-47-TUb-vGhQQ,1555
|
|
1008
|
+
angr/procedures/glibc/__libc_start_main.py,sha256=as8GrAth_w3Ol-fht9SjE-x6I8H17ndH9kfXmq40OWQ,11338
|
|
1009
|
+
angr/procedures/glibc/dynamic_loading.py,sha256=uainl-wSeREeGbKGXjOlpwTxrQgjFfcJkZ0lnzOWR_s,695
|
|
1010
|
+
angr/procedures/glibc/scanf.py,sha256=Y4wXanaRKmkrkGygwZZj23MwcTzz_HODo2CxzO8ab0M,209
|
|
1011
|
+
angr/procedures/glibc/sscanf.py,sha256=FBVbBuvTS-tFFPEGChaEKBFGho9OOAN5VKAFbk2X0nk,124
|
|
1012
|
+
angr/procedures/gnulib/__init__.py,sha256=LfIHuKNyX42xAML-Y-sjy2gNzf2FoBB8Wf8CJHmZdOM,115
|
|
1013
|
+
angr/procedures/gnulib/xalloc_die.py,sha256=j_uDbnhlfnBjhtlSmdOIPLJBCA0fS21TMTaRfTtZpo0,216
|
|
1014
|
+
angr/procedures/gnulib/xstrtol_fatal.py,sha256=Bxu2onAIqzHjHdxrTqjr_CbHpXsGkw299jx6GN0QZ2w,274
|
|
1015
|
+
angr/procedures/java/__init__.py,sha256=JW4cG1Bn7LBUIfU5tIYM4eSmlBM0n8MKF2f0so6_mhs,1226
|
|
1016
|
+
angr/procedures/java/unconstrained.py,sha256=RK0sqaWfqv3pMK55LBHvdudVGfBEijb59yG709pkUZg,3418
|
|
1017
|
+
angr/procedures/java_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1018
|
+
angr/procedures/java_io/read.py,sha256=PWQjyUErAHcoL5JYG4IhSqeRc5s30IeHM2mpsWdBqgI,384
|
|
1019
|
+
angr/procedures/java_io/write.py,sha256=zYTD5OYySQEfj4Z8t54AEoM1gUR5AXdeCa6AmNabwXk,662
|
|
1020
|
+
angr/procedures/java_jni/__init__.py,sha256=TMj0UE56J0Ne31oEt65Uw-EN_3N1xeIi2qWdTVECs_A,21820
|
|
1021
|
+
angr/procedures/java_jni/array_operations.py,sha256=fmn_zCJo4dhFVl8xebRJ6M-3a86jdQbiCAbdZxYWzkk,10404
|
|
1022
|
+
angr/procedures/java_jni/class_and_interface_operations.py,sha256=nCTU3E0D6G3PX5NEoxNWWmsT1_mMFJFhHj9RWwCgTEc,1069
|
|
1023
|
+
angr/procedures/java_jni/field_access.py,sha256=TDZAFrOpgy50PZZSC7ebB5LMAKK9ddtBNC-nYiQDfQU,4760
|
|
1024
|
+
angr/procedures/java_jni/global_and_local_refs.py,sha256=wVc0mmJrvJmjFX_Cp3H3u1XtQsO6-MxznIs-TT0hI0s,1130
|
|
1025
|
+
angr/procedures/java_jni/method_calls.py,sha256=1zmv43ULXQ8q8kL1QkKK_1sTpiLW0aU3fqhjaP9exMA,9603
|
|
1026
|
+
angr/procedures/java_jni/not_implemented.py,sha256=Oq7pFKDx-g0xHEatUc5G8O9FaVBxtleV3-Z6FGYxfXA,965
|
|
1027
|
+
angr/procedures/java_jni/object_operations.py,sha256=He47FrvLb8Yx7Wed9t1H9k2ZEP5RM7-gaUTrw4LjTkA,2726
|
|
1028
|
+
angr/procedures/java_jni/string_operations.py,sha256=TZ8DLlk9EEyl7MltIjCutu1Djp9w118ufZkdVQA-anc,2635
|
|
1029
|
+
angr/procedures/java_jni/version_information.py,sha256=FPrOx1h_OIgHhaWklCWMGaNPQJd1pc8RwJsiifxz5z0,264
|
|
1030
|
+
angr/procedures/java_lang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1031
|
+
angr/procedures/java_lang/character.py,sha256=eGY0WsxdxuxnwuGn-msDzvIV5asCMjqe4oP1BhgVS4A,999
|
|
1032
|
+
angr/procedures/java_lang/double.py,sha256=xGJoDZHtfAyKxw7_QcnBD59TYSZDStymxSX4cCKZPGg,749
|
|
1033
|
+
angr/procedures/java_lang/exit.py,sha256=wr0Pw3EnuX9oCRGFc5DyP3fP4wNzdfVTBWhYnL0KMOQ,304
|
|
1034
|
+
angr/procedures/java_lang/getsimplename.py,sha256=mGTdzVRfBHOkiL0cboWALnLEuwwOZi_9wo6i27YlDfI,537
|
|
1035
|
+
angr/procedures/java_lang/integer.py,sha256=6bqN3x8YGZ6_CQyhYHB-uomr6D-3grMNuNkZkewOTcM,1548
|
|
1036
|
+
angr/procedures/java_lang/load_library.py,sha256=Tk-bKCOS268Ila5zZOZHABVo4eqq6f6DpoN5QstxW70,290
|
|
1037
|
+
angr/procedures/java_lang/math.py,sha256=WwAygSTN7YpGQwa8qqGjvcc4nQOxTa-e51zetx6qQjg,395
|
|
1038
|
+
angr/procedures/java_lang/string.py,sha256=P-qZDDljr4ntpQ4ZkS_UN3fihcIkEKymL-9JcxLHNXI,3169
|
|
1039
|
+
angr/procedures/java_lang/stringbuilder.py,sha256=ylKE1_J4v-Mo4lMRaqG5A6P_mUBzGigfIzjL871C9Wg,1630
|
|
1040
|
+
angr/procedures/java_lang/system.py,sha256=3xxRTq1odwlDSMDEC0Q88q5McvU82zxzf8atTUGpgtU,462
|
|
1041
|
+
angr/procedures/java_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1042
|
+
angr/procedures/java_util/collection.py,sha256=f0PHJ_gidA_7Ai0kL8slNYn43RBZu7G1yz0VzdHNxDc,1280
|
|
1043
|
+
angr/procedures/java_util/iterator.py,sha256=wuuTb_3RTFtngg1Z94H5VVt3f4eydio5O2n6KkQwo0s,1656
|
|
1044
|
+
angr/procedures/java_util/list.py,sha256=MvJTbb-rt4yxGx1q-KGdludNasQrvcgm-dJXH83DB0E,3780
|
|
1045
|
+
angr/procedures/java_util/map.py,sha256=qW0PDY0fV4s2NbYPLingBh8T0CBUgJUd7fVdxhPdzf0,4891
|
|
1046
|
+
angr/procedures/java_util/random.py,sha256=Z6nllNeL8Bi6Kn75Ibll2VbIsbL4Nip60HElTrGYlL4,428
|
|
1047
|
+
angr/procedures/java_util/scanner_nextline.py,sha256=2iQSwthgWr4rP1X7knsAEY0lJaC6foWoH2G4xUjsklU,843
|
|
1048
|
+
angr/procedures/libc/__init__.py,sha256=adwOD6zMckO8qKPIUAeJH8hyj3eufWtJrGTG4_PLl0o,95
|
|
1049
|
+
angr/procedures/libc/abort.py,sha256=kyleIqhN8yDckJzoshGOurupt4dTkfX942sk4sck1O4,140
|
|
1050
|
+
angr/procedures/libc/access.py,sha256=GG3asj6wrd62lplJ3CtY6S0bNMJ8CnF57BgBnGZDURA,316
|
|
1051
|
+
angr/procedures/libc/atoi.py,sha256=HUk9831jWyKLuORCWL4WuXs4i_PNq07Gs9-JxoT60cY,382
|
|
1052
|
+
angr/procedures/libc/atol.py,sha256=4qIV4quCXWLDrUCsa8IU6tYi9bW09_ZKXxCiNotaHBY,331
|
|
1053
|
+
angr/procedures/libc/calloc.py,sha256=pIAaLjbLN9BcUmDz-zFv0o26QIrvdQ9qHEbJSR2vCPg,220
|
|
1054
|
+
angr/procedures/libc/closelog.py,sha256=slmNW8G8L1tv938KxN7JW2fPoEwpbbb-pOjXaiyMINo,218
|
|
1055
|
+
angr/procedures/libc/err.py,sha256=2xZ3pwTO5IuF6DnNxQkVlZRutIMrcz1JpMTxdPvyr3M,465
|
|
1056
|
+
angr/procedures/libc/error.py,sha256=vkpVzlTq_fn-m4r_rRJBskITXSl0pVEws9vUYCyhRpY,2275
|
|
1057
|
+
angr/procedures/libc/exit.py,sha256=v-OH6QtanXO7qfvSxXS0QSs89KXHM6kNyUOKJ22bylQ,233
|
|
1058
|
+
angr/procedures/libc/fclose.py,sha256=lc7oU_6PR-YTUlJDUP71qXOoWlWgqlld20DgEPN4tDA,600
|
|
1059
|
+
angr/procedures/libc/feof.py,sha256=4Kx69CdFcOxkcrS28F5hfhipAVLv1LLeK-dVAkk16yk,602
|
|
1060
|
+
angr/procedures/libc/fflush.py,sha256=LODdM1zQmdwVwzUyorgz-Taru6jFCQFpi0YZvr8HB7M,258
|
|
1061
|
+
angr/procedures/libc/fgetc.py,sha256=USMoMi2uo7taXhuWtbnKrZ6bKFYAIP28zcmADyJqamE,656
|
|
1062
|
+
angr/procedures/libc/fgets.py,sha256=ChYB3tSah9Eg-Cil569dIU_5OktJdSUDVrdh0zufbTs,2746
|
|
1063
|
+
angr/procedures/libc/fopen.py,sha256=mQ1v1Ao0YQy8-g6tplDm7QITTFpBOzxRccMZEJfewWg,2508
|
|
1064
|
+
angr/procedures/libc/fprintf.py,sha256=595hVR2mvmi8E2xQ16ibDibFiPpRP_yHOCOqCjdwPbo,765
|
|
1065
|
+
angr/procedures/libc/fputc.py,sha256=TVRjiT7xsD00svLIPEXdN7yEL6fScd2pUirrBOtGPJg,572
|
|
1066
|
+
angr/procedures/libc/fputs.py,sha256=rybpIpoeX8qPVUoE7w5cfqSasW_weXi9GALBan4GErU,697
|
|
1067
|
+
angr/procedures/libc/fread.py,sha256=Ikzg96-hEv-mCzIp3bXUeiVa-z4dO26Wal54ljT7je4,644
|
|
1068
|
+
angr/procedures/libc/free.py,sha256=fqD5jdmmjetwtNxjpYxAnsZk6Qxa3ho65o672gJPGf4,194
|
|
1069
|
+
angr/procedures/libc/fscanf.py,sha256=f5-ciLPnBy05GOIXlaOUPEXJjdNo3ClQvQx0KwPhPl8,662
|
|
1070
|
+
angr/procedures/libc/fseek.py,sha256=xekYOEVVFDqAaIB8M2GOutnbJnaScMTvnUTX_s-JCYc,1143
|
|
1071
|
+
angr/procedures/libc/ftell.py,sha256=rX74Zx2KADt6reuP6Col0LxgiZ8hAd56bDcjrDtoVn8,550
|
|
1072
|
+
angr/procedures/libc/fwrite.py,sha256=JEqppU5poBDMNVJbnORTB2qVSc28mL69WrVvxnatInk,543
|
|
1073
|
+
angr/procedures/libc/getchar.py,sha256=tYJVhmNEuivvoOfgPj3brAq3PgTBtbzg0tTjGv7MwOs,330
|
|
1074
|
+
angr/procedures/libc/getdelim.py,sha256=W2S_jLznxPkmeSFCai2_AD93kEFJnjerlFgzzQZiZSc,3973
|
|
1075
|
+
angr/procedures/libc/getegid.py,sha256=ok68QvVM2wCSA6vQgg09vdQAVe_OSMBBfnF382Yri_Q,161
|
|
1076
|
+
angr/procedures/libc/geteuid.py,sha256=EiqirO8NAKVQRe5hgBblD9LMYbRWrBrI3hmVkbpfYdE,161
|
|
1077
|
+
angr/procedures/libc/getgid.py,sha256=0J3VGigEbWgbJdET2NyDMhtxwPJcTH8KiHYCiUMfO4U,160
|
|
1078
|
+
angr/procedures/libc/gets.py,sha256=muqVJdsr8Rd0R9NGKFyrEtRJZUQEb9g-Yfwy3f_l2bU,2581
|
|
1079
|
+
angr/procedures/libc/getuid.py,sha256=YrTGtVrcuidAOmwFO_-qLoV64xUA1U3zv0UORHgQsyo,160
|
|
1080
|
+
angr/procedures/libc/malloc.py,sha256=_aN6J5G0UxghKegICD3cMZR6609D_p9DgihKyQvIkl0,256
|
|
1081
|
+
angr/procedures/libc/memcmp.py,sha256=IBEfs-VyuLbyq2SGXfKJPrjo9Opo9NKFi7yqCFrIG-0,3027
|
|
1082
|
+
angr/procedures/libc/memcpy.py,sha256=Ct6RMp_h9GMKdDjZEvUyjVCXSdrKLrc-KTAETZqUFss,1497
|
|
1083
|
+
angr/procedures/libc/memset.py,sha256=OtTJdDoj3zXv5HPQRZu_9UgMPZPIL46brXpHa3ZBV9I,2396
|
|
1084
|
+
angr/procedures/libc/openlog.py,sha256=gVX_di-vXroR8-L5_e6xYSOXTAF4N2Q_cqFMd8VkJ6Q,241
|
|
1085
|
+
angr/procedures/libc/perror.py,sha256=uhI1D7kmXU2dFBh5PIj8TvjwNToth7RKlSZzOyVgbTg,368
|
|
1086
|
+
angr/procedures/libc/printf.py,sha256=QKFTiASEk1E3HfZaxB3seeyed4wNMuJWN56SeBG3SDs,881
|
|
1087
|
+
angr/procedures/libc/putchar.py,sha256=YC5cJrNjH5I8eft804AMA4GMdjVYmySqarWUYFPZdt0,310
|
|
1088
|
+
angr/procedures/libc/puts.py,sha256=RoYTm0mCR9gzT983B7YcODwHPTnqj_BPGR9d3iGln-A,490
|
|
1089
|
+
angr/procedures/libc/rand.py,sha256=_9FdhE3YnaYDY0KDaeV3zntMsJ6sm0kBEm0vy2M3N5U,231
|
|
1090
|
+
angr/procedures/libc/realloc.py,sha256=a5SifphpH8BuXZ4mX2ebrIoBv75SOg2VlH03bAKRw80,202
|
|
1091
|
+
angr/procedures/libc/rewind.py,sha256=cIu-WjVhHdQBWYpp-tfRz-wB8TRj7ZZyNuVzTGX8mAs,267
|
|
1092
|
+
angr/procedures/libc/scanf.py,sha256=fYYECyq-K_JLyqyzpqNXJ7QRqPMw6BJEZ5bxWDI4sck,526
|
|
1093
|
+
angr/procedures/libc/setbuf.py,sha256=PsnNkUNYD76684CUTVFIKtrlGw9xmAddewIS4-HnZj0,185
|
|
1094
|
+
angr/procedures/libc/setvbuf.py,sha256=9ZPStLhL-GIpXSnP4K-Ttf0CdxpHLjZySbZ6L1qOrGA,145
|
|
1095
|
+
angr/procedures/libc/snprintf.py,sha256=sQGEQdqMlBNQX-9leNYN68q4nnbFtqK4J29nOFM_on4,1206
|
|
1096
|
+
angr/procedures/libc/sprintf.py,sha256=oMDKFZVoI8ZN8l2trxFcLygyaKnDnS8DH4OMutBpTBk,716
|
|
1097
|
+
angr/procedures/libc/srand.py,sha256=KxTedqBOKSr6rmHwMsdJiUwAVvhd_deSPQ6Bq8BWdsY,125
|
|
1098
|
+
angr/procedures/libc/sscanf.py,sha256=enQZVdpN8oYhCoOSpyvMk_Qx73D-RZyd1f-mANew6CM,366
|
|
1099
|
+
angr/procedures/libc/stpcpy.py,sha256=NrC7eEzAPzARZPtdRvJUsuVtiqQRsv0IJwjNM63XrX0,492
|
|
1100
|
+
angr/procedures/libc/strcat.py,sha256=FUGjCop8qmLSjolvI6JJB6GO3nHqaSsg253atXxddnA,480
|
|
1101
|
+
angr/procedures/libc/strchr.py,sha256=7bi4gb4Rn2mAweWs-xPrtJAlMZ1QgXxMeexaq0yHWCA,1803
|
|
1102
|
+
angr/procedures/libc/strcmp.py,sha256=SOLOs261WC3iZeq0tKgk5fS3md8D_eFcssdKQb0AzUY,859
|
|
1103
|
+
angr/procedures/libc/strcpy.py,sha256=XD8X6sR4ylF7qnk2J9zfku0wHKkGjlLp4M806AKKAgo,419
|
|
1104
|
+
angr/procedures/libc/strlen.py,sha256=beFDcwFddALbs1NASV6tH4-aFdEXyt-H7wmTtlrnUHA,3793
|
|
1105
|
+
angr/procedures/libc/strncat.py,sha256=59NtDDFFJHp7r9YkzD7-v-P9R1upPOIExyjcCO-6OOg,536
|
|
1106
|
+
angr/procedures/libc/strncmp.py,sha256=22juyR5f0C0DmS31xlBqUvguEFgdCNb1ddnuUYCV7C8,7492
|
|
1107
|
+
angr/procedures/libc/strncpy.py,sha256=IHFmycE1xhohCGbULmnhZ7HRLGbLS2Ts8b_c18ZT7Gs,632
|
|
1108
|
+
angr/procedures/libc/strnlen.py,sha256=IolI9OPHGJhVv4Qzc0Aui-11IqpU5pzGE9B2JPUbB14,395
|
|
1109
|
+
angr/procedures/libc/strstr.py,sha256=Qv3ppkvD78wb4_nSw-dV0SrA_5WGIons2lSgrX-MwJo,3747
|
|
1110
|
+
angr/procedures/libc/strtol.py,sha256=oLb-39c1UBtUxt52MbgdHuJF4UffV-HbqObu_VwGK0U,11558
|
|
1111
|
+
angr/procedures/libc/strtoul.py,sha256=h01oH9HMPiDY4OUOxRMZ5SmODIC0zKA8lZFTS0ZS4hY,284
|
|
1112
|
+
angr/procedures/libc/system.py,sha256=xM13e-rS2kJa9isfX2keqQElN0pPbKy0yC-g3oQOzKY,375
|
|
1113
|
+
angr/procedures/libc/time.py,sha256=Vs5kzCClMMtWjHgwFSc6beAaIGaUBzGr9STtR-XQco4,275
|
|
1114
|
+
angr/procedures/libc/tmpnam.py,sha256=sCLdyhjDnYPFx0jpkFv4zp_zL-uK-mp63LUYamO-cxA,547
|
|
1115
|
+
angr/procedures/libc/tolower.py,sha256=DrEkTd7dQai09_ZQkdplstuQT9RDAZg7CkGOWEDvAiI,237
|
|
1116
|
+
angr/procedures/libc/toupper.py,sha256=TS-t__hU-UkM32Z2GFrgary_UL2_T71jhwt1kgL4wSc,238
|
|
1117
|
+
angr/procedures/libc/ungetc.py,sha256=ui0J60DEcSNFvX85REs4umvC-upXh2dkJt_gbYTBvtg,660
|
|
1118
|
+
angr/procedures/libc/vsnprintf.py,sha256=DiClt1UILRPobBK9VxHOjN_MM2fZSYB-Bi0oFfFFrBs,450
|
|
1119
|
+
angr/procedures/libc/wchar.py,sha256=DMUHGXYrWsVkyCXl36hqBMg9De5Z2BXxbJbpz8QorI0,573
|
|
1120
|
+
angr/procedures/libstdcpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1121
|
+
angr/procedures/libstdcpp/_unwind_resume.py,sha256=V9CdNDKXYVLAWSPNKzZSfyz0SVOW-mEBkzic4J_EqxY,216
|
|
1122
|
+
angr/procedures/libstdcpp/std____throw_bad_alloc.py,sha256=Bh_-pYuVi40UXLe-mBTVFsaO57uOcRK18b80hzrVf_A,356
|
|
1123
|
+
angr/procedures/libstdcpp/std____throw_bad_cast.py,sha256=2YjCeCvzNXjUVHZUwCSug2yYYkcv8i-DmiseOdZl40E,355
|
|
1124
|
+
angr/procedures/libstdcpp/std____throw_length_error.py,sha256=apAKhJl7zeCUy3qUVYAj_AXyjn7VZ-C-gKMm8HHSCJQ,414
|
|
1125
|
+
angr/procedures/libstdcpp/std____throw_logic_error.py,sha256=D_seFwmOf4V0mVvhlCkKUmC8d0uZrc8J0WE3J7UjWx8,413
|
|
1126
|
+
angr/procedures/libstdcpp/std__terminate.py,sha256=T2B62c36bXYw2LZTnTVZR6AUAm0iTRCKZpftNq09p4I,303
|
|
1127
|
+
angr/procedures/linux_kernel/__init__.py,sha256=mxKcfdAKNQqpejNlUlOH6HCz9FhZA2vRsZ3VhX7RwCY,111
|
|
1128
|
+
angr/procedures/linux_kernel/access.py,sha256=Ec8h37Lo8dagpW6zTlip654J2MWKib3PfJbHh_6igkk,604
|
|
1129
|
+
angr/procedures/linux_kernel/arch_prctl.py,sha256=vsePQYqLQyeiCLKDas6MQs5NjtFz3eArOIYlFg2RTII,1080
|
|
1130
|
+
angr/procedures/linux_kernel/arm_user_helpers.py,sha256=nXewrJZullW_H_mq_h_Z-y47IotYNiZs9mocFQ6OMSw,1593
|
|
1131
|
+
angr/procedures/linux_kernel/brk.py,sha256=3bJVpm1TJEA8KwcL_d04uHrS9rpwmt5QqvhSrcDdfAY,364
|
|
1132
|
+
angr/procedures/linux_kernel/cwd.py,sha256=fEwsCtVi9bw_BIpgGKTV3A5OcgQxa5P2dWkPAy8q8zo,754
|
|
1133
|
+
angr/procedures/linux_kernel/fstat.py,sha256=_Zbni4rUoV4QwhN7LJ9vcWFCVzJhS5zpOj_mz_HshLk,5080
|
|
1134
|
+
angr/procedures/linux_kernel/fstat64.py,sha256=1LAeatlQfbMZXIeXyKzMaWndotNLEwIMWaK2bsb15Gs,6275
|
|
1135
|
+
angr/procedures/linux_kernel/futex.py,sha256=6dL-pgRq99kQhWdF4MYzbXVuX0OnMufNnoDAYxYHbEs,537
|
|
1136
|
+
angr/procedures/linux_kernel/getegid.py,sha256=8Izk5w1G-9JZ4Xye4wVqdfs65-JAX9OaOE-CTVr4Khg,410
|
|
1137
|
+
angr/procedures/linux_kernel/geteuid.py,sha256=YoBt-8fwKUCEeNgL2RPeKHzp2xoH1N7eJZmsSEKVcWM,410
|
|
1138
|
+
angr/procedures/linux_kernel/getgid.py,sha256=qy8ti9arKQLsfhVX0eUbmxrq5vJ2JGUoIoP47AaVMkM,408
|
|
1139
|
+
angr/procedures/linux_kernel/getpid.py,sha256=xR2X1oEaeyd7jkK4ARpwbjNjn6nUuK92JpdgyyODiJ0,264
|
|
1140
|
+
angr/procedures/linux_kernel/getrlimit.py,sha256=hqJ-31gEprnEwW_oBvkTv-Mh-LH5_M-507sjterG3ZQ,792
|
|
1141
|
+
angr/procedures/linux_kernel/gettid.py,sha256=2LgnFKGael4PwIMD5OVI5lh318cS2za56ymNkF6C0Y4,176
|
|
1142
|
+
angr/procedures/linux_kernel/getuid.py,sha256=r1FA4Tgf1wbV0u8SxEYrFCaGHKVQcPqklufffnkUqxw,408
|
|
1143
|
+
angr/procedures/linux_kernel/iovec.py,sha256=nPdZSZUVE72nYAcI-2s0_0imYSyI3Uvpkltnz68XnZg,1512
|
|
1144
|
+
angr/procedures/linux_kernel/lseek.py,sha256=5BsCQqf5NPzaMHL2E1xBqHQ9IINIObmWDHjZ_vzLH0M,1231
|
|
1145
|
+
angr/procedures/linux_kernel/mmap.py,sha256=c5dDq8gtUosGzvRWJc1oirprQtBFdoyt-hMeFgAB5A8,533
|
|
1146
|
+
angr/procedures/linux_kernel/mprotect.py,sha256=VitInJywG3ddPjzLSj5aBdp0rw7AP-Vf125x4Htc-pg,1479
|
|
1147
|
+
angr/procedures/linux_kernel/munmap.py,sha256=JdU63sih2P1TggH-5jJljojtgr3ffb5Y2_N5Wv7SpUI,221
|
|
1148
|
+
angr/procedures/linux_kernel/openat.py,sha256=taur2Lp2Hrc2bCDyoyXRTT1R14ygSlfKelQHyVfdYoc,1068
|
|
1149
|
+
angr/procedures/linux_kernel/set_tid_address.py,sha256=L2Fo3Fm7t_98uUqdxJfNHQw-7MKLcuXxyiOWQfgsExY,240
|
|
1150
|
+
angr/procedures/linux_kernel/sigaction.py,sha256=DULtiR0qLPxAcvXW6L-HJHsrsAW6sq5qTJSslgB8hTM,649
|
|
1151
|
+
angr/procedures/linux_kernel/sigprocmask.py,sha256=m1aI0375WdvQjqhLSszwltLgBu-vu1x5DbGsk9X6Mfs,769
|
|
1152
|
+
angr/procedures/linux_kernel/stat.py,sha256=5svDukJpbjPi_iylaUCbGYVSohrPFgZi0KiwiYGa8cI,707
|
|
1153
|
+
angr/procedures/linux_kernel/sysinfo.py,sha256=0qqPAgb7UbokZTDm2rg1OOJauqStBt5f_9ayWTt3ac8,2242
|
|
1154
|
+
angr/procedures/linux_kernel/tgkill.py,sha256=OvD9xNz8imc9IbQ4Xh6ojHw9R9p45ljX0NLm_9jZRkU,277
|
|
1155
|
+
angr/procedures/linux_kernel/time.py,sha256=5Y8dchbNt2owwzZ6I1-mcRCaeyGxllHc0qvRZTBSsY0,1046
|
|
1156
|
+
angr/procedures/linux_kernel/uid.py,sha256=u148uA78gR1hCcsIwGdwfQJAjoFvDvJmNJBjnsJlC_0,799
|
|
1157
|
+
angr/procedures/linux_kernel/uname.py,sha256=OhBx4bPrto1qdCvuVfhQCzlX5lYWC8i9VqUCb1-MAWs,1162
|
|
1158
|
+
angr/procedures/linux_kernel/unlink.py,sha256=0eWndqqiqDpkM-C5hHSzvNbw_usOKi0o2RwmNTAVzf0,725
|
|
1159
|
+
angr/procedures/linux_kernel/vsyscall.py,sha256=fB-6aZbQGAQGFwwLzBIT5VKwR4jF3gPMmbhDQthXMNs,529
|
|
1160
|
+
angr/procedures/linux_loader/__init__.py,sha256=2hycjSB-GjXuMj1bfp2KuMlKjqVyNs2jPI0uI5S0XZY,115
|
|
1161
|
+
angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py,sha256=888soY-c3XG6f6EroVbieLa4Blcy_CBsNVIIO633bww,164
|
|
1162
|
+
angr/procedures/linux_loader/_dl_rtld_lock.py,sha256=DZASn_X95fmPnGVLzBPIu4GijiWkpi0NP6urpqt__EU,372
|
|
1163
|
+
angr/procedures/linux_loader/sim_loader.py,sha256=5kQCRLf1QMURe7bFrA8yWEkSQs2CSgZNuAD9Zvv8-CM,1911
|
|
1164
|
+
angr/procedures/linux_loader/tls.py,sha256=rHkJGV2y5wLH4dsO2FNtB2AHEK9d0ggXp0ZrIQs2ksI,1565
|
|
1165
|
+
angr/procedures/msvcr/__getmainargs.py,sha256=qSu9jLhpWs032l_cXEYcoG0pE4ccAyiZ91CrJkpcHfA,726
|
|
1166
|
+
angr/procedures/msvcr/__init__.py,sha256=HZKMuGEl_geCewMyOA6IDVE9P1G2gl4SKskj6ZclG8A,116
|
|
1167
|
+
angr/procedures/msvcr/_initterm.py,sha256=wG0oPytYRLrj-aJL_H0fpf622Ep98QxBbt86zou2q3E,1398
|
|
1168
|
+
angr/procedures/msvcr/fmode.py,sha256=1hU-QXEbpHXDP2UMGDe3gibWEx5ZjwdN001gO330_64,793
|
|
1169
|
+
angr/procedures/ntdll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1170
|
+
angr/procedures/ntdll/exceptions.py,sha256=HY1nEIGaAkyjnk1d4c2S3tlhh65ZrRhe6VF18gUTGM8,2744
|
|
1171
|
+
angr/procedures/posix/__init__.py,sha256=yg0t_r5-yU38GbJmr2QhhNupgoicttNLkuxFfu13_FY,66
|
|
1172
|
+
angr/procedures/posix/accept.py,sha256=e6d9gi3bghM8b2CrLij__Sktn3alzvlRu5yfcFQ-kjo,1265
|
|
1173
|
+
angr/procedures/posix/bind.py,sha256=sADd7VnKRGB7XwpUCyTSKJmfLXwfAbp2brgpsw9gYpA,351
|
|
1174
|
+
angr/procedures/posix/bzero.py,sha256=c1xUOubFJc0WSWLaEYC3PYvksxfeFzZhuVwzFStdauc,229
|
|
1175
|
+
angr/procedures/posix/chroot.py,sha256=xd3A7YQGPNnUkYkveTvoKQGAaQUk7s2W5oK5D5Yz31E,774
|
|
1176
|
+
angr/procedures/posix/close.py,sha256=irfRm-5gUoG8xB1wSqz5bf2lbtWSx74FTcdAUe-Q47M,217
|
|
1177
|
+
angr/procedures/posix/closedir.py,sha256=aH1LGMNwKPh-qOSjARbmoodC4TxqkfOMzmSI9zjWwn4,99
|
|
1178
|
+
angr/procedures/posix/dup.py,sha256=1VX6E2yG6BowSVhmHeRlWGzK97qLClph_UuOZqAXkB0,1931
|
|
1179
|
+
angr/procedures/posix/fcntl.py,sha256=cfouuQjT63ICNNAZOml-NQroLpSayMNYnSi-PZCpfAg,349
|
|
1180
|
+
angr/procedures/posix/fdopen.py,sha256=1_Cso_igE_0814K6ec6bjLmdG4Pp0em0JVQE1FkEnMU,2753
|
|
1181
|
+
angr/procedures/posix/fileno.py,sha256=_5hXeGZtPksB1mEQHpx8zNxxxhDb6YolwUm2EelNDpM,449
|
|
1182
|
+
angr/procedures/posix/fork.py,sha256=j49y7IVmMvYlex2HRwv21z4nY_m_O_sr-zkOzFM_HNg,303
|
|
1183
|
+
angr/procedures/posix/getenv.py,sha256=CSRfL1rhFZ9wx2SwqfTCZ_s0oeLHKy_L_Z-E5hc9KFg,1418
|
|
1184
|
+
angr/procedures/posix/gethostbyname.py,sha256=Y_6L3sF8Hxds9KHD30M47RO-Sqi3XaCI8dMUgGoBPho,1608
|
|
1185
|
+
angr/procedures/posix/getpass.py,sha256=1hbXV-yRhPnxo8b-eHESg27T3xJw1TetLBMd75G2LOA,519
|
|
1186
|
+
angr/procedures/posix/getsockopt.py,sha256=EM169ORkFGkGyqLKZoLJCJiA2H5_LVVln_KuiL7nWyc,222
|
|
1187
|
+
angr/procedures/posix/htonl.py,sha256=5BnXx_DnTX1v24PuG7JaXJOe_6gWgsRAkX1pXPCW8UM,312
|
|
1188
|
+
angr/procedures/posix/htons.py,sha256=CxcCVHHiTf3nlsEOaopfAUxmG9ZNzRNMgZhXoiZiIaM,312
|
|
1189
|
+
angr/procedures/posix/inet_ntoa.py,sha256=FDXDz0MhmWgZA60kc8bPxpqmdSYBRFLAlidRxjGPpKQ,1888
|
|
1190
|
+
angr/procedures/posix/listen.py,sha256=dAaFMGSOIX0xTW31MhBMbAPKnQpdEzj4CA-6fm7occ8,350
|
|
1191
|
+
angr/procedures/posix/mmap.py,sha256=fE4iOCrXDogGwPZwJL2a5O4cAMgJowhf6l3-c5nnKJk,5076
|
|
1192
|
+
angr/procedures/posix/open.py,sha256=F6IqaTPHROwD0FQQRiVffs01tQASH2IAJT6cpQgDb3c,572
|
|
1193
|
+
angr/procedures/posix/opendir.py,sha256=Us9V06V3NhDJf1gwHuKdRQnGHjTRYQPTzBJNn7dfm_c,326
|
|
1194
|
+
angr/procedures/posix/poll.py,sha256=iLreE-OrB_ANJjz10pGyt1TBOGbTpENv-4Tzoo0GLzk,2204
|
|
1195
|
+
angr/procedures/posix/pread64.py,sha256=Ecjn0hV0bT6dyxhMu-lgwRSpAbmi7Gr3Kejd1qER9_Q,1390
|
|
1196
|
+
angr/procedures/posix/pthread.py,sha256=PrSgAx1ygixmEwIaYW-on1EZBSf8hWq3HwLnYLWlXkE,2426
|
|
1197
|
+
angr/procedures/posix/pwrite64.py,sha256=of_VJEvq0_-ONZO3kH3dSNCE4rUvfpCbn2cqdpQAS9E,1397
|
|
1198
|
+
angr/procedures/posix/read.py,sha256=zoKbvZUxKsxENS8O4kt7Go5uVc0xn1dUlTxmzcOBiHc,287
|
|
1199
|
+
angr/procedures/posix/readdir.py,sha256=KFjcwswnRwLRtUP9YrmSPj8HeGOHI0tvTG5YjUrEMqk,2150
|
|
1200
|
+
angr/procedures/posix/recv.py,sha256=LfswsI9c25U41N_3Cq1Z-Gzcm8pa3EazPTIkAg8HZmM,310
|
|
1201
|
+
angr/procedures/posix/recvfrom.py,sha256=3LfbRoNigVnhIUjaz1GU8cQZ0v9dnVT1cNyN0JzGurs,333
|
|
1202
|
+
angr/procedures/posix/select.py,sha256=7byW7q2uGmQN38OF8XZwVH8uGJkjD48-eRCFQm6Q520,1983
|
|
1203
|
+
angr/procedures/posix/send.py,sha256=suypMy-ismXqf17TmDfv8gc4D7ZlAeFk198E3NvNVl4,725
|
|
1204
|
+
angr/procedures/posix/setsockopt.py,sha256=b92Lldrws0UGnKEy-g1ILO1RrZXeZAhoatsqgux4M34,202
|
|
1205
|
+
angr/procedures/posix/sigaction.py,sha256=E3SM6BhpuKufaAityNstPUiigTfAPOtOoT1zTtvuWsI,821
|
|
1206
|
+
angr/procedures/posix/sim_time.py,sha256=71PvgIxfh9xKBkHbvnruaLGFmGP5eJrO4_h7vGnYKJI,1691
|
|
1207
|
+
angr/procedures/posix/sleep.py,sha256=BNJD8yvbm2Ofc9bpP3IHVRoiKIG-bcF0khsSsQsoW_Y,180
|
|
1208
|
+
angr/procedures/posix/socket.py,sha256=OHrgFfNPftl-3SBm-45a70jAkNNSZu0IhiqkL_Ic3Mw,662
|
|
1209
|
+
angr/procedures/posix/strcasecmp.py,sha256=NCViLn9IiIkoqiAYc8pj5PzDbHZ-SbbhYBJjPVHY5VU,719
|
|
1210
|
+
angr/procedures/posix/strdup.py,sha256=diAJVFoPBOD00jtV_1Xh3Q7VLHhON8aOfQeSEdie9_w,526
|
|
1211
|
+
angr/procedures/posix/strtok_r.py,sha256=VcElCXU7emqZXoevscF6bvQun-RkUAgMIHRsAAEp_TY,2586
|
|
1212
|
+
angr/procedures/posix/syslog.py,sha256=e3aQ0M2_6QJpcU7yWOKTgif0fvFuR2972KfDGJfog-A,495
|
|
1213
|
+
angr/procedures/posix/tz.py,sha256=ikk0DD8KYWefbFHG3Ys1vjoLwks1JC7ug2DHDvtRp0c,295
|
|
1214
|
+
angr/procedures/posix/unlink.py,sha256=6NkPUSt3NX0NE7hhvZho6kawlTWIuvZ29ZZ_i-ioUGQ,317
|
|
1215
|
+
angr/procedures/posix/usleep.py,sha256=lXo-DT5YEhD9368n7HRwkjQMrs9zC7gj5MThSNy-wQw,175
|
|
1216
|
+
angr/procedures/posix/write.py,sha256=gLss3oynKO5A5STFMuaNMMz7_wkPZVeQaaOS8UXYp7M,289
|
|
1217
|
+
angr/procedures/stubs/CallReturn.py,sha256=60Eks1gUXaa3wKedyWGVAGxBvp6PSSVwZwuwrz6h2wU,254
|
|
1218
|
+
angr/procedures/stubs/NoReturnUnconstrained.py,sha256=nxKpVLOZQvuXbJ_JnrC4jt-Tt0pkLab-HcSbqd1p9Po,448
|
|
1219
|
+
angr/procedures/stubs/Nop.py,sha256=6ac0ry48Yz9bQV8SPKIr4xV4GF9Yylmoik1OuMUn_LE,111
|
|
1220
|
+
angr/procedures/stubs/PathTerminator.py,sha256=d4WzGNwKtcUZygeub0iaEfD0PW6amYHCZ7G9CRBAAL0,143
|
|
1221
|
+
angr/procedures/stubs/Redirect.py,sha256=gZBhMcayajSMAS4im9ED638XP5euFd7m-pv9uBmUxoI,482
|
|
1222
|
+
angr/procedures/stubs/ReturnChar.py,sha256=-bBiqJ-dILivNgfvmMpYZdfyrqHpwP8QhigxslMQRwE,357
|
|
1223
|
+
angr/procedures/stubs/ReturnUnconstrained.py,sha256=FFrZAdUViFi-8yzWuUwpmvJapj0qjfrHeJmo6mtadIg,732
|
|
1224
|
+
angr/procedures/stubs/UnresolvableCallTarget.py,sha256=Q8LPW3xiySQjUUVUQyDA6NndyLEdtye1bieC8dm9tZY,188
|
|
1225
|
+
angr/procedures/stubs/UnresolvableJumpTarget.py,sha256=vAeMt7bHzXyS48bMoLW9hxU6F2gKTGGPHk0lfU6-WsM,187
|
|
1226
|
+
angr/procedures/stubs/UserHook.py,sha256=muRdWND98X2Eg3F7k-_D-yqb8jLjp1VrnM2sxCwCYuU,604
|
|
1227
|
+
angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bTdXVc,67
|
|
1228
|
+
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
1229
|
+
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
1230
|
+
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
1231
|
+
angr/procedures/stubs/format_parser.py,sha256=6P027c6qhCmOffC7x861W-KRJn6ANxXj7kv8Wvjx9zM,27669
|
|
1232
|
+
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
1233
|
+
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1234
|
+
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
1235
|
+
angr/procedures/testing/retreg.py,sha256=0M0VoWzRzcEPeVHAxniDJ_Gl1Srz8OCAFu8EEKXAH-0,192
|
|
1236
|
+
angr/procedures/tracer/__init__.py,sha256=xItpgtnUe176vAt-Nt-2MjsZcEjCIqkoQjaa1hBR7F8,108
|
|
1237
|
+
angr/procedures/tracer/random.py,sha256=9TRoK8JWIZXD_yR6GAdMCKp15wc4ep7XCAXPKspS9aw,281
|
|
1238
|
+
angr/procedures/tracer/receive.py,sha256=Po4nGrgFQf3fGaMfntRSKvwcxiLKAG8oS1gowdb-1v0,608
|
|
1239
|
+
angr/procedures/tracer/transmit.py,sha256=I4nOQnSNGQATJvPmPMsHBd7XF9Sc55AxpMoZwC0niqc,744
|
|
1240
|
+
angr/procedures/uclibc/__init__.py,sha256=aee4FFAxEUdRWSrXI_BjJbgSEDnM-rmSAX0X_2NRV8s,88
|
|
1241
|
+
angr/procedures/uclibc/__uClibc_main.py,sha256=utDQzIrayfl2A4cceKUcHJ4IvZSgHpAPKngb-vgRFIo,342
|
|
1242
|
+
angr/procedures/win32/EncodePointer.py,sha256=L-vtUDW7kQrs8feTAc2IWxPWnojfvGLZe4Mxr1X7Y6E,132
|
|
1243
|
+
angr/procedures/win32/ExitProcess.py,sha256=WN6td8zkDlCXVzicc4kORhZMpuXhByO8xpNCcev9oRY,169
|
|
1244
|
+
angr/procedures/win32/GetCommandLine.py,sha256=5n2GKgkZF0c7qrRZfZAdGiKIi6ZxWaRcucOc3VZgnjA,263
|
|
1245
|
+
angr/procedures/win32/GetCurrentProcessId.py,sha256=bRa27LzA5eKtEjW73xTl8R-gxN2HkjKAW_HhkyCxxa4,140
|
|
1246
|
+
angr/procedures/win32/GetCurrentThreadId.py,sha256=_hcWgPsLLl84gn_A_GPgrfxxIgdh1vOifsA-xOZYhMg,139
|
|
1247
|
+
angr/procedures/win32/GetLastInputInfo.py,sha256=20ohcwvRA2t7BZoY7-VUosCPTfNpCjmPC-rmrx7Y1to,1127
|
|
1248
|
+
angr/procedures/win32/GetModuleHandle.py,sha256=O4-EgFPKSo0G9B2c_JVaCe_awUPkcXfsZ_iArLEq7Ns,939
|
|
1249
|
+
angr/procedures/win32/GetProcessAffinityMask.py,sha256=eituFNnUKgWRHIetCuPVZHOD1gVXCfZ_1cYbNdu7i2E,1155
|
|
1250
|
+
angr/procedures/win32/InterlockedExchange.py,sha256=XieQWeaxVw7kuepvk1P4BezmYIfEdNloxI9awWf8LEc,590
|
|
1251
|
+
angr/procedures/win32/IsProcessorFeaturePresent.py,sha256=0xJ94Pb7LxmgGESekm4Hz1YoMXm7OeOCdQBAxwWBZA0,236
|
|
1252
|
+
angr/procedures/win32/VirtualAlloc.py,sha256=gZhmQ7c-vHaxv35ge8rvoCZTY6dxEp_ThyVVtyJk5HA,4020
|
|
1253
|
+
angr/procedures/win32/VirtualProtect.py,sha256=s3jMPE6ocI3Jsj3cvK0XHsBhp4GdLYN5KM5lIajR5Rg,2309
|
|
1254
|
+
angr/procedures/win32/__init__.py,sha256=i2g6NRy5D4oId4UJ9TQJ3sDv9EyTdbXORjIwyAyMIwA,86
|
|
1255
|
+
angr/procedures/win32/critical_section.py,sha256=GPCS5WUwbcoUL4P7HpdjeEp99rgC41YmDfSnHH0LzfM,312
|
|
1256
|
+
angr/procedures/win32/dynamic_loading.py,sha256=vXLQpVWaEPKsRXEr4j7MBKwyy11j5OA8TsbZHQ0Nwlk,3451
|
|
1257
|
+
angr/procedures/win32/file_handles.py,sha256=JLurfZB_1Kes6Y3T0Brg4yuVMA-REretLYwjkrewqKw,1468
|
|
1258
|
+
angr/procedures/win32/gethostbyname.py,sha256=4QzxOXJClPnNQvmnMo-lstJVsNGMhS_pseKpGSuM-BQ,327
|
|
1259
|
+
angr/procedures/win32/heap.py,sha256=halSL0nSotRrM_NMXOAfExF-k9hKrAWNSkVkiLMnCgY,1582
|
|
1260
|
+
angr/procedures/win32/is_bad_ptr.py,sha256=keK74qbuBNnZ7BTaEcl8ktL4fdiv4oe-6QSG8POB_lQ,792
|
|
1261
|
+
angr/procedures/win32/local_storage.py,sha256=N_aPM54HzoOwYyyOVcPAWad-nhAfFbt_WkoisGW4Zro,2167
|
|
1262
|
+
angr/procedures/win32/mutex.py,sha256=BfqGCEP07VrNDj01fsfHRajGJJTjgvCNjPomsw56TeE,212
|
|
1263
|
+
angr/procedures/win32/sim_time.py,sha256=kybnCxSg3RDf7IWr95KMCznyxnGz2VtAKnS3gZ3eFsY,5332
|
|
1264
|
+
angr/procedures/win32/system_paths.py,sha256=4tAvnu18QX5bVoFhax9hLQXuHm3yilzNEpsSZ6puWCM,1305
|
|
1265
|
+
angr/procedures/win32_kernel/ExAllocatePool.py,sha256=63tXPhk9BhQA6AWgg_lFjt5qIl2CyO7ylJSLfN5626Q,458
|
|
1266
|
+
angr/procedures/win32_kernel/ExFreePoolWithTag.py,sha256=ok_CG6yILlPGZzg-VvBxWMXkWZq-ucDK2WobkZGwx20,260
|
|
1267
|
+
angr/procedures/win32_kernel/__fastfail.py,sha256=2vTgaxsV6dNkRVUScLnvPO8xDqru7LYSFpJtZelOlyY,356
|
|
1268
|
+
angr/procedures/win32_kernel/__init__.py,sha256=I4WgVVCg4PuqChPe8nayrzLxDYJBFAwHdql8sWAD0Ps,70
|
|
1269
|
+
angr/procedures/win_user32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1270
|
+
angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9pVEG0mo,383
|
|
1271
|
+
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1272
|
+
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1273
|
+
angr/protos/__init__.py,sha256=VdHXdfTK_wbCsdTJ3umFhWpUKZ9SEQUu9gQsd9TukY8,420
|
|
1274
|
+
angr/protos/cfg_pb2.py,sha256=MOZ74RcON7lGKjA2RJyjLCpRwHHZ0veEuQOkY_SobSc,2464
|
|
1275
|
+
angr/protos/function_pb2.py,sha256=qH8_xrk6B2nGVosY3oCyWbOT86yYGqLHkuZPOCO8UpM,2097
|
|
1276
|
+
angr/protos/primitives_pb2.py,sha256=Ou3JWw4z-Wa2TFRXrX2neA4gUzlk3oiC3U6rGm6ufj0,5987
|
|
1277
|
+
angr/protos/variables_pb2.py,sha256=fZ0sMXZFrSgs9G7Hzt7zSlDUN5gMKaAcdppsR7TQKF8,4576
|
|
1278
|
+
angr/protos/xrefs_pb2.py,sha256=wznhpgAE5rSVyP_E8wdFZF6OyIYEwtcZ8aq0zx8FXzs,1101
|
|
1279
|
+
angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
1280
|
+
angr/simos/cgc.py,sha256=LoBl_csMIVqn7WDqmspqAN5ETnTUoUv4PkVqobxqspU,5592
|
|
1281
|
+
angr/simos/javavm.py,sha256=8WatgrjfiSPyUyHmRhrKWvKxYCvUG3F3xh3LSJDpxhQ,20566
|
|
1282
|
+
angr/simos/linux.py,sha256=ShLsqFIut1jGuo6NGQSlT7ymoaEEwgTNkloJNN0pDDI,23204
|
|
1283
|
+
angr/simos/simos.py,sha256=L43oFMGRWiVEpfMWhb_Y_iawsaxm7qw_fG-sfKF344M,18464
|
|
1284
|
+
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1285
|
+
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
1286
|
+
angr/simos/windows.py,sha256=EneZrucxYgw5wII0FNYIEPjiLnhv0ju_nAEOpk8ssME,27878
|
|
1287
|
+
angr/simos/xbox.py,sha256=f0IL9ZTgYX8feEck5nBu87bYcehbdmYKQVoze6wsmY0,971
|
|
1288
|
+
angr/state_plugins/__init__.py,sha256=AOCYC5r6YWswhEhBEdtNDK9d9N_qhAl902UMHyGi8QY,2419
|
|
1289
|
+
angr/state_plugins/callstack.py,sha256=BMBl0qX10Qxkwl__lVP_Ho8aaQcSJNqvMAiY6csL1y8,11825
|
|
1290
|
+
angr/state_plugins/cgc.py,sha256=7EWDIX3__gEhzG8iC3JyjXi-Awfx5diRk6Y2eIgeCjM,4280
|
|
1291
|
+
angr/state_plugins/debug_variables.py,sha256=LR-lsjnn6FVrEr8RCVkhA_gyeeh1jiHC92uP3EZNDEE,6815
|
|
1292
|
+
angr/state_plugins/filesystem.py,sha256=qkM2zCfcrSBjt-g3RO1VYbjHPNRSdvsNRQR_M47pqFU,15765
|
|
1293
|
+
angr/state_plugins/gdb.py,sha256=CrilA-FPDNm7Fk5fWx9wOn_gVb4SRJyFyNPcef7oOr0,5175
|
|
1294
|
+
angr/state_plugins/globals.py,sha256=pU8_VPSjLLsW2x7vr_f2uFRMEIobqDjXQJUp5YDbkNU,1593
|
|
1295
|
+
angr/state_plugins/history.py,sha256=f_d3QxcN0TYe2tZxCz1ojBKmb2oNjIAuKWYNZFEfL8I,19782
|
|
1296
|
+
angr/state_plugins/inspect.py,sha256=9hXBRAL9C8rGqGdS9joydSsBsIrgu_pVLNmZeO_fqFs,11350
|
|
1297
|
+
angr/state_plugins/javavm_classloader.py,sha256=QOkvHSVnoiaEKX6HK520viBemFpxXBcaXeC_csLSmhY,5589
|
|
1298
|
+
angr/state_plugins/jni_references.py,sha256=ufNi66U9-O2c7bzOv1cAxykcEu3uj6PvbIOy_CV2Z2I,3451
|
|
1299
|
+
angr/state_plugins/libc.py,sha256=aQaeS1IqcKnLw2PDZngoxwtJRx9FTXNLjkkbA-OeDzY,23597
|
|
1300
|
+
angr/state_plugins/light_registers.py,sha256=R1QR_WWP9hvHP2iH-MMToG89h-LF21LG1mdOapNuWHc,6695
|
|
1301
|
+
angr/state_plugins/log.py,sha256=hTx4IF7BVW47pq9ZdMRlDmh4O9Y2pyecnq9Ey5PBgME,2400
|
|
1302
|
+
angr/state_plugins/loop_data.py,sha256=GAyGWwgmh914OPnxqIZ4BOGaNvlWmrHTxC136I7kYk8,4243
|
|
1303
|
+
angr/state_plugins/plugin.py,sha256=E2hqjR-XfS-aQRg2fedkqvmo6w3Fu84LTOIWE53OF9s,6731
|
|
1304
|
+
angr/state_plugins/posix.py,sha256=p2TjAl9k_CcmTS1-6QhKdM2ymBYAH2wnNW_t5oinZQ0,26774
|
|
1305
|
+
angr/state_plugins/preconstrainer.py,sha256=Y25dH4-rVh2fKAL1Ks2_k4KVkcRtrmWg_UXV-i0PQkU,8066
|
|
1306
|
+
angr/state_plugins/scratch.py,sha256=cq1kp8OBLwKNuBvaqAPylyDvw5whjL1A353R36UGK1Y,6210
|
|
1307
|
+
angr/state_plugins/sim_action.py,sha256=kcEa8CFXzICsj2NOW4sRPRPaPxlJ9b9ISBYFf-AkMGQ,9595
|
|
1308
|
+
angr/state_plugins/sim_action_object.py,sha256=QKDQQlgoRUalr0v_cNACZGy36XF1157h1ch6tHHUB9c,8512
|
|
1309
|
+
angr/state_plugins/sim_event.py,sha256=cREHpvrd0JbtIN8D-VtZ_foe6F0q0IMDz73S5ax3UWA,2088
|
|
1310
|
+
angr/state_plugins/solver.py,sha256=GVN-z84AkVtWbTt-6m8j_1pxxDQ-Y2GsnebdLVF4Wmk,45362
|
|
1311
|
+
angr/state_plugins/symbolizer.py,sha256=XEdY9g1G0xN0SbA1MDmSDsaOithnP3HnrsckeNV37m4,11011
|
|
1312
|
+
angr/state_plugins/trace_additions.py,sha256=d1P4a-DdC0c2Fu5_KAhNzfLr1mylAR2wWSOMSwad7os,29717
|
|
1313
|
+
angr/state_plugins/uc_manager.py,sha256=-mervKrD5a5K71CVAUxHrDW5RCduNwNxZXwW63L9bEA,2973
|
|
1314
|
+
angr/state_plugins/unicorn_engine.py,sha256=-HYSPKLxN1VEA6LeVXtHSyIVKEH-rY0pmNaRrYx9d4A,77934
|
|
1315
|
+
angr/state_plugins/view.py,sha256=968XQAnGrPB0gHh0f6DDTEn54VlpwFjcDZgtAmIwCf8,12382
|
|
1316
|
+
angr/state_plugins/heap/__init__.py,sha256=ajfNPVloK8CUpfd1z22v8dof55c8skshy8aFHG-aqy8,340
|
|
1317
|
+
angr/state_plugins/heap/heap_base.py,sha256=IaKFHqGoWIcFWx6WCEvpnUvn8eqmD1Gay3JWFerLnnk,6281
|
|
1318
|
+
angr/state_plugins/heap/heap_brk.py,sha256=BIVTjFhkdcCz_SRvNAeYRCZQzSmkY2GTdtxDh_3cz3E,5439
|
|
1319
|
+
angr/state_plugins/heap/heap_freelist.py,sha256=NZ3Sxfvsg1t-S694gHGQwnVz6dldZIXrDvKr8MceHYg,7918
|
|
1320
|
+
angr/state_plugins/heap/heap_libc.py,sha256=HzcyHifKGn_acUQJJAWhH4yD8xedzhNp1VMIyEce5a4,1893
|
|
1321
|
+
angr/state_plugins/heap/heap_ptmalloc.py,sha256=WMShu2fFMfxbIJp0YQ81c-U90nx31gh537yPTahsLf4,28222
|
|
1322
|
+
angr/state_plugins/heap/utils.py,sha256=GnVCryZeTWiFvYYq1xTOd59A46wvqMygSRS5z6wUuwM,830
|
|
1323
|
+
angr/storage/__init__.py,sha256=bTLVWYaHiFGdjYSieHdADLZ4fTKW0pUl_5aZBJV2ips,294
|
|
1324
|
+
angr/storage/file.py,sha256=sb7DnGgDnozxRR3bwcLJIkUf1w7FBagS6795Ah7H_WI,48046
|
|
1325
|
+
angr/storage/memory_object.py,sha256=EyRSgADKDt0IMNfUoDfu-uE1ycpK7U30ORduxPUgk6w,6242
|
|
1326
|
+
angr/storage/memory_mixins/__init__.py,sha256=a4fY0pSAwgFALjPoDRJVHKt_oMCqia_JqiMzxvk6xpY,8597
|
|
1327
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=L9FlA0oyQ3gvEENfs5nvHhCYBeuKeyk_TyBh5sgiF64,3493
|
|
1328
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=w3d1IJ_HrcSEt77_31CuozKYbbWRg17wkhrT-O0EqwE,16535
|
|
1329
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=5owT0luMQkYGqAdP-CSOD821Mrg4REFG_9uuo8uaphA,2888
|
|
1330
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=3Jr8L5hS72oxVWc7at2Wd7plOb7EL5_lxHIUpoYYouM,5828
|
|
1331
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=OekCAvHcwnzUbRN5OTzlWL-H_x0gaFr-iB6xUdjDeVc,1025
|
|
1332
|
+
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=ez-WWauvFzGzZrrohRSejI6h4Y_lqxtGUkE0SIzUPiA,10291
|
|
1333
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=9xwaHqJziT07dMtHtIU_ni0b_Wh9azPiTbPSnJ4ZS10,5992
|
|
1334
|
+
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=qAS2QKTimhZMZ-m9QSMi9DgFQeNMmISj7S8VS-3m9hI,391
|
|
1335
|
+
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBitcIPv-RBpcPhvFk718,3678
|
|
1336
|
+
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=ZNG9IrafrHITS_LCLidt5_KnVbuvcYpFTlXpYHP-GzI,15452
|
|
1337
|
+
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=tqjpvMaGyXeKIPTO669qMhKgFwQac2h53AvpRASi3fM,1195
|
|
1338
|
+
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
1339
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=ixxUxyqD9cIGQ2yxDN6GaGhOrPh_uqwG9sMjGvf-xNA,6481
|
|
1340
|
+
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
1341
|
+
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=GZkWxceMhP-e-iBGBilK6JgEjdBvUSPyd_Zi_4KZQxs,3432
|
|
1342
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=isJ3_vuElWtLTW7MxweHs5WJOuawr1LmLlS7-yakWd4,2576
|
|
1343
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=ajjiQ4ulbVQ1WgygR7WuM7vrOzsFGa4D-11R7ipmr1c,594
|
|
1344
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=7LwcgsuJpwPlQ8LzX5q0bZj2PTkLs_cngrd3lDiHd2s,5728
|
|
1345
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=ualfyGbaBqb0hjfde_YomZYT-6U_und_wj7KV_z8wKY,4966
|
|
1346
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=oxSTndU8a_l5gzVxfnWFI02SMM0ZSKULsQwbmeLOzhg,5775
|
|
1347
|
+
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=3YirCfFTWcdYwmfM0X5yJMiJ2s80a75Ha43WNnhTwnA,501
|
|
1348
|
+
angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhwwf4tmI4mWlxS0zVYBM,721
|
|
1349
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuLVyMEqNSZNmDsGRRkQwR30_w,2691
|
|
1350
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
1351
|
+
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1352
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=7DSOkDioqJOqmEgWXO974uD3Ogmhm7m9c4zQ8druZOs,10520
|
|
1353
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=E2LNktW8ln2e5ofMfhQlyUjB4XVChkkqVwit32NWamY,29386
|
|
1354
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1355
|
+
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
1356
|
+
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
1357
|
+
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=O6wxpqcRqZijLD3LkDQDKLjb_K8UloUyZHSrMijXgNw,654
|
|
1358
|
+
angr/storage/memory_mixins/paged_memory/pages/base.py,sha256=NiIZdOH1nrkP1AO6QKd1x-Ax_l1vRkDmFgR4mHpIH0c,1421
|
|
1359
|
+
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=1-gi9LooOPxYGzwPuLwzRcPANLSg5Ad-eB5YV1DsoyY,13242
|
|
1360
|
+
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=sOs25tFHpLZDWo4GxB9apxm9mSTVnQdf8ntwjd1ZtIM,3069
|
|
1361
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
1362
|
+
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=dAZIA0Z7tM5ZDQPtmkQ7OsUHq6bTqWPl_NcIj0RO7X0,14421
|
|
1363
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=aeKBWosclmNKl0wV6ST5ECATDjUz2dbWPkCpZCY_ws4,13230
|
|
1364
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=41EUAR1cHW-gkBR2ltMoSl5JUKgG1672VXIZtyrJXc8,16934
|
|
1365
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
1366
|
+
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
1367
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=m5l19pFcO9os_tZbfNQTleY8FN61kTshCqp9aAKhDsU,20339
|
|
1368
|
+
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=-LO2_yG1yKmC-1r4FA8wT-XE5xsJSKyPowPJRiHeggs,577
|
|
1369
|
+
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
1370
|
+
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=8he3-DQU7d5JfVpxvsUBx_ylEuovF6ORi2rxHqIexfM,975
|
|
1371
|
+
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=wcvhmzDyuPqmHYFkawr-no6J8d9t1Rhlz1Iu27ae3-E,201
|
|
1372
|
+
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=dT0Bfttz6zlCLoaeuMs1putEtIJ2tvNePZEcjo0PJ-A,9175
|
|
1373
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=MJclb7-RUmj0kwivbWBxuPKJfNwSPDMc6kJ9H_2JMWs,7823
|
|
1374
|
+
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=Sa_UmOMho3_6P4WG_c989zfU8ucO4oNgnfLAnKEOuU4,4946
|
|
1375
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=924dS2T-39-2e242kPFiSTkYJbdPzS4dqQ-r2fcQoog,17805
|
|
1376
|
+
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=tWyiNrMxmGv-OSSkJq1ZvGUiZg2JUIeETcYa_EULIcs,2173
|
|
1377
|
+
angr/utils/__init__.py,sha256=kBUIJCp9WSgzb62zMg4puUUeheMSl9U4RFqkfiL3en8,1159
|
|
1378
|
+
angr/utils/ail.py,sha256=-N59ISc-k-0jHFu0Bg5FIhvhBY8HT6zK3OYSVhXawWo,2838
|
|
1379
|
+
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1380
|
+
angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
1381
|
+
angr/utils/constants.py,sha256=8tQ1QnFw9U1kM9Q8YQ7StWxXHiqQHbWvrZanQK0eY2A,269
|
|
1382
|
+
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1383
|
+
angr/utils/cpp.py,sha256=k6ZOUNIqYxLd5WSRKP2T3li-3zt06PtneLgaBWPOtiU,516
|
|
1384
|
+
angr/utils/doms.py,sha256=l5_GUvVcjfwglZTqGYKOx5QvJ_pE_PWBIhH8fTk_e80,5356
|
|
1385
|
+
angr/utils/dynamic_dictlist.py,sha256=bHQrxhUCkk6NDDzEBouAWESjMyKfQUJIk8g38R27iXw,3048
|
|
1386
|
+
angr/utils/endness.py,sha256=PDpDNbiIbaSx1DGH1z16nU2B5GMrTqONGivGeVNiGyU,506
|
|
1387
|
+
angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
1388
|
+
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1389
|
+
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
1390
|
+
angr/utils/funcid.py,sha256=Rd4r8juv2IpeMtCpPp4wxJoEZTnZZ1NsxdT42tvrKVA,6353
|
|
1391
|
+
angr/utils/graph.py,sha256=aOAJIxzURwC-0wPEjpZBJj-bjGSo5vPjtCBqipDNGqA,32955
|
|
1392
|
+
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1393
|
+
angr/utils/library.py,sha256=_3R3so_CApzIFE4n87atJgWLkvzt3yHPEttUJsenqXw,7342
|
|
1394
|
+
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
1395
|
+
angr/utils/mp.py,sha256=y6Q0nDOykRZvcQ805DZpcJHQTGN-gqFi0eERGNhb3C0,1903
|
|
1396
|
+
angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
1397
|
+
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1398
|
+
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1399
|
+
angr/utils/types.py,sha256=688trvR0_j93sfeRgFT1npcmjNGSx99m_IPe9Xyy9WY,4967
|
|
1400
|
+
angr/utils/vex.py,sha256=epcrCexi_NjKnPGM2gfpiRsUea_Scd-71UMuF32ZAQo,306
|
|
1401
|
+
angr/utils/ssa/__init__.py,sha256=xbuVllFoPane9lHACdRQP5OO99Mca-4sqpFrtoAvnxo,17464
|
|
1402
|
+
angr/utils/ssa/tmp_uses_collector.py,sha256=digAUQpYoFR1VYfwoXlF3T1pYdDi6Pdq_ck54SjMabQ,813
|
|
1403
|
+
angr/utils/ssa/vvar_uses_collector.py,sha256=HewqUQluNE9EsaiLeFo7LaBvws_DDBDYNt9RBExy464,1367
|
|
1404
|
+
angr-9.2.165.dist-info/METADATA,sha256=xV11mDf55lcIXw6I4T9Z2u5Pu4BokaxzqFGUV10QfQs,4343
|
|
1405
|
+
angr-9.2.165.dist-info/WHEEL,sha256=IX2HnBVvckkP79pssuzZBsz9HpQYZuNOuXmHw12aHvk,151
|
|
1406
|
+
angr-9.2.165.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1407
|
+
angr-9.2.165.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1408
|
+
angr-9.2.165.dist-info/RECORD,,
|
|
1409
|
+
angr-9.2.165.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|