angr 9.2.192__cp311-cp311-macosx_10_12_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- angr/__init__.py +366 -0
- angr/__main__.py +182 -0
- angr/ail_callable.py +79 -0
- angr/ailment/__init__.py +83 -0
- angr/ailment/block.py +88 -0
- angr/ailment/block_walker.py +856 -0
- angr/ailment/constant.py +3 -0
- angr/ailment/converter_common.py +11 -0
- angr/ailment/converter_pcode.py +648 -0
- angr/ailment/converter_vex.py +829 -0
- angr/ailment/expression.py +1655 -0
- angr/ailment/manager.py +34 -0
- angr/ailment/statement.py +973 -0
- angr/ailment/tagged_object.py +58 -0
- angr/ailment/utils.py +114 -0
- angr/analyses/__init__.py +117 -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 +1113 -0
- angr/analyses/calling_convention/fact_collector.py +647 -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 +451 -0
- angr/analyses/cfg/cfg.py +74 -0
- angr/analyses/cfg/cfg_arch_options.py +95 -0
- angr/analyses/cfg/cfg_base.py +2954 -0
- angr/analyses/cfg/cfg_emulated.py +3451 -0
- angr/analyses/cfg/cfg_fast.py +5431 -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 +30 -0
- angr/analyses/cfg/indirect_jump_resolvers/aarch64_macho_got.py +77 -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 +82 -0
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +2490 -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 +475 -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 +2246 -0
- angr/analyses/decompiler/ailgraph_walker.py +49 -0
- angr/analyses/decompiler/block_io_finder.py +302 -0
- angr/analyses/decompiler/block_similarity.py +199 -0
- angr/analyses/decompiler/block_simplifier.py +397 -0
- angr/analyses/decompiler/callsite_maker.py +579 -0
- angr/analyses/decompiler/ccall_rewriters/__init__.py +9 -0
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +618 -0
- angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +24 -0
- angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py +354 -0
- angr/analyses/decompiler/clinic.py +3662 -0
- angr/analyses/decompiler/condition_processor.py +1323 -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 +77 -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 +54 -0
- angr/analyses/decompiler/decompilation_options.py +317 -0
- angr/analyses/decompiler/decompiler.py +796 -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 +357 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +528 -0
- angr/analyses/decompiler/dephication/seqnode_dephication.py +156 -0
- angr/analyses/decompiler/dirty_rewriters/__init__.py +7 -0
- angr/analyses/decompiler/dirty_rewriters/amd64_dirty.py +74 -0
- angr/analyses/decompiler/dirty_rewriters/rewriter_base.py +27 -0
- angr/analyses/decompiler/empty_node_remover.py +212 -0
- angr/analyses/decompiler/expression_narrower.py +290 -0
- angr/analyses/decompiler/goto_manager.py +112 -0
- angr/analyses/decompiler/graph_region.py +441 -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/node_replacer.py +42 -0
- angr/analyses/decompiler/notes/__init__.py +9 -0
- angr/analyses/decompiler/notes/decompilation_note.py +48 -0
- angr/analyses/decompiler/notes/deobfuscated_strings.py +56 -0
- angr/analyses/decompiler/optimization_passes/__init__.py +164 -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 +211 -0
- angr/analyses/decompiler/optimization_passes/const_derefs.py +127 -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 +1221 -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 +236 -0
- angr/analyses/decompiler/optimization_passes/eager_std_string_eval.py +186 -0
- angr/analyses/decompiler/optimization_passes/engine_base.py +502 -0
- angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +138 -0
- angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +113 -0
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +618 -0
- angr/analyses/decompiler/optimization_passes/inlined_strlen_simplifier.py +274 -0
- angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +224 -0
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +337 -0
- angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +939 -0
- angr/analyses/decompiler/optimization_passes/mod_simplifier.py +99 -0
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +710 -0
- angr/analyses/decompiler/optimization_passes/peephole_simplifier.py +75 -0
- angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +263 -0
- angr/analyses/decompiler/optimization_passes/register_save_area_simplifier_adv.py +198 -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 +632 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +61 -0
- angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +166 -0
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +333 -0
- angr/analyses/decompiler/optimization_passes/static_vvar_rewriter.py +336 -0
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +166 -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 +477 -0
- angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +88 -0
- angr/analyses/decompiler/peephole_optimizations/__init__.py +136 -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 +182 -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 +436 -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_memset.py +262 -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_wcscpy.py +256 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_wcscpy_consolidation.py +296 -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_derefs.py +21 -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 +115 -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 +28 -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 +22 -0
- angr/analyses/decompiler/presets/basic.py +36 -0
- angr/analyses/decompiler/presets/fast.py +66 -0
- angr/analyses/decompiler/presets/full.py +76 -0
- angr/analyses/decompiler/presets/malware.py +70 -0
- angr/analyses/decompiler/presets/preset.py +37 -0
- angr/analyses/decompiler/redundant_label_remover.py +141 -0
- angr/analyses/decompiler/region_identifier.py +1319 -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 +838 -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 +270 -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/semantic_naming/__init__.py +37 -0
- angr/analyses/decompiler/semantic_naming/array_index_naming.py +196 -0
- angr/analyses/decompiler/semantic_naming/boolean_naming.py +264 -0
- angr/analyses/decompiler/semantic_naming/call_result_naming.py +220 -0
- angr/analyses/decompiler/semantic_naming/naming_base.py +166 -0
- angr/analyses/decompiler/semantic_naming/orchestrator.py +107 -0
- angr/analyses/decompiler/semantic_naming/pointer_naming.py +334 -0
- angr/analyses/decompiler/semantic_naming/region_loop_counter_naming.py +246 -0
- angr/analyses/decompiler/semantic_naming/size_naming.py +137 -0
- angr/analyses/decompiler/seq_to_blocks.py +20 -0
- angr/analyses/decompiler/sequence_walker.py +261 -0
- angr/analyses/decompiler/ssailification/__init__.py +4 -0
- angr/analyses/decompiler/ssailification/rewriting.py +451 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +1091 -0
- angr/analyses/decompiler/ssailification/rewriting_state.py +61 -0
- angr/analyses/decompiler/ssailification/ssailification.py +283 -0
- angr/analyses/decompiler/ssailification/traversal.py +127 -0
- angr/analyses/decompiler/ssailification/traversal_engine.py +323 -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 +193 -0
- angr/analyses/decompiler/structured_codegen/c.py +4257 -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 +3636 -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 +1140 -0
- angr/analyses/decompiler/structuring/structurer_nodes.py +442 -0
- angr/analyses/decompiler/utils.py +1224 -0
- angr/analyses/deobfuscator/__init__.py +23 -0
- angr/analyses/deobfuscator/api_obf_finder.py +333 -0
- angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +80 -0
- angr/analyses/deobfuscator/api_obf_type2_finder.py +166 -0
- angr/analyses/deobfuscator/data_transformation_embedder.py +633 -0
- angr/analyses/deobfuscator/hash_lookup_api_deobfuscator.py +156 -0
- angr/analyses/deobfuscator/irsb_reg_collector.py +54 -0
- angr/analyses/deobfuscator/scope_ops_analyzer.py +68 -0
- angr/analyses/deobfuscator/string_obf_finder.py +983 -0
- angr/analyses/deobfuscator/string_obf_opt_passes.py +136 -0
- angr/analyses/deobfuscator/string_obf_peephole_optimizer.py +47 -0
- angr/analyses/disassembly.py +1351 -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 +249 -0
- angr/analyses/flirt/flirt_function.py +20 -0
- angr/analyses/flirt/flirt_matcher.py +352 -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 +619 -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/__init__.py +4 -0
- angr/analyses/loop_analysis/loop_analysis.py +464 -0
- angr/analyses/loop_analysis.py +349 -0
- angr/analyses/loop_unroller/__init__.py +4 -0
- angr/analyses/loop_unroller/loop_unroller.py +222 -0
- angr/analyses/loopfinder.py +171 -0
- angr/analyses/outliner/__init__.py +7 -0
- angr/analyses/outliner/outliner.py +402 -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/purity/__init__.py +15 -0
- angr/analyses/purity/analysis.py +78 -0
- angr/analyses/purity/engine.py +593 -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 +1128 -0
- angr/analyses/reaching_definitions/engine_vex.py +1128 -0
- angr/analyses/reaching_definitions/external_codeloc.py +0 -0
- angr/analyses/reaching_definitions/function_handler.py +639 -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 +254 -0
- angr/analyses/s_propagator.py +575 -0
- angr/analyses/s_reaching_definitions/__init__.py +12 -0
- angr/analyses/s_reaching_definitions/s_rda_model.py +145 -0
- angr/analyses/s_reaching_definitions/s_rda_view.py +344 -0
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +230 -0
- angr/analyses/smc.py +160 -0
- angr/analyses/soot_class_hierarchy.py +273 -0
- angr/analyses/stack_pointer_tracker.py +954 -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 +133 -0
- angr/analyses/typehoon/simple_solver.py +2009 -0
- angr/analyses/typehoon/translator.py +283 -0
- angr/analyses/typehoon/typeconsts.py +439 -0
- angr/analyses/typehoon/typehoon.py +338 -0
- angr/analyses/typehoon/typevars.py +633 -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 +978 -0
- angr/analyses/variable_recovery/engine_base.py +1256 -0
- angr/analyses/variable_recovery/engine_vex.py +594 -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 +669 -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 +215 -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 +167 -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 +176 -0
- angr/calling_conventions.py +2613 -0
- angr/code_location.py +249 -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 +144 -0
- angr/engines/__init__.py +69 -0
- angr/engines/ail/__init__.py +16 -0
- angr/engines/ail/callstack.py +58 -0
- angr/engines/ail/engine_light.py +903 -0
- angr/engines/ail/engine_successors.py +24 -0
- angr/engines/ail/setup.py +57 -0
- angr/engines/concrete.py +66 -0
- angr/engines/engine.py +29 -0
- angr/engines/failure.py +27 -0
- angr/engines/hook.py +93 -0
- angr/engines/icicle.py +294 -0
- angr/engines/light/__init__.py +23 -0
- angr/engines/light/data.py +681 -0
- angr/engines/light/engine.py +1297 -0
- angr/engines/pcode/__init__.py +9 -0
- angr/engines/pcode/behavior.py +998 -0
- angr/engines/pcode/cc.py +148 -0
- angr/engines/pcode/emulate.py +440 -0
- angr/engines/pcode/engine.py +242 -0
- angr/engines/pcode/lifter.py +1428 -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 +608 -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 +611 -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 +413 -0
- angr/flirt/__init__.py +124 -0
- angr/flirt/build_sig.py +305 -0
- angr/graph_utils.py +0 -0
- angr/keyed_region.py +525 -0
- angr/knowledge_base.py +146 -0
- angr/knowledge_plugins/__init__.py +43 -0
- angr/knowledge_plugins/callsite_prototypes.py +95 -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 +1043 -0
- angr/knowledge_plugins/cfg/cfg_node.py +536 -0
- angr/knowledge_plugins/cfg/indirect_jump.py +131 -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 +1830 -0
- angr/knowledge_plugins/functions/function_manager.py +621 -0
- angr/knowledge_plugins/functions/function_parser.py +360 -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 +216 -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 +1020 -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 +40 -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 +95 -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 +1375 -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 +126 -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 +1043 -0
- angr/procedures/definitions/cgc.py +23 -0
- angr/procedures/definitions/common/glibc.json +3516 -0
- angr/procedures/definitions/gnulib.py +41 -0
- angr/procedures/definitions/libstdcpp.py +25 -0
- angr/procedures/definitions/linux_kernel.py +8382 -0
- angr/procedures/definitions/linux_loader.py +7 -0
- angr/procedures/definitions/macho_libsystem.py +18 -0
- angr/procedures/definitions/msvcr.py +25 -0
- angr/procedures/definitions/parse_glibc.py +77 -0
- angr/procedures/definitions/parse_syscalls_from_local_system.py +54 -0
- angr/procedures/definitions/parse_win32json.py +2540 -0
- angr/procedures/definitions/types_stl.py +22 -0
- angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-4.json +24 -0
- angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-6.json +18 -0
- angr/procedures/definitions/wdk/clfs.json +189 -0
- angr/procedures/definitions/wdk/fltmgr.json +813 -0
- angr/procedures/definitions/wdk/fwpkclnt.json +24 -0
- angr/procedures/definitions/wdk/fwpuclnt.json +453 -0
- angr/procedures/definitions/wdk/gdi32.json +528 -0
- angr/procedures/definitions/wdk/hal.json +96 -0
- angr/procedures/definitions/wdk/ksecdd.json +72 -0
- angr/procedures/definitions/wdk/ndis.json +336 -0
- angr/procedures/definitions/wdk/ntoskrnl.json +5158 -0
- angr/procedures/definitions/wdk/offreg.json +87 -0
- angr/procedures/definitions/wdk/pshed.json +33 -0
- angr/procedures/definitions/wdk/secur32.json +39 -0
- angr/procedures/definitions/wdk/vhfum.json +30 -0
- angr/procedures/definitions/win32/_types_win32.json +34480 -0
- angr/procedures/definitions/win32/aclui.json +24 -0
- angr/procedures/definitions/win32/activeds.json +81 -0
- angr/procedures/definitions/win32/advapi32.json +2505 -0
- angr/procedures/definitions/win32/advpack.json +165 -0
- angr/procedures/definitions/win32/amsi.json +36 -0
- angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-1.json +45 -0
- angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-3.json +30 -0
- angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-6.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-apiquery-l2-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-backgroundtask-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-comm-l1-1-1.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-comm-l1-1-2.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-enclave-l1-1-1.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-errorhandling-l1-1-3.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-featurestaging-l1-1-0.json +30 -0
- angr/procedures/definitions/win32/api-ms-win-core-featurestaging-l1-1-1.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-file-fromapp-l1-1-0.json +48 -0
- angr/procedures/definitions/win32/api-ms-win-core-handle-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-ioring-l1-1-0.json +51 -0
- angr/procedures/definitions/win32/api-ms-win-core-marshal-l1-1-0.json +27 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-3.json +27 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-4.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-5.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-6.json +27 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-7.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-8.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-path-l1-1-0.json +81 -0
- angr/procedures/definitions/win32/api-ms-win-core-psm-appnotify-l1-1-0.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-psm-appnotify-l1-1-1.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-realtime-l1-1-1.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-realtime-l1-1-2.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-slapi-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-state-helpers-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-synch-l1-2-0.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-3.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-4.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-6.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-core-util-l1-1-1.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-core-wow64-l1-1-1.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-devices-query-l1-1-0.json +42 -0
- angr/procedures/definitions/win32/api-ms-win-devices-query-l1-1-1.json +30 -0
- angr/procedures/definitions/win32/api-ms-win-dx-d3dkmt-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-deviceinformation-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-expandedresources-l1-1-0.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-0.json +36 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-1.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-2.json +36 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-3.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-4.json +39 -0
- angr/procedures/definitions/win32/api-ms-win-mm-misc-l1-1-1.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-net-isolation-l1-1-0.json +39 -0
- angr/procedures/definitions/win32/api-ms-win-security-base-l1-2-2.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-security-isolatedcontainer-l1-1-0.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-security-isolatedcontainer-l1-1-1.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-3.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-4.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-5.json +21 -0
- angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-0.json +24 -0
- angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-1.json +33 -0
- angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-2.json +18 -0
- angr/procedures/definitions/win32/api-ms-win-wsl-api-l1-1-0.json +36 -0
- angr/procedures/definitions/win32/apphelp.json +18 -0
- angr/procedures/definitions/win32/authz.json +114 -0
- angr/procedures/definitions/win32/avicap32.json +27 -0
- angr/procedures/definitions/win32/avifil32.json +195 -0
- angr/procedures/definitions/win32/avrt.json +57 -0
- angr/procedures/definitions/win32/bcp47mrm.json +21 -0
- angr/procedures/definitions/win32/bcrypt.json +174 -0
- angr/procedures/definitions/win32/bcryptprimitives.json +21 -0
- angr/procedures/definitions/win32/bluetoothapis.json +138 -0
- angr/procedures/definitions/win32/bthprops_cpl.json +33 -0
- angr/procedures/definitions/win32/cabinet.json +81 -0
- angr/procedures/definitions/win32/certadm.json +69 -0
- angr/procedures/definitions/win32/certpoleng.json +39 -0
- angr/procedures/definitions/win32/cfgmgr32.json +732 -0
- angr/procedures/definitions/win32/chakra.json +270 -0
- angr/procedures/definitions/win32/cldapi.json +123 -0
- angr/procedures/definitions/win32/clfsw32.json +192 -0
- angr/procedures/definitions/win32/clusapi.json +855 -0
- angr/procedures/definitions/win32/comctl32.json +360 -0
- angr/procedures/definitions/win32/comdlg32.json +78 -0
- angr/procedures/definitions/win32/compstui.json +27 -0
- angr/procedures/definitions/win32/computecore.json +177 -0
- angr/procedures/definitions/win32/computenetwork.json +144 -0
- angr/procedures/definitions/win32/computestorage.json +51 -0
- angr/procedures/definitions/win32/comsvcs.json +36 -0
- angr/procedures/definitions/win32/credui.json +72 -0
- angr/procedures/definitions/win32/crypt32.json +702 -0
- angr/procedures/definitions/win32/cryptnet.json +30 -0
- angr/procedures/definitions/win32/cryptui.json +45 -0
- angr/procedures/definitions/win32/cryptxml.json +72 -0
- angr/procedures/definitions/win32/cscapi.json +27 -0
- angr/procedures/definitions/win32/d2d1.json +54 -0
- angr/procedures/definitions/win32/d3d10.json +96 -0
- angr/procedures/definitions/win32/d3d10_1.json +21 -0
- angr/procedures/definitions/win32/d3d11.json +24 -0
- angr/procedures/definitions/win32/d3d12.json +39 -0
- angr/procedures/definitions/win32/d3d9.json +48 -0
- angr/procedures/definitions/win32/d3dcompiler_47.json +93 -0
- angr/procedures/definitions/win32/d3dcsx.json +42 -0
- angr/procedures/definitions/win32/davclnt.json +69 -0
- angr/procedures/definitions/win32/dbgeng.json +27 -0
- angr/procedures/definitions/win32/dbghelp.json +663 -0
- angr/procedures/definitions/win32/dbgmodel.json +18 -0
- angr/procedures/definitions/win32/dciman32.json +75 -0
- angr/procedures/definitions/win32/dcomp.json +51 -0
- angr/procedures/definitions/win32/ddraw.json +36 -0
- angr/procedures/definitions/win32/deviceaccess.json +18 -0
- angr/procedures/definitions/win32/dflayout.json +18 -0
- angr/procedures/definitions/win32/dhcpcsvc.json +60 -0
- angr/procedures/definitions/win32/dhcpcsvc6.json +33 -0
- angr/procedures/definitions/win32/dhcpsapi.json +603 -0
- angr/procedures/definitions/win32/diagnosticdataquery.json +120 -0
- angr/procedures/definitions/win32/dinput8.json +18 -0
- angr/procedures/definitions/win32/directml.json +21 -0
- angr/procedures/definitions/win32/dmprocessxmlfiltered.json +18 -0
- angr/procedures/definitions/win32/dnsapi.json +207 -0
- angr/procedures/definitions/win32/drt.json +63 -0
- angr/procedures/definitions/win32/drtprov.json +42 -0
- angr/procedures/definitions/win32/drttransport.json +21 -0
- angr/procedures/definitions/win32/dsound.json +45 -0
- angr/procedures/definitions/win32/dsparse.json +72 -0
- angr/procedures/definitions/win32/dsprop.json +36 -0
- angr/procedures/definitions/win32/dssec.json +27 -0
- angr/procedures/definitions/win32/dsuiext.json +27 -0
- angr/procedures/definitions/win32/dwmapi.json +108 -0
- angr/procedures/definitions/win32/dwrite.json +18 -0
- angr/procedures/definitions/win32/dxcompiler.json +21 -0
- angr/procedures/definitions/win32/dxcore.json +18 -0
- angr/procedures/definitions/win32/dxgi.json +33 -0
- angr/procedures/definitions/win32/dxva2.json +129 -0
- angr/procedures/definitions/win32/eappcfg.json +57 -0
- angr/procedures/definitions/win32/eappprxy.json +69 -0
- angr/procedures/definitions/win32/efswrt.json +21 -0
- angr/procedures/definitions/win32/elscore.json +30 -0
- angr/procedures/definitions/win32/esent.json +702 -0
- angr/procedures/definitions/win32/evr.json +36 -0
- angr/procedures/definitions/win32/faultrep.json +27 -0
- angr/procedures/definitions/win32/fhsvcctl.json +36 -0
- angr/procedures/definitions/win32/firewallapi.json +24 -0
- angr/procedures/definitions/win32/fltlib.json +99 -0
- angr/procedures/definitions/win32/fontsub.json +21 -0
- angr/procedures/definitions/win32/forceinline.json +24 -0
- angr/procedures/definitions/win32/fwpuclnt.json +591 -0
- angr/procedures/definitions/win32/fxsutility.json +21 -0
- angr/procedures/definitions/win32/gdi32.json +1308 -0
- angr/procedures/definitions/win32/gdiplus.json +1902 -0
- angr/procedures/definitions/win32/glu32.json +171 -0
- angr/procedures/definitions/win32/gpedit.json +33 -0
- angr/procedures/definitions/win32/hhctrl_ocx.json +21 -0
- angr/procedures/definitions/win32/hid.json +150 -0
- angr/procedures/definitions/win32/hlink.json +99 -0
- angr/procedures/definitions/win32/hrtfapo.json +18 -0
- angr/procedures/definitions/win32/httpapi.json +144 -0
- angr/procedures/definitions/win32/icm32.json +78 -0
- angr/procedures/definitions/win32/icmui.json +21 -0
- angr/procedures/definitions/win32/icu.json +3090 -0
- angr/procedures/definitions/win32/ieframe.json +102 -0
- angr/procedures/definitions/win32/imagehlp.json +84 -0
- angr/procedures/definitions/win32/imgutil.json +42 -0
- angr/procedures/definitions/win32/imm32.json +261 -0
- angr/procedures/definitions/win32/infocardapi.json +66 -0
- angr/procedures/definitions/win32/inkobjcore.json +96 -0
- angr/procedures/definitions/win32/iphlpapi.json +618 -0
- angr/procedures/definitions/win32/iscsidsc.json +252 -0
- angr/procedures/definitions/win32/isolatedwindowsenvironmentutils.json +21 -0
- angr/procedures/definitions/win32/kernel32.json +4566 -0
- angr/procedures/definitions/win32/kernelbase.json +33 -0
- angr/procedures/definitions/win32/keycredmgr.json +27 -0
- angr/procedures/definitions/win32/ksproxy_ax.json +33 -0
- angr/procedures/definitions/win32/ksuser.json +39 -0
- angr/procedures/definitions/win32/ktmw32.json +132 -0
- angr/procedures/definitions/win32/licenseprotection.json +21 -0
- angr/procedures/definitions/win32/loadperf.json +51 -0
- angr/procedures/definitions/win32/magnification.json +72 -0
- angr/procedures/definitions/win32/mapi32.json +213 -0
- angr/procedures/definitions/win32/mdmlocalmanagement.json +24 -0
- angr/procedures/definitions/win32/mdmregistration.json +60 -0
- angr/procedures/definitions/win32/mf.json +201 -0
- angr/procedures/definitions/win32/mfcore.json +21 -0
- angr/procedures/definitions/win32/mfplat.json +450 -0
- angr/procedures/definitions/win32/mfplay.json +18 -0
- angr/procedures/definitions/win32/mfreadwrite.json +30 -0
- angr/procedures/definitions/win32/mfsensorgroup.json +45 -0
- angr/procedures/definitions/win32/mfsrcsnk.json +21 -0
- angr/procedures/definitions/win32/mgmtapi.json +42 -0
- angr/procedures/definitions/win32/mi.json +18 -0
- angr/procedures/definitions/win32/mmdevapi.json +18 -0
- angr/procedures/definitions/win32/mpr.json +156 -0
- angr/procedures/definitions/win32/mprapi.json +351 -0
- angr/procedures/definitions/win32/mqrt.json +117 -0
- angr/procedures/definitions/win32/mrmsupport.json +96 -0
- angr/procedures/definitions/win32/msacm32.json +141 -0
- angr/procedures/definitions/win32/msajapi.json +1656 -0
- angr/procedures/definitions/win32/mscms.json +252 -0
- angr/procedures/definitions/win32/mscoree.json +96 -0
- angr/procedures/definitions/win32/msctfmonitor.json +24 -0
- angr/procedures/definitions/win32/msdelta.json +63 -0
- angr/procedures/definitions/win32/msdmo.json +48 -0
- angr/procedures/definitions/win32/msdrm.json +267 -0
- angr/procedures/definitions/win32/msi.json +807 -0
- angr/procedures/definitions/win32/msimg32.json +24 -0
- angr/procedures/definitions/win32/mspatcha.json +63 -0
- angr/procedures/definitions/win32/mspatchc.json +42 -0
- angr/procedures/definitions/win32/msports.json +36 -0
- angr/procedures/definitions/win32/msrating.json +72 -0
- angr/procedures/definitions/win32/mssign32.json +45 -0
- angr/procedures/definitions/win32/mstask.json +21 -0
- angr/procedures/definitions/win32/msvfw32.json +144 -0
- angr/procedures/definitions/win32/mswsock.json +63 -0
- angr/procedures/definitions/win32/mtxdm.json +18 -0
- angr/procedures/definitions/win32/ncrypt.json +132 -0
- angr/procedures/definitions/win32/ndfapi.json +63 -0
- angr/procedures/definitions/win32/netapi32.json +633 -0
- angr/procedures/definitions/win32/netsh.json +39 -0
- angr/procedures/definitions/win32/netshell.json +21 -0
- angr/procedures/definitions/win32/newdev.json +48 -0
- angr/procedures/definitions/win32/ninput.json +105 -0
- angr/procedures/definitions/win32/normaliz.json +21 -0
- angr/procedures/definitions/win32/ntdll.json +234 -0
- angr/procedures/definitions/win32/ntdllk.json +18 -0
- angr/procedures/definitions/win32/ntdsapi.json +258 -0
- angr/procedures/definitions/win32/ntlanman.json +45 -0
- angr/procedures/definitions/win32/odbc32.json +477 -0
- angr/procedures/definitions/win32/odbcbcp.json +96 -0
- angr/procedures/definitions/win32/ole32.json +966 -0
- angr/procedures/definitions/win32/oleacc.json +66 -0
- angr/procedures/definitions/win32/oleaut32.json +1230 -0
- angr/procedures/definitions/win32/oledlg.json +84 -0
- angr/procedures/definitions/win32/ondemandconnroutehelper.json +30 -0
- angr/procedures/definitions/win32/opengl32.json +1080 -0
- angr/procedures/definitions/win32/opmxbox.json +24 -0
- angr/procedures/definitions/win32/p2p.json +339 -0
- angr/procedures/definitions/win32/p2pgraph.json +126 -0
- angr/procedures/definitions/win32/pdh.json +309 -0
- angr/procedures/definitions/win32/peerdist.json +99 -0
- angr/procedures/definitions/win32/powrprof.json +267 -0
- angr/procedures/definitions/win32/prntvpt.json +48 -0
- angr/procedures/definitions/win32/projectedfslib.json +72 -0
- angr/procedures/definitions/win32/propsys.json +669 -0
- angr/procedures/definitions/win32/psapi.json +96 -0
- angr/procedures/definitions/win32/quartz.json +21 -0
- angr/procedures/definitions/win32/query.json +27 -0
- angr/procedures/definitions/win32/qwave.json +48 -0
- angr/procedures/definitions/win32/rasapi32.json +267 -0
- angr/procedures/definitions/win32/rasdlg.json +33 -0
- angr/procedures/definitions/win32/resutils.json +375 -0
- angr/procedures/definitions/win32/rpcns4.json +198 -0
- angr/procedures/definitions/win32/rpcproxy.json +27 -0
- angr/procedures/definitions/win32/rpcrt4.json +1356 -0
- angr/procedures/definitions/win32/rstrtmgr.json +48 -0
- angr/procedures/definitions/win32/rtm.json +243 -0
- angr/procedures/definitions/win32/rtutils.json +138 -0
- angr/procedures/definitions/win32/rtworkq.json +114 -0
- angr/procedures/definitions/win32/sas.json +18 -0
- angr/procedures/definitions/win32/scarddlg.json +30 -0
- angr/procedures/definitions/win32/schannel.json +42 -0
- angr/procedures/definitions/win32/sechost.json +21 -0
- angr/procedures/definitions/win32/secur32.json +282 -0
- angr/procedures/definitions/win32/sensapi.json +24 -0
- angr/procedures/definitions/win32/sensorsutilsv2.json +135 -0
- angr/procedures/definitions/win32/setupapi.json +1017 -0
- angr/procedures/definitions/win32/sfc.json +33 -0
- angr/procedures/definitions/win32/shdocvw.json +24 -0
- angr/procedures/definitions/win32/shell32.json +747 -0
- angr/procedures/definitions/win32/shlwapi.json +1095 -0
- angr/procedures/definitions/win32/slc.json +111 -0
- angr/procedures/definitions/win32/slcext.json +27 -0
- angr/procedures/definitions/win32/slwga.json +18 -0
- angr/procedures/definitions/win32/snmpapi.json +93 -0
- angr/procedures/definitions/win32/spoolss.json +93 -0
- angr/procedures/definitions/win32/srclient.json +18 -0
- angr/procedures/definitions/win32/srpapi.json +48 -0
- angr/procedures/definitions/win32/sspicli.json +36 -0
- angr/procedures/definitions/win32/sti.json +18 -0
- angr/procedures/definitions/win32/t2embed.json +57 -0
- angr/procedures/definitions/win32/tapi32.json +762 -0
- angr/procedures/definitions/win32/tbs.json +57 -0
- angr/procedures/definitions/win32/tdh.json +96 -0
- angr/procedures/definitions/win32/tokenbinding.json +45 -0
- angr/procedures/definitions/win32/traffic.json +75 -0
- angr/procedures/definitions/win32/txfw32.json +42 -0
- angr/procedures/definitions/win32/ualapi.json +27 -0
- angr/procedures/definitions/win32/uiautomationcore.json +309 -0
- angr/procedures/definitions/win32/urlmon.json +246 -0
- angr/procedures/definitions/win32/user32.json +2298 -0
- angr/procedures/definitions/win32/userenv.json +147 -0
- angr/procedures/definitions/win32/usp10.json +135 -0
- angr/procedures/definitions/win32/uxtheme.json +246 -0
- angr/procedures/definitions/win32/verifier.json +18 -0
- angr/procedures/definitions/win32/version.json +57 -0
- angr/procedures/definitions/win32/vertdll.json +36 -0
- angr/procedures/definitions/win32/virtdisk.json +102 -0
- angr/procedures/definitions/win32/vmdevicehost.json +54 -0
- angr/procedures/definitions/win32/vmsavedstatedumpprovider.json +144 -0
- angr/procedures/definitions/win32/vssapi.json +18 -0
- angr/procedures/definitions/win32/wcmapi.json +30 -0
- angr/procedures/definitions/win32/wdsbp.json +36 -0
- angr/procedures/definitions/win32/wdsclientapi.json +126 -0
- angr/procedures/definitions/win32/wdsmc.json +33 -0
- angr/procedures/definitions/win32/wdspxe.json +108 -0
- angr/procedures/definitions/win32/wdstptc.json +54 -0
- angr/procedures/definitions/win32/webauthn.json +54 -0
- angr/procedures/definitions/win32/webservices.json +594 -0
- angr/procedures/definitions/win32/websocket.json +54 -0
- angr/procedures/definitions/win32/wecapi.json +60 -0
- angr/procedures/definitions/win32/wer.json +78 -0
- angr/procedures/definitions/win32/wevtapi.json +120 -0
- angr/procedures/definitions/win32/winbio.json +177 -0
- angr/procedures/definitions/win32/windows_ai_machinelearning.json +18 -0
- angr/procedures/definitions/win32/windows_media_mediacontrol.json +39 -0
- angr/procedures/definitions/win32/windows_networking.json +18 -0
- angr/procedures/definitions/win32/windows_ui_xaml.json +21 -0
- angr/procedures/definitions/win32/windowscodecs.json +42 -0
- angr/procedures/definitions/win32/winfax.json +183 -0
- angr/procedures/definitions/win32/winhttp.json +183 -0
- angr/procedures/definitions/win32/winhvemulation.json +27 -0
- angr/procedures/definitions/win32/winhvplatform.json +213 -0
- angr/procedures/definitions/win32/wininet.json +903 -0
- angr/procedures/definitions/win32/winml.json +18 -0
- angr/procedures/definitions/win32/winmm.json +543 -0
- angr/procedures/definitions/win32/winscard.json +225 -0
- angr/procedures/definitions/win32/winspool_drv.json +531 -0
- angr/procedures/definitions/win32/wintrust.json +195 -0
- angr/procedures/definitions/win32/winusb.json +117 -0
- angr/procedures/definitions/win32/wlanapi.json +195 -0
- angr/procedures/definitions/win32/wlanui.json +18 -0
- angr/procedures/definitions/win32/wldap32.json +744 -0
- angr/procedures/definitions/win32/wldp.json +42 -0
- angr/procedures/definitions/win32/wmvcore.json +48 -0
- angr/procedures/definitions/win32/wnvapi.json +21 -0
- angr/procedures/definitions/win32/wofutil.json +48 -0
- angr/procedures/definitions/win32/ws2_32.json +495 -0
- angr/procedures/definitions/win32/wscapi.json +33 -0
- angr/procedures/definitions/win32/wsclient.json +24 -0
- angr/procedures/definitions/win32/wsdapi.json +111 -0
- angr/procedures/definitions/win32/wsmsvc.json +114 -0
- angr/procedures/definitions/win32/wsnmp32.json +162 -0
- angr/procedures/definitions/win32/wtsapi32.json +204 -0
- angr/procedures/definitions/win32/xaudio2_8.json +27 -0
- angr/procedures/definitions/win32/xinput1_4.json +36 -0
- angr/procedures/definitions/win32/xmllite.json +33 -0
- angr/procedures/definitions/win32/xolehlp.json +27 -0
- angr/procedures/definitions/win32/xpsprint.json +21 -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 +19 -0
- angr/procedures/glibc/sscanf.py +10 -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 +69 -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 +45 -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 +860 -0
- angr/protos/__init__.py +19 -0
- angr/protos/cfg_pb2.py +42 -0
- angr/protos/function_pb2.py +38 -0
- angr/protos/primitives_pb2.py +59 -0
- angr/protos/variables_pb2.py +55 -0
- angr/protos/xrefs_pb2.py +36 -0
- angr/py.typed +1 -0
- angr/rustylib.cpython-311-darwin.so +0 -0
- angr/serializable.py +66 -0
- angr/sim_manager.py +971 -0
- angr/sim_options.py +436 -0
- angr/sim_procedure.py +626 -0
- angr/sim_state.py +926 -0
- angr/sim_state_options.py +403 -0
- angr/sim_type.py +4026 -0
- angr/sim_variable.py +470 -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 +615 -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 +478 -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 +176 -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 +1128 -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 +1920 -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 +43 -0
- angr/storage/memory_mixins/label_merger_mixin.py +31 -0
- angr/storage/memory_mixins/memory_mixin.py +175 -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 +529 -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 +442 -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.dylib +0 -0
- angr/utils/__init__.py +46 -0
- angr/utils/ail.py +176 -0
- angr/utils/algo.py +34 -0
- angr/utils/balancer.py +776 -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 +150 -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 +244 -0
- angr/utils/graph.py +981 -0
- angr/utils/lazy_import.py +13 -0
- angr/utils/library.py +236 -0
- angr/utils/loader.py +55 -0
- angr/utils/mp.py +66 -0
- angr/utils/orderedset.py +74 -0
- angr/utils/ssa/__init__.py +455 -0
- angr/utils/ssa/tmp_uses_collector.py +23 -0
- angr/utils/ssa/vvar_uses_collector.py +36 -0
- angr/utils/strings.py +20 -0
- angr/utils/tagged_interval_map.py +112 -0
- angr/utils/timing.py +74 -0
- angr/utils/types.py +193 -0
- angr/utils/vex.py +11 -0
- angr/vaults.py +367 -0
- angr-9.2.192.dist-info/METADATA +112 -0
- angr-9.2.192.dist-info/RECORD +1442 -0
- angr-9.2.192.dist-info/WHEEL +6 -0
- angr-9.2.192.dist-info/entry_points.txt +2 -0
- angr-9.2.192.dist-info/licenses/LICENSE +27 -0
- angr-9.2.192.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1442 @@
|
|
|
1
|
+
angr-9.2.192.dist-info/RECORD,,
|
|
2
|
+
angr-9.2.192.dist-info/WHEEL,sha256=TtAZ30pCWYvZMnnEKX4ONBfDfwzhlzTM206zrbZON58,138
|
|
3
|
+
angr-9.2.192.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
4
|
+
angr-9.2.192.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
5
|
+
angr-9.2.192.dist-info/METADATA,sha256=O-cSV5SoHvElJkvg-8ysbbicUego2u54EP1YbK-2i80,4456
|
|
6
|
+
angr-9.2.192.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
7
|
+
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
8
|
+
angr/unicornlib.dylib,sha256=bpxNgvSazzGYCTg0rNhkqZvNS6dsxNgqOS3PAhXcBOU,237920
|
|
9
|
+
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
10
|
+
angr/callable.py,sha256=5FH7F_gnyRcxoBhWsTvUhbCgG4YQdcgoHws79HJAjCA,6901
|
|
11
|
+
angr/sim_type.py,sha256=u5IXWGQAsh5tSL8CgSiJlXycd_OFPxni95fpXZnlkTc,146807
|
|
12
|
+
angr/knowledge_base.py,sha256=5tzTgAm6cuxsX8SrF4oLukUd110yPKmkCHxZ4IUw_8s,4626
|
|
13
|
+
angr/emulator.py,sha256=aZXi8-jQ_9uelN2zvlecR2ZYXPey4PHyju6yVJIWDAk,4708
|
|
14
|
+
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
15
|
+
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
17
|
+
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
18
|
+
angr/code_location.py,sha256=swAMyFFqShtysJHDc5mte0CMTkcaE9uot61IQXd14O0,7967
|
|
19
|
+
angr/__init__.py,sha256=AiqAOQkvoBE8A5KSGnUknl5UpfSTKZJLXUDb0EzRtbs,9246
|
|
20
|
+
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
21
|
+
angr/rustylib.cpython-311-darwin.so,sha256=sRwSNFUVQJcNk1XxVKuwBbVSFukGcWHvlV5u6ZIeBgg,5083696
|
|
22
|
+
angr/factory.py,sha256=MTdeFpbiapBa9aejfqugzhBtgk3PPnRZ2jnvEMNSUFM,18213
|
|
23
|
+
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
24
|
+
angr/calling_conventions.py,sha256=1isFY5VXVPaiJioPK5z9lXCAnmfd3S32CWtBbl27k2o,102641
|
|
25
|
+
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
26
|
+
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
27
|
+
angr/sim_state.py,sha256=D9lxSXjpVm5TP-QgmRTCUiyS78HnIM_A0XIcQOVT1hQ,34647
|
|
28
|
+
angr/sim_options.py,sha256=2v5_vulQ-7p2wT6tAPM-Js2yjv7mLaqEKDidciKROFU,17599
|
|
29
|
+
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
30
|
+
angr/errors.py,sha256=S0uWaAyl6iFmmMQuZ4xqFYaur8qeGKgMsa1BYoBQZL8,8520
|
|
31
|
+
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
32
|
+
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
33
|
+
angr/ail_callable.py,sha256=rXgOMxm5sdBKg8w6mjosdtIv85_h3o2xu78MGYtXU5w,2715
|
|
34
|
+
angr/__main__.py,sha256=N6uAG4GA5S02pSDUKcWFmTuWiT-qiO7OP7kSfXsF4nQ,6142
|
|
35
|
+
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
36
|
+
angr/project.py,sha256=PBxTASceQYFVpJarfqr_HCJUqxb3sUTov3xr1WRkn_A,38674
|
|
37
|
+
angr/sim_variable.py,sha256=SAqe_Mms3EsFo7YH0j8_TC2eC3SvnZFFm_6DMa7NZF4,13252
|
|
38
|
+
angr/sim_procedure.py,sha256=rEsJ5wgvBPPQA79f2WqCVLJ_NQmOCdZfOPi3kH8usfQ,27172
|
|
39
|
+
angr/procedures/__init__.py,sha256=eTLs6tsx6qjSJs26uUbRL14qs7Dnv-2v2HRmczjtgag,263
|
|
40
|
+
angr/procedures/procedure_dict.py,sha256=JyGzAqIycONIOCVlQhciJdFZunZrn_oGP67M_uE3Fms,1907
|
|
41
|
+
angr/procedures/java_jni/field_access.py,sha256=TDZAFrOpgy50PZZSC7ebB5LMAKK9ddtBNC-nYiQDfQU,4760
|
|
42
|
+
angr/procedures/java_jni/global_and_local_refs.py,sha256=wVc0mmJrvJmjFX_Cp3H3u1XtQsO6-MxznIs-TT0hI0s,1130
|
|
43
|
+
angr/procedures/java_jni/string_operations.py,sha256=TZ8DLlk9EEyl7MltIjCutu1Djp9w118ufZkdVQA-anc,2635
|
|
44
|
+
angr/procedures/java_jni/array_operations.py,sha256=fmn_zCJo4dhFVl8xebRJ6M-3a86jdQbiCAbdZxYWzkk,10404
|
|
45
|
+
angr/procedures/java_jni/not_implemented.py,sha256=Oq7pFKDx-g0xHEatUc5G8O9FaVBxtleV3-Z6FGYxfXA,965
|
|
46
|
+
angr/procedures/java_jni/__init__.py,sha256=TMj0UE56J0Ne31oEt65Uw-EN_3N1xeIi2qWdTVECs_A,21820
|
|
47
|
+
angr/procedures/java_jni/object_operations.py,sha256=He47FrvLb8Yx7Wed9t1H9k2ZEP5RM7-gaUTrw4LjTkA,2726
|
|
48
|
+
angr/procedures/java_jni/version_information.py,sha256=FPrOx1h_OIgHhaWklCWMGaNPQJd1pc8RwJsiifxz5z0,264
|
|
49
|
+
angr/procedures/java_jni/method_calls.py,sha256=1zmv43ULXQ8q8kL1QkKK_1sTpiLW0aU3fqhjaP9exMA,9603
|
|
50
|
+
angr/procedures/java_jni/class_and_interface_operations.py,sha256=nCTU3E0D6G3PX5NEoxNWWmsT1_mMFJFhHj9RWwCgTEc,1069
|
|
51
|
+
angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI,2711
|
|
52
|
+
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
53
|
+
angr/procedures/cgc/allocate.py,sha256=te23YiFch2SyJZ7PxhAHFDg1Kl7UJCDIv59I_NZahlw,3288
|
|
54
|
+
angr/procedures/cgc/__init__.py,sha256=GFTI1FuWVFmdqaBoNSFREIw6JiGKw6ajJVBbTgu9j28,76
|
|
55
|
+
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
56
|
+
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
57
|
+
angr/procedures/cgc/deallocate.py,sha256=xX6HLeiCmyLXa3sTrsiQ6Yipln34zelHrZyFoGgEZHc,2200
|
|
58
|
+
angr/procedures/cgc/_terminate.py,sha256=PjYwBy475tXOEnxv9oPXIxndCgU94L2_KsgP0fxUhtI,259
|
|
59
|
+
angr/procedures/tracer/receive.py,sha256=Po4nGrgFQf3fGaMfntRSKvwcxiLKAG8oS1gowdb-1v0,608
|
|
60
|
+
angr/procedures/tracer/__init__.py,sha256=xItpgtnUe176vAt-Nt-2MjsZcEjCIqkoQjaa1hBR7F8,108
|
|
61
|
+
angr/procedures/tracer/random.py,sha256=9TRoK8JWIZXD_yR6GAdMCKp15wc4ep7XCAXPKspS9aw,281
|
|
62
|
+
angr/procedures/tracer/transmit.py,sha256=I4nOQnSNGQATJvPmPMsHBd7XF9Sc55AxpMoZwC0niqc,744
|
|
63
|
+
angr/procedures/stubs/NoReturnUnconstrained.py,sha256=nxKpVLOZQvuXbJ_JnrC4jt-Tt0pkLab-HcSbqd1p9Po,448
|
|
64
|
+
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
65
|
+
angr/procedures/stubs/CallReturn.py,sha256=60Eks1gUXaa3wKedyWGVAGxBvp6PSSVwZwuwrz6h2wU,254
|
|
66
|
+
angr/procedures/stubs/ReturnUnconstrained.py,sha256=FFrZAdUViFi-8yzWuUwpmvJapj0qjfrHeJmo6mtadIg,732
|
|
67
|
+
angr/procedures/stubs/UserHook.py,sha256=muRdWND98X2Eg3F7k-_D-yqb8jLjp1VrnM2sxCwCYuU,604
|
|
68
|
+
angr/procedures/stubs/UnresolvableCallTarget.py,sha256=Q8LPW3xiySQjUUVUQyDA6NndyLEdtye1bieC8dm9tZY,188
|
|
69
|
+
angr/procedures/stubs/Redirect.py,sha256=gZBhMcayajSMAS4im9ED638XP5euFd7m-pv9uBmUxoI,482
|
|
70
|
+
angr/procedures/stubs/format_parser.py,sha256=chwn-spkRefyf83V9JM9X1JQZIwSIyNLlA2ZyNQjZ_U,27675
|
|
71
|
+
angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bTdXVc,67
|
|
72
|
+
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
73
|
+
angr/procedures/stubs/PathTerminator.py,sha256=d4WzGNwKtcUZygeub0iaEfD0PW6amYHCZ7G9CRBAAL0,143
|
|
74
|
+
angr/procedures/stubs/Nop.py,sha256=6ac0ry48Yz9bQV8SPKIr4xV4GF9Yylmoik1OuMUn_LE,111
|
|
75
|
+
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
76
|
+
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
77
|
+
angr/procedures/stubs/ReturnChar.py,sha256=-bBiqJ-dILivNgfvmMpYZdfyrqHpwP8QhigxslMQRwE,357
|
|
78
|
+
angr/procedures/stubs/UnresolvableJumpTarget.py,sha256=vAeMt7bHzXyS48bMoLW9hxU6F2gKTGGPHk0lfU6-WsM,187
|
|
79
|
+
angr/procedures/posix/bzero.py,sha256=c1xUOubFJc0WSWLaEYC3PYvksxfeFzZhuVwzFStdauc,229
|
|
80
|
+
angr/procedures/posix/dup.py,sha256=1VX6E2yG6BowSVhmHeRlWGzK97qLClph_UuOZqAXkB0,1931
|
|
81
|
+
angr/procedures/posix/htons.py,sha256=CxcCVHHiTf3nlsEOaopfAUxmG9ZNzRNMgZhXoiZiIaM,312
|
|
82
|
+
angr/procedures/posix/close.py,sha256=irfRm-5gUoG8xB1wSqz5bf2lbtWSx74FTcdAUe-Q47M,217
|
|
83
|
+
angr/procedures/posix/tz.py,sha256=ikk0DD8KYWefbFHG3Ys1vjoLwks1JC7ug2DHDvtRp0c,295
|
|
84
|
+
angr/procedures/posix/write.py,sha256=gLss3oynKO5A5STFMuaNMMz7_wkPZVeQaaOS8UXYp7M,289
|
|
85
|
+
angr/procedures/posix/getsockopt.py,sha256=EM169ORkFGkGyqLKZoLJCJiA2H5_LVVln_KuiL7nWyc,222
|
|
86
|
+
angr/procedures/posix/sigaction.py,sha256=E3SM6BhpuKufaAityNstPUiigTfAPOtOoT1zTtvuWsI,821
|
|
87
|
+
angr/procedures/posix/send.py,sha256=suypMy-ismXqf17TmDfv8gc4D7ZlAeFk198E3NvNVl4,725
|
|
88
|
+
angr/procedures/posix/sim_time.py,sha256=71PvgIxfh9xKBkHbvnruaLGFmGP5eJrO4_h7vGnYKJI,1691
|
|
89
|
+
angr/procedures/posix/pthread.py,sha256=6Uxl68HxcUWedYe8HwSol7-EtVjU6NaPDvrwK_DNH6M,2472
|
|
90
|
+
angr/procedures/posix/fork.py,sha256=j49y7IVmMvYlex2HRwv21z4nY_m_O_sr-zkOzFM_HNg,303
|
|
91
|
+
angr/procedures/posix/__init__.py,sha256=yg0t_r5-yU38GbJmr2QhhNupgoicttNLkuxFfu13_FY,66
|
|
92
|
+
angr/procedures/posix/usleep.py,sha256=lXo-DT5YEhD9368n7HRwkjQMrs9zC7gj5MThSNy-wQw,175
|
|
93
|
+
angr/procedures/posix/pread64.py,sha256=Ecjn0hV0bT6dyxhMu-lgwRSpAbmi7Gr3Kejd1qER9_Q,1390
|
|
94
|
+
angr/procedures/posix/chroot.py,sha256=xd3A7YQGPNnUkYkveTvoKQGAaQUk7s2W5oK5D5Yz31E,774
|
|
95
|
+
angr/procedures/posix/strdup.py,sha256=diAJVFoPBOD00jtV_1Xh3Q7VLHhON8aOfQeSEdie9_w,526
|
|
96
|
+
angr/procedures/posix/pwrite64.py,sha256=of_VJEvq0_-ONZO3kH3dSNCE4rUvfpCbn2cqdpQAS9E,1397
|
|
97
|
+
angr/procedures/posix/bind.py,sha256=sADd7VnKRGB7XwpUCyTSKJmfLXwfAbp2brgpsw9gYpA,351
|
|
98
|
+
angr/procedures/posix/accept.py,sha256=e6d9gi3bghM8b2CrLij__Sktn3alzvlRu5yfcFQ-kjo,1265
|
|
99
|
+
angr/procedures/posix/setsockopt.py,sha256=b92Lldrws0UGnKEy-g1ILO1RrZXeZAhoatsqgux4M34,202
|
|
100
|
+
angr/procedures/posix/getenv.py,sha256=CSRfL1rhFZ9wx2SwqfTCZ_s0oeLHKy_L_Z-E5hc9KFg,1418
|
|
101
|
+
angr/procedures/posix/inet_ntoa.py,sha256=FDXDz0MhmWgZA60kc8bPxpqmdSYBRFLAlidRxjGPpKQ,1888
|
|
102
|
+
angr/procedures/posix/open.py,sha256=F6IqaTPHROwD0FQQRiVffs01tQASH2IAJT6cpQgDb3c,572
|
|
103
|
+
angr/procedures/posix/recvfrom.py,sha256=3LfbRoNigVnhIUjaz1GU8cQZ0v9dnVT1cNyN0JzGurs,333
|
|
104
|
+
angr/procedures/posix/recv.py,sha256=LfswsI9c25U41N_3Cq1Z-Gzcm8pa3EazPTIkAg8HZmM,310
|
|
105
|
+
angr/procedures/posix/syslog.py,sha256=e3aQ0M2_6QJpcU7yWOKTgif0fvFuR2972KfDGJfog-A,495
|
|
106
|
+
angr/procedures/posix/unlink.py,sha256=6NkPUSt3NX0NE7hhvZho6kawlTWIuvZ29ZZ_i-ioUGQ,317
|
|
107
|
+
angr/procedures/posix/getpass.py,sha256=1hbXV-yRhPnxo8b-eHESg27T3xJw1TetLBMd75G2LOA,519
|
|
108
|
+
angr/procedures/posix/sleep.py,sha256=BNJD8yvbm2Ofc9bpP3IHVRoiKIG-bcF0khsSsQsoW_Y,180
|
|
109
|
+
angr/procedures/posix/mmap.py,sha256=fE4iOCrXDogGwPZwJL2a5O4cAMgJowhf6l3-c5nnKJk,5076
|
|
110
|
+
angr/procedures/posix/poll.py,sha256=iLreE-OrB_ANJjz10pGyt1TBOGbTpENv-4Tzoo0GLzk,2204
|
|
111
|
+
angr/procedures/posix/select.py,sha256=7byW7q2uGmQN38OF8XZwVH8uGJkjD48-eRCFQm6Q520,1983
|
|
112
|
+
angr/procedures/posix/strcasecmp.py,sha256=NCViLn9IiIkoqiAYc8pj5PzDbHZ-SbbhYBJjPVHY5VU,719
|
|
113
|
+
angr/procedures/posix/closedir.py,sha256=aH1LGMNwKPh-qOSjARbmoodC4TxqkfOMzmSI9zjWwn4,99
|
|
114
|
+
angr/procedures/posix/htonl.py,sha256=5BnXx_DnTX1v24PuG7JaXJOe_6gWgsRAkX1pXPCW8UM,312
|
|
115
|
+
angr/procedures/posix/socket.py,sha256=OHrgFfNPftl-3SBm-45a70jAkNNSZu0IhiqkL_Ic3Mw,662
|
|
116
|
+
angr/procedures/posix/fcntl.py,sha256=cfouuQjT63ICNNAZOml-NQroLpSayMNYnSi-PZCpfAg,349
|
|
117
|
+
angr/procedures/posix/listen.py,sha256=dAaFMGSOIX0xTW31MhBMbAPKnQpdEzj4CA-6fm7occ8,350
|
|
118
|
+
angr/procedures/posix/fileno.py,sha256=_5hXeGZtPksB1mEQHpx8zNxxxhDb6YolwUm2EelNDpM,449
|
|
119
|
+
angr/procedures/posix/readdir.py,sha256=KFjcwswnRwLRtUP9YrmSPj8HeGOHI0tvTG5YjUrEMqk,2150
|
|
120
|
+
angr/procedures/posix/opendir.py,sha256=Us9V06V3NhDJf1gwHuKdRQnGHjTRYQPTzBJNn7dfm_c,326
|
|
121
|
+
angr/procedures/posix/fdopen.py,sha256=1_Cso_igE_0814K6ec6bjLmdG4Pp0em0JVQE1FkEnMU,2753
|
|
122
|
+
angr/procedures/posix/gethostbyname.py,sha256=Y_6L3sF8Hxds9KHD30M47RO-Sqi3XaCI8dMUgGoBPho,1608
|
|
123
|
+
angr/procedures/posix/strtok_r.py,sha256=VcElCXU7emqZXoevscF6bvQun-RkUAgMIHRsAAEp_TY,2586
|
|
124
|
+
angr/procedures/posix/read.py,sha256=zoKbvZUxKsxENS8O4kt7Go5uVc0xn1dUlTxmzcOBiHc,287
|
|
125
|
+
angr/procedures/libc/perror.py,sha256=uhI1D7kmXU2dFBh5PIj8TvjwNToth7RKlSZzOyVgbTg,368
|
|
126
|
+
angr/procedures/libc/time.py,sha256=Vs5kzCClMMtWjHgwFSc6beAaIGaUBzGr9STtR-XQco4,275
|
|
127
|
+
angr/procedures/libc/strcat.py,sha256=FUGjCop8qmLSjolvI6JJB6GO3nHqaSsg253atXxddnA,480
|
|
128
|
+
angr/procedures/libc/strlen.py,sha256=beFDcwFddALbs1NASV6tH4-aFdEXyt-H7wmTtlrnUHA,3793
|
|
129
|
+
angr/procedures/libc/scanf.py,sha256=fYYECyq-K_JLyqyzpqNXJ7QRqPMw6BJEZ5bxWDI4sck,526
|
|
130
|
+
angr/procedures/libc/strchr.py,sha256=7bi4gb4Rn2mAweWs-xPrtJAlMZ1QgXxMeexaq0yHWCA,1803
|
|
131
|
+
angr/procedures/libc/tmpnam.py,sha256=sCLdyhjDnYPFx0jpkFv4zp_zL-uK-mp63LUYamO-cxA,547
|
|
132
|
+
angr/procedures/libc/srand.py,sha256=KxTedqBOKSr6rmHwMsdJiUwAVvhd_deSPQ6Bq8BWdsY,125
|
|
133
|
+
angr/procedures/libc/system.py,sha256=xM13e-rS2kJa9isfX2keqQElN0pPbKy0yC-g3oQOzKY,375
|
|
134
|
+
angr/procedures/libc/realloc.py,sha256=a5SifphpH8BuXZ4mX2ebrIoBv75SOg2VlH03bAKRw80,202
|
|
135
|
+
angr/procedures/libc/error.py,sha256=vkpVzlTq_fn-m4r_rRJBskITXSl0pVEws9vUYCyhRpY,2275
|
|
136
|
+
angr/procedures/libc/fputs.py,sha256=rybpIpoeX8qPVUoE7w5cfqSasW_weXi9GALBan4GErU,697
|
|
137
|
+
angr/procedures/libc/strtol.py,sha256=oLb-39c1UBtUxt52MbgdHuJF4UffV-HbqObu_VwGK0U,11558
|
|
138
|
+
angr/procedures/libc/memset.py,sha256=OtTJdDoj3zXv5HPQRZu_9UgMPZPIL46brXpHa3ZBV9I,2396
|
|
139
|
+
angr/procedures/libc/getgid.py,sha256=0J3VGigEbWgbJdET2NyDMhtxwPJcTH8KiHYCiUMfO4U,160
|
|
140
|
+
angr/procedures/libc/memcpy.py,sha256=uCCupMVNI7rW19Cnh9DB-Vgi9jTedeKfuIw4hDqf_9o,1680
|
|
141
|
+
angr/procedures/libc/strtoul.py,sha256=h01oH9HMPiDY4OUOxRMZ5SmODIC0zKA8lZFTS0ZS4hY,284
|
|
142
|
+
angr/procedures/libc/puts.py,sha256=RoYTm0mCR9gzT983B7YcODwHPTnqj_BPGR9d3iGln-A,490
|
|
143
|
+
angr/procedures/libc/ungetc.py,sha256=ui0J60DEcSNFvX85REs4umvC-upXh2dkJt_gbYTBvtg,660
|
|
144
|
+
angr/procedures/libc/memcmp.py,sha256=IBEfs-VyuLbyq2SGXfKJPrjo9Opo9NKFi7yqCFrIG-0,3027
|
|
145
|
+
angr/procedures/libc/tolower.py,sha256=DrEkTd7dQai09_ZQkdplstuQT9RDAZg7CkGOWEDvAiI,237
|
|
146
|
+
angr/procedures/libc/fwrite.py,sha256=JEqppU5poBDMNVJbnORTB2qVSc28mL69WrVvxnatInk,543
|
|
147
|
+
angr/procedures/libc/vsnprintf.py,sha256=DiClt1UILRPobBK9VxHOjN_MM2fZSYB-Bi0oFfFFrBs,450
|
|
148
|
+
angr/procedures/libc/fclose.py,sha256=lc7oU_6PR-YTUlJDUP71qXOoWlWgqlld20DgEPN4tDA,600
|
|
149
|
+
angr/procedures/libc/getuid.py,sha256=YrTGtVrcuidAOmwFO_-qLoV64xUA1U3zv0UORHgQsyo,160
|
|
150
|
+
angr/procedures/libc/abort.py,sha256=kyleIqhN8yDckJzoshGOurupt4dTkfX942sk4sck1O4,140
|
|
151
|
+
angr/procedures/libc/strstr.py,sha256=Qv3ppkvD78wb4_nSw-dV0SrA_5WGIons2lSgrX-MwJo,3747
|
|
152
|
+
angr/procedures/libc/strnlen.py,sha256=IolI9OPHGJhVv4Qzc0Aui-11IqpU5pzGE9B2JPUbB14,395
|
|
153
|
+
angr/procedures/libc/strncat.py,sha256=59NtDDFFJHp7r9YkzD7-v-P9R1upPOIExyjcCO-6OOg,536
|
|
154
|
+
angr/procedures/libc/fgets.py,sha256=ekWbgmrxg3WiW8PvustYU_gGdq9zomPs3vs-u0gUeXE,2791
|
|
155
|
+
angr/procedures/libc/access.py,sha256=GG3asj6wrd62lplJ3CtY6S0bNMJ8CnF57BgBnGZDURA,316
|
|
156
|
+
angr/procedures/libc/printf.py,sha256=QKFTiASEk1E3HfZaxB3seeyed4wNMuJWN56SeBG3SDs,881
|
|
157
|
+
angr/procedures/libc/__init__.py,sha256=adwOD6zMckO8qKPIUAeJH8hyj3eufWtJrGTG4_PLl0o,95
|
|
158
|
+
angr/procedures/libc/fscanf.py,sha256=f5-ciLPnBy05GOIXlaOUPEXJjdNo3ClQvQx0KwPhPl8,662
|
|
159
|
+
angr/procedures/libc/gets.py,sha256=muqVJdsr8Rd0R9NGKFyrEtRJZUQEb9g-Yfwy3f_l2bU,2581
|
|
160
|
+
angr/procedures/libc/sscanf.py,sha256=enQZVdpN8oYhCoOSpyvMk_Qx73D-RZyd1f-mANew6CM,366
|
|
161
|
+
angr/procedures/libc/feof.py,sha256=4Kx69CdFcOxkcrS28F5hfhipAVLv1LLeK-dVAkk16yk,602
|
|
162
|
+
angr/procedures/libc/calloc.py,sha256=pIAaLjbLN9BcUmDz-zFv0o26QIrvdQ9qHEbJSR2vCPg,220
|
|
163
|
+
angr/procedures/libc/strncmp.py,sha256=22juyR5f0C0DmS31xlBqUvguEFgdCNb1ddnuUYCV7C8,7492
|
|
164
|
+
angr/procedures/libc/free.py,sha256=fqD5jdmmjetwtNxjpYxAnsZk6Qxa3ho65o672gJPGf4,194
|
|
165
|
+
angr/procedures/libc/toupper.py,sha256=TS-t__hU-UkM32Z2GFrgary_UL2_T71jhwt1kgL4wSc,238
|
|
166
|
+
angr/procedures/libc/rand.py,sha256=_9FdhE3YnaYDY0KDaeV3zntMsJ6sm0kBEm0vy2M3N5U,231
|
|
167
|
+
angr/procedures/libc/strcpy.py,sha256=XD8X6sR4ylF7qnk2J9zfku0wHKkGjlLp4M806AKKAgo,419
|
|
168
|
+
angr/procedures/libc/rewind.py,sha256=cIu-WjVhHdQBWYpp-tfRz-wB8TRj7ZZyNuVzTGX8mAs,267
|
|
169
|
+
angr/procedures/libc/getdelim.py,sha256=W2S_jLznxPkmeSFCai2_AD93kEFJnjerlFgzzQZiZSc,3973
|
|
170
|
+
angr/procedures/libc/fprintf.py,sha256=595hVR2mvmi8E2xQ16ibDibFiPpRP_yHOCOqCjdwPbo,765
|
|
171
|
+
angr/procedures/libc/stpcpy.py,sha256=NrC7eEzAPzARZPtdRvJUsuVtiqQRsv0IJwjNM63XrX0,492
|
|
172
|
+
angr/procedures/libc/getegid.py,sha256=ok68QvVM2wCSA6vQgg09vdQAVe_OSMBBfnF382Yri_Q,161
|
|
173
|
+
angr/procedures/libc/sprintf.py,sha256=oMDKFZVoI8ZN8l2trxFcLygyaKnDnS8DH4OMutBpTBk,716
|
|
174
|
+
angr/procedures/libc/wchar.py,sha256=DMUHGXYrWsVkyCXl36hqBMg9De5Z2BXxbJbpz8QorI0,573
|
|
175
|
+
angr/procedures/libc/fopen.py,sha256=mQ1v1Ao0YQy8-g6tplDm7QITTFpBOzxRccMZEJfewWg,2508
|
|
176
|
+
angr/procedures/libc/fputc.py,sha256=TVRjiT7xsD00svLIPEXdN7yEL6fScd2pUirrBOtGPJg,572
|
|
177
|
+
angr/procedures/libc/setbuf.py,sha256=PsnNkUNYD76684CUTVFIKtrlGw9xmAddewIS4-HnZj0,185
|
|
178
|
+
angr/procedures/libc/putchar.py,sha256=YC5cJrNjH5I8eft804AMA4GMdjVYmySqarWUYFPZdt0,310
|
|
179
|
+
angr/procedures/libc/snprintf.py,sha256=sQGEQdqMlBNQX-9leNYN68q4nnbFtqK4J29nOFM_on4,1206
|
|
180
|
+
angr/procedures/libc/ftell.py,sha256=rX74Zx2KADt6reuP6Col0LxgiZ8hAd56bDcjrDtoVn8,550
|
|
181
|
+
angr/procedures/libc/closelog.py,sha256=slmNW8G8L1tv938KxN7JW2fPoEwpbbb-pOjXaiyMINo,218
|
|
182
|
+
angr/procedures/libc/getchar.py,sha256=tYJVhmNEuivvoOfgPj3brAq3PgTBtbzg0tTjGv7MwOs,330
|
|
183
|
+
angr/procedures/libc/exit.py,sha256=v-OH6QtanXO7qfvSxXS0QSs89KXHM6kNyUOKJ22bylQ,233
|
|
184
|
+
angr/procedures/libc/atol.py,sha256=4qIV4quCXWLDrUCsa8IU6tYi9bW09_ZKXxCiNotaHBY,331
|
|
185
|
+
angr/procedures/libc/setvbuf.py,sha256=9ZPStLhL-GIpXSnP4K-Ttf0CdxpHLjZySbZ6L1qOrGA,145
|
|
186
|
+
angr/procedures/libc/err.py,sha256=2xZ3pwTO5IuF6DnNxQkVlZRutIMrcz1JpMTxdPvyr3M,465
|
|
187
|
+
angr/procedures/libc/openlog.py,sha256=gVX_di-vXroR8-L5_e6xYSOXTAF4N2Q_cqFMd8VkJ6Q,241
|
|
188
|
+
angr/procedures/libc/strcmp.py,sha256=SOLOs261WC3iZeq0tKgk5fS3md8D_eFcssdKQb0AzUY,859
|
|
189
|
+
angr/procedures/libc/strncpy.py,sha256=IHFmycE1xhohCGbULmnhZ7HRLGbLS2Ts8b_c18ZT7Gs,632
|
|
190
|
+
angr/procedures/libc/atoi.py,sha256=HUk9831jWyKLuORCWL4WuXs4i_PNq07Gs9-JxoT60cY,382
|
|
191
|
+
angr/procedures/libc/fread.py,sha256=Ikzg96-hEv-mCzIp3bXUeiVa-z4dO26Wal54ljT7je4,644
|
|
192
|
+
angr/procedures/libc/fflush.py,sha256=LODdM1zQmdwVwzUyorgz-Taru6jFCQFpi0YZvr8HB7M,258
|
|
193
|
+
angr/procedures/libc/fseek.py,sha256=xekYOEVVFDqAaIB8M2GOutnbJnaScMTvnUTX_s-JCYc,1143
|
|
194
|
+
angr/procedures/libc/fgetc.py,sha256=USMoMi2uo7taXhuWtbnKrZ6bKFYAIP28zcmADyJqamE,656
|
|
195
|
+
angr/procedures/libc/geteuid.py,sha256=EiqirO8NAKVQRe5hgBblD9LMYbRWrBrI3hmVkbpfYdE,161
|
|
196
|
+
angr/procedures/libc/malloc.py,sha256=_aN6J5G0UxghKegICD3cMZR6609D_p9DgihKyQvIkl0,256
|
|
197
|
+
angr/procedures/uclibc/__uClibc_main.py,sha256=utDQzIrayfl2A4cceKUcHJ4IvZSgHpAPKngb-vgRFIo,342
|
|
198
|
+
angr/procedures/uclibc/__init__.py,sha256=aee4FFAxEUdRWSrXI_BjJbgSEDnM-rmSAX0X_2NRV8s,88
|
|
199
|
+
angr/procedures/ntdll/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
+
angr/procedures/ntdll/exceptions.py,sha256=HY1nEIGaAkyjnk1d4c2S3tlhh65ZrRhe6VF18gUTGM8,2744
|
|
201
|
+
angr/procedures/java/__init__.py,sha256=JW4cG1Bn7LBUIfU5tIYM4eSmlBM0n8MKF2f0so6_mhs,1226
|
|
202
|
+
angr/procedures/java/unconstrained.py,sha256=RK0sqaWfqv3pMK55LBHvdudVGfBEijb59yG709pkUZg,3418
|
|
203
|
+
angr/procedures/java_lang/system.py,sha256=3xxRTq1odwlDSMDEC0Q88q5McvU82zxzf8atTUGpgtU,462
|
|
204
|
+
angr/procedures/java_lang/load_library.py,sha256=Tk-bKCOS268Ila5zZOZHABVo4eqq6f6DpoN5QstxW70,290
|
|
205
|
+
angr/procedures/java_lang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
|
+
angr/procedures/java_lang/integer.py,sha256=6bqN3x8YGZ6_CQyhYHB-uomr6D-3grMNuNkZkewOTcM,1548
|
|
207
|
+
angr/procedures/java_lang/character.py,sha256=eGY0WsxdxuxnwuGn-msDzvIV5asCMjqe4oP1BhgVS4A,999
|
|
208
|
+
angr/procedures/java_lang/getsimplename.py,sha256=mGTdzVRfBHOkiL0cboWALnLEuwwOZi_9wo6i27YlDfI,537
|
|
209
|
+
angr/procedures/java_lang/math.py,sha256=WwAygSTN7YpGQwa8qqGjvcc4nQOxTa-e51zetx6qQjg,395
|
|
210
|
+
angr/procedures/java_lang/string.py,sha256=P-qZDDljr4ntpQ4ZkS_UN3fihcIkEKymL-9JcxLHNXI,3169
|
|
211
|
+
angr/procedures/java_lang/double.py,sha256=xGJoDZHtfAyKxw7_QcnBD59TYSZDStymxSX4cCKZPGg,749
|
|
212
|
+
angr/procedures/java_lang/exit.py,sha256=wr0Pw3EnuX9oCRGFc5DyP3fP4wNzdfVTBWhYnL0KMOQ,304
|
|
213
|
+
angr/procedures/java_lang/stringbuilder.py,sha256=ylKE1_J4v-Mo4lMRaqG5A6P_mUBzGigfIzjL871C9Wg,1630
|
|
214
|
+
angr/procedures/linux_kernel/time.py,sha256=5Y8dchbNt2owwzZ6I1-mcRCaeyGxllHc0qvRZTBSsY0,1046
|
|
215
|
+
angr/procedures/linux_kernel/uname.py,sha256=OhBx4bPrto1qdCvuVfhQCzlX5lYWC8i9VqUCb1-MAWs,1162
|
|
216
|
+
angr/procedures/linux_kernel/arch_prctl.py,sha256=vsePQYqLQyeiCLKDas6MQs5NjtFz3eArOIYlFg2RTII,1080
|
|
217
|
+
angr/procedures/linux_kernel/set_tid_address.py,sha256=L2Fo3Fm7t_98uUqdxJfNHQw-7MKLcuXxyiOWQfgsExY,240
|
|
218
|
+
angr/procedures/linux_kernel/mprotect.py,sha256=VitInJywG3ddPjzLSj5aBdp0rw7AP-Vf125x4Htc-pg,1479
|
|
219
|
+
angr/procedures/linux_kernel/getgid.py,sha256=qy8ti9arKQLsfhVX0eUbmxrq5vJ2JGUoIoP47AaVMkM,408
|
|
220
|
+
angr/procedures/linux_kernel/futex.py,sha256=6dL-pgRq99kQhWdF4MYzbXVuX0OnMufNnoDAYxYHbEs,537
|
|
221
|
+
angr/procedures/linux_kernel/munmap.py,sha256=JdU63sih2P1TggH-5jJljojtgr3ffb5Y2_N5Wv7SpUI,221
|
|
222
|
+
angr/procedures/linux_kernel/sigaction.py,sha256=DULtiR0qLPxAcvXW6L-HJHsrsAW6sq5qTJSslgB8hTM,649
|
|
223
|
+
angr/procedures/linux_kernel/getuid.py,sha256=r1FA4Tgf1wbV0u8SxEYrFCaGHKVQcPqklufffnkUqxw,408
|
|
224
|
+
angr/procedures/linux_kernel/access.py,sha256=Ec8h37Lo8dagpW6zTlip654J2MWKib3PfJbHh_6igkk,604
|
|
225
|
+
angr/procedures/linux_kernel/__init__.py,sha256=mxKcfdAKNQqpejNlUlOH6HCz9FhZA2vRsZ3VhX7RwCY,111
|
|
226
|
+
angr/procedures/linux_kernel/gettid.py,sha256=2LgnFKGael4PwIMD5OVI5lh318cS2za56ymNkF6C0Y4,176
|
|
227
|
+
angr/procedures/linux_kernel/getrlimit.py,sha256=hqJ-31gEprnEwW_oBvkTv-Mh-LH5_M-507sjterG3ZQ,792
|
|
228
|
+
angr/procedures/linux_kernel/fstat64.py,sha256=1LAeatlQfbMZXIeXyKzMaWndotNLEwIMWaK2bsb15Gs,6275
|
|
229
|
+
angr/procedures/linux_kernel/getegid.py,sha256=8Izk5w1G-9JZ4Xye4wVqdfs65-JAX9OaOE-CTVr4Khg,410
|
|
230
|
+
angr/procedures/linux_kernel/stat.py,sha256=5svDukJpbjPi_iylaUCbGYVSohrPFgZi0KiwiYGa8cI,707
|
|
231
|
+
angr/procedures/linux_kernel/lseek.py,sha256=5BsCQqf5NPzaMHL2E1xBqHQ9IINIObmWDHjZ_vzLH0M,1231
|
|
232
|
+
angr/procedures/linux_kernel/fstat.py,sha256=_Zbni4rUoV4QwhN7LJ9vcWFCVzJhS5zpOj_mz_HshLk,5080
|
|
233
|
+
angr/procedures/linux_kernel/unlink.py,sha256=0eWndqqiqDpkM-C5hHSzvNbw_usOKi0o2RwmNTAVzf0,725
|
|
234
|
+
angr/procedures/linux_kernel/brk.py,sha256=3bJVpm1TJEA8KwcL_d04uHrS9rpwmt5QqvhSrcDdfAY,364
|
|
235
|
+
angr/procedures/linux_kernel/sysinfo.py,sha256=0qqPAgb7UbokZTDm2rg1OOJauqStBt5f_9ayWTt3ac8,2242
|
|
236
|
+
angr/procedures/linux_kernel/openat.py,sha256=taur2Lp2Hrc2bCDyoyXRTT1R14ygSlfKelQHyVfdYoc,1068
|
|
237
|
+
angr/procedures/linux_kernel/sigprocmask.py,sha256=m1aI0375WdvQjqhLSszwltLgBu-vu1x5DbGsk9X6Mfs,769
|
|
238
|
+
angr/procedures/linux_kernel/mmap.py,sha256=c5dDq8gtUosGzvRWJc1oirprQtBFdoyt-hMeFgAB5A8,533
|
|
239
|
+
angr/procedures/linux_kernel/vsyscall.py,sha256=fB-6aZbQGAQGFwwLzBIT5VKwR4jF3gPMmbhDQthXMNs,529
|
|
240
|
+
angr/procedures/linux_kernel/cwd.py,sha256=fEwsCtVi9bw_BIpgGKTV3A5OcgQxa5P2dWkPAy8q8zo,754
|
|
241
|
+
angr/procedures/linux_kernel/uid.py,sha256=u148uA78gR1hCcsIwGdwfQJAjoFvDvJmNJBjnsJlC_0,799
|
|
242
|
+
angr/procedures/linux_kernel/tgkill.py,sha256=OvD9xNz8imc9IbQ4Xh6ojHw9R9p45ljX0NLm_9jZRkU,277
|
|
243
|
+
angr/procedures/linux_kernel/arm_user_helpers.py,sha256=nXewrJZullW_H_mq_h_Z-y47IotYNiZs9mocFQ6OMSw,1593
|
|
244
|
+
angr/procedures/linux_kernel/iovec.py,sha256=nPdZSZUVE72nYAcI-2s0_0imYSyI3Uvpkltnz68XnZg,1512
|
|
245
|
+
angr/procedures/linux_kernel/getpid.py,sha256=xR2X1oEaeyd7jkK4ARpwbjNjn6nUuK92JpdgyyODiJ0,264
|
|
246
|
+
angr/procedures/linux_kernel/geteuid.py,sha256=YoBt-8fwKUCEeNgL2RPeKHzp2xoH1N7eJZmsSEKVcWM,410
|
|
247
|
+
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
248
|
+
angr/procedures/testing/retreg.py,sha256=0M0VoWzRzcEPeVHAxniDJ_Gl1Srz8OCAFu8EEKXAH-0,192
|
|
249
|
+
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
250
|
+
angr/procedures/advapi32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
+
angr/procedures/msvcr/__getmainargs.py,sha256=qSu9jLhpWs032l_cXEYcoG0pE4ccAyiZ91CrJkpcHfA,726
|
|
252
|
+
angr/procedures/msvcr/__init__.py,sha256=HZKMuGEl_geCewMyOA6IDVE9P1G2gl4SKskj6ZclG8A,116
|
|
253
|
+
angr/procedures/msvcr/fmode.py,sha256=1hU-QXEbpHXDP2UMGDe3gibWEx5ZjwdN001gO330_64,793
|
|
254
|
+
angr/procedures/msvcr/_initterm.py,sha256=wG0oPytYRLrj-aJL_H0fpf622Ep98QxBbt86zou2q3E,1398
|
|
255
|
+
angr/procedures/glibc/scanf.py,sha256=npdNUGE9bQ-L30f8znTsTbjQErGCwflAVV_RqC0HJiU,291
|
|
256
|
+
angr/procedures/glibc/__ctype_toupper_loc.py,sha256=f_7QVgjBwqX0C-J1FLPSVwTcYJy8lnRUrdMAkr984rw,795
|
|
257
|
+
angr/procedures/glibc/__libc_start_main.py,sha256=as8GrAth_w3Ol-fht9SjE-x6I8H17ndH9kfXmq40OWQ,11338
|
|
258
|
+
angr/procedures/glibc/__init__.py,sha256=NjNtLNzO6f70tY9_LCv4-QRIC4g7o9y5CELaX1VUMyU,110
|
|
259
|
+
angr/procedures/glibc/sscanf.py,sha256=Bsyxy-_FYIQDZzQ5NsFnUtWQWfPTKyVT5wKqpjlZ6cI,166
|
|
260
|
+
angr/procedures/glibc/__ctype_tolower_loc.py,sha256=OrdiNrTKy_4DbWjxTWh_tfkg6dHOMLriT7k2FAe-goE,795
|
|
261
|
+
angr/procedures/glibc/dynamic_loading.py,sha256=uainl-wSeREeGbKGXjOlpwTxrQgjFfcJkZ0lnzOWR_s,695
|
|
262
|
+
angr/procedures/glibc/__ctype_b_loc.py,sha256=_TrQI77tcrItX2F56os-4PvWHiPfCQCGeFn3XC1aSW8,770
|
|
263
|
+
angr/procedures/glibc/__libc_init.py,sha256=xYokoQsAc-eJQPW4sp6EQR9X22mzF3-47-TUb-vGhQQ,1555
|
|
264
|
+
angr/procedures/glibc/__errno_location.py,sha256=2vsI8nPVYcvxGTg4UZ_cEGJT-Xh3Gk_nbV1PSObr-nE,192
|
|
265
|
+
angr/procedures/libstdcpp/std____throw_bad_alloc.py,sha256=Bh_-pYuVi40UXLe-mBTVFsaO57uOcRK18b80hzrVf_A,356
|
|
266
|
+
angr/procedures/libstdcpp/std____throw_bad_cast.py,sha256=2YjCeCvzNXjUVHZUwCSug2yYYkcv8i-DmiseOdZl40E,355
|
|
267
|
+
angr/procedures/libstdcpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
268
|
+
angr/procedures/libstdcpp/std__terminate.py,sha256=T2B62c36bXYw2LZTnTVZR6AUAm0iTRCKZpftNq09p4I,303
|
|
269
|
+
angr/procedures/libstdcpp/std____throw_length_error.py,sha256=apAKhJl7zeCUy3qUVYAj_AXyjn7VZ-C-gKMm8HHSCJQ,414
|
|
270
|
+
angr/procedures/libstdcpp/std____throw_logic_error.py,sha256=D_seFwmOf4V0mVvhlCkKUmC8d0uZrc8J0WE3J7UjWx8,413
|
|
271
|
+
angr/procedures/libstdcpp/_unwind_resume.py,sha256=V9CdNDKXYVLAWSPNKzZSfyz0SVOW-mEBkzic4J_EqxY,216
|
|
272
|
+
angr/procedures/java_util/list.py,sha256=MvJTbb-rt4yxGx1q-KGdludNasQrvcgm-dJXH83DB0E,3780
|
|
273
|
+
angr/procedures/java_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
+
angr/procedures/java_util/random.py,sha256=Z6nllNeL8Bi6Kn75Ibll2VbIsbL4Nip60HElTrGYlL4,428
|
|
275
|
+
angr/procedures/java_util/map.py,sha256=qW0PDY0fV4s2NbYPLingBh8T0CBUgJUd7fVdxhPdzf0,4891
|
|
276
|
+
angr/procedures/java_util/iterator.py,sha256=wuuTb_3RTFtngg1Z94H5VVt3f4eydio5O2n6KkQwo0s,1656
|
|
277
|
+
angr/procedures/java_util/collection.py,sha256=f0PHJ_gidA_7Ai0kL8slNYn43RBZu7G1yz0VzdHNxDc,1280
|
|
278
|
+
angr/procedures/java_util/scanner_nextline.py,sha256=2iQSwthgWr4rP1X7knsAEY0lJaC6foWoH2G4xUjsklU,843
|
|
279
|
+
angr/procedures/win32/VirtualProtect.py,sha256=s3jMPE6ocI3Jsj3cvK0XHsBhp4GdLYN5KM5lIajR5Rg,2309
|
|
280
|
+
angr/procedures/win32/file_handles.py,sha256=JLurfZB_1Kes6Y3T0Brg4yuVMA-REretLYwjkrewqKw,1468
|
|
281
|
+
angr/procedures/win32/heap.py,sha256=halSL0nSotRrM_NMXOAfExF-k9hKrAWNSkVkiLMnCgY,1582
|
|
282
|
+
angr/procedures/win32/system_paths.py,sha256=4tAvnu18QX5bVoFhax9hLQXuHm3yilzNEpsSZ6puWCM,1305
|
|
283
|
+
angr/procedures/win32/ExitProcess.py,sha256=WN6td8zkDlCXVzicc4kORhZMpuXhByO8xpNCcev9oRY,169
|
|
284
|
+
angr/procedures/win32/GetModuleHandle.py,sha256=O4-EgFPKSo0G9B2c_JVaCe_awUPkcXfsZ_iArLEq7Ns,939
|
|
285
|
+
angr/procedures/win32/IsProcessorFeaturePresent.py,sha256=0xJ94Pb7LxmgGESekm4Hz1YoMXm7OeOCdQBAxwWBZA0,236
|
|
286
|
+
angr/procedures/win32/GetCurrentProcessId.py,sha256=bRa27LzA5eKtEjW73xTl8R-gxN2HkjKAW_HhkyCxxa4,140
|
|
287
|
+
angr/procedures/win32/GetCurrentThreadId.py,sha256=_hcWgPsLLl84gn_A_GPgrfxxIgdh1vOifsA-xOZYhMg,139
|
|
288
|
+
angr/procedures/win32/sim_time.py,sha256=kybnCxSg3RDf7IWr95KMCznyxnGz2VtAKnS3gZ3eFsY,5332
|
|
289
|
+
angr/procedures/win32/InterlockedExchange.py,sha256=XieQWeaxVw7kuepvk1P4BezmYIfEdNloxI9awWf8LEc,590
|
|
290
|
+
angr/procedures/win32/__init__.py,sha256=i2g6NRy5D4oId4UJ9TQJ3sDv9EyTdbXORjIwyAyMIwA,86
|
|
291
|
+
angr/procedures/win32/GetCommandLine.py,sha256=5n2GKgkZF0c7qrRZfZAdGiKIi6ZxWaRcucOc3VZgnjA,263
|
|
292
|
+
angr/procedures/win32/dynamic_loading.py,sha256=vXLQpVWaEPKsRXEr4j7MBKwyy11j5OA8TsbZHQ0Nwlk,3451
|
|
293
|
+
angr/procedures/win32/local_storage.py,sha256=N_aPM54HzoOwYyyOVcPAWad-nhAfFbt_WkoisGW4Zro,2167
|
|
294
|
+
angr/procedures/win32/EncodePointer.py,sha256=L-vtUDW7kQrs8feTAc2IWxPWnojfvGLZe4Mxr1X7Y6E,132
|
|
295
|
+
angr/procedures/win32/is_bad_ptr.py,sha256=keK74qbuBNnZ7BTaEcl8ktL4fdiv4oe-6QSG8POB_lQ,792
|
|
296
|
+
angr/procedures/win32/GetProcessAffinityMask.py,sha256=eituFNnUKgWRHIetCuPVZHOD1gVXCfZ_1cYbNdu7i2E,1155
|
|
297
|
+
angr/procedures/win32/GetLastInputInfo.py,sha256=20ohcwvRA2t7BZoY7-VUosCPTfNpCjmPC-rmrx7Y1to,1127
|
|
298
|
+
angr/procedures/win32/critical_section.py,sha256=GPCS5WUwbcoUL4P7HpdjeEp99rgC41YmDfSnHH0LzfM,312
|
|
299
|
+
angr/procedures/win32/gethostbyname.py,sha256=4QzxOXJClPnNQvmnMo-lstJVsNGMhS_pseKpGSuM-BQ,327
|
|
300
|
+
angr/procedures/win32/VirtualAlloc.py,sha256=gZhmQ7c-vHaxv35ge8rvoCZTY6dxEp_ThyVVtyJk5HA,4020
|
|
301
|
+
angr/procedures/win32/mutex.py,sha256=BfqGCEP07VrNDj01fsfHRajGJJTjgvCNjPomsw56TeE,212
|
|
302
|
+
angr/procedures/gnulib/xalloc_die.py,sha256=j_uDbnhlfnBjhtlSmdOIPLJBCA0fS21TMTaRfTtZpo0,216
|
|
303
|
+
angr/procedures/gnulib/__init__.py,sha256=LfIHuKNyX42xAML-Y-sjy2gNzf2FoBB8Wf8CJHmZdOM,115
|
|
304
|
+
angr/procedures/gnulib/xstrtol_fatal.py,sha256=Bxu2onAIqzHjHdxrTqjr_CbHpXsGkw299jx6GN0QZ2w,274
|
|
305
|
+
angr/procedures/linux_loader/__init__.py,sha256=2hycjSB-GjXuMj1bfp2KuMlKjqVyNs2jPI0uI5S0XZY,115
|
|
306
|
+
angr/procedures/linux_loader/sim_loader.py,sha256=5kQCRLf1QMURe7bFrA8yWEkSQs2CSgZNuAD9Zvv8-CM,1911
|
|
307
|
+
angr/procedures/linux_loader/tls.py,sha256=rHkJGV2y5wLH4dsO2FNtB2AHEK9d0ggXp0ZrIQs2ksI,1565
|
|
308
|
+
angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py,sha256=888soY-c3XG6f6EroVbieLa4Blcy_CBsNVIIO633bww,164
|
|
309
|
+
angr/procedures/linux_loader/_dl_rtld_lock.py,sha256=DZASn_X95fmPnGVLzBPIu4GijiWkpi0NP6urpqt__EU,372
|
|
310
|
+
angr/procedures/definitions/cgc.py,sha256=WX-RrLdw1oin2yRQ70VIiZX4-X76VoRrPAdCR5p0W6U,551
|
|
311
|
+
angr/procedures/definitions/gnulib.py,sha256=o6ia8dnGctNPjnW9YuEzwf9WEszWLC2awXwWrklC_-Y,1171
|
|
312
|
+
angr/procedures/definitions/linux_kernel.py,sha256=HQwqZVuqB1u8Rj7D7u4cEUG-q_H1GAjPmoQsGuUrF60,279108
|
|
313
|
+
angr/procedures/definitions/macho_libsystem.py,sha256=i-IiLWNQRQFCSG7ZuBZILEa9gcd7ZLGk9HPizIHHgz8,488
|
|
314
|
+
angr/procedures/definitions/parse_glibc.py,sha256=oMWlsI4Jc4yulFYUhyUpwUyEXTtGWmi24tU7w1d1q4A,2038
|
|
315
|
+
angr/procedures/definitions/parse_win32json.py,sha256=3NZKq7R2W1mmeGoAEw5ywVYy4nMn0syFRAoxaFuZEu4,111288
|
|
316
|
+
angr/procedures/definitions/__init__.py,sha256=Wm1Tx79uoAgc0ayv2e_LMuQero2A_5woEM0ibPiCkbs,43638
|
|
317
|
+
angr/procedures/definitions/msvcr.py,sha256=zxnFu5Ia-qEe328jDddEeTg22fSb3EIE7dpNTWUaFsA,698
|
|
318
|
+
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=fm1YzjVHYqehq-hneWEAywyxcqZ3cXDIzqV7XXMyOz0,1830
|
|
319
|
+
angr/procedures/definitions/linux_loader.py,sha256=RHlld7ReA6IZvyXULXT6-7WqyxkSgUWzgnF-jjlamsY,267
|
|
320
|
+
angr/procedures/definitions/types_stl.py,sha256=4fsMlaDLQ7IZfL0jQX4ZvTkqBg5tsoeZAfSwupZm1gI,816
|
|
321
|
+
angr/procedures/definitions/libstdcpp.py,sha256=8FPxbGRz30Hkccx2-u7MTG29ExPS2HWlL-56dqpRt2k,778
|
|
322
|
+
angr/procedures/definitions/common/glibc.json,sha256=Anrj7KMgJeCdD3g1-t9XInEnoKq14R6dTxh-QP7jRA0,408237
|
|
323
|
+
angr/procedures/definitions/wdk/pshed.json,sha256=ZcmmUV1H-2c-mI6W6dY6nMLnmDCC5EbIs0QinyvRsAs,1722
|
|
324
|
+
angr/procedures/definitions/wdk/offreg.json,sha256=FZ6U7XD1KZPzxgtgJylRbO0sw5bcHJntWKpkchPapiU,9593
|
|
325
|
+
angr/procedures/definitions/wdk/ndis.json,sha256=CBLTeOby2j_SOP_uPLTPkAcN9ryAiJPg8_bZJw63udw,37456
|
|
326
|
+
angr/procedures/definitions/wdk/clfs.json,sha256=bDXQbYnvXIWvQeL7agM3WNxNS6fRyW_Yi9KDYBlnYyI,26417
|
|
327
|
+
angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-4.json,sha256=nkET0iaXAHF_qSgyF4N6G1M0i7QtPEPCo2u28so9taM,1016
|
|
328
|
+
angr/procedures/definitions/wdk/fltmgr.json,sha256=Y600As4TlJ6Uq2ctAHNa8rLjEwBdrX-APl6ewWiZ1As,121894
|
|
329
|
+
angr/procedures/definitions/wdk/hal.json,sha256=RxvRTa5sumqXXPJai2YrdssJD5fbWeTQi0ap0QQRBxw,12103
|
|
330
|
+
angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-6.json,sha256=W4md-By6xMbKPnSvDQG4Sqh5C6HSrl_61NHY9GWGbQM,460
|
|
331
|
+
angr/procedures/definitions/wdk/gdi32.json,sha256=DID6fdKAQF32pGh0TwQ6NpsOydk1-TUrZwMcTrrjSSU,44939
|
|
332
|
+
angr/procedures/definitions/wdk/fwpuclnt.json,sha256=9QSH4cFSyHabUvW5vCiI7DRB4jbF4rKApt-1s6S_vdE,70302
|
|
333
|
+
angr/procedures/definitions/wdk/ntoskrnl.json,sha256=9g6OJDoo44kWvdvB9MA8l0zbBJrtX9WIw5lNFt0hZDw,681544
|
|
334
|
+
angr/procedures/definitions/wdk/fwpkclnt.json,sha256=W_0xXafBO0bheqpLGXOO0tVORvx2KXMwrhPaoBUJTko,1225
|
|
335
|
+
angr/procedures/definitions/wdk/ksecdd.json,sha256=xYYdocSCK8LBeQYFlhZ7ZKiTK-ju26KDWRIQiw7rBKQ,13262
|
|
336
|
+
angr/procedures/definitions/wdk/secur32.json,sha256=M9aMvWxz7zzLtZU4X7Ue5tNJOuNtHvHWHz81e7DvTNs,3432
|
|
337
|
+
angr/procedures/definitions/wdk/vhfum.json,sha256=TvGj_ghAX5yD7Y916F77szl8GgeIN4b4wJOyb22Ys1Y,1590
|
|
338
|
+
angr/procedures/definitions/win32/dxva2.json,sha256=zwZJzv_s6nN0Y-pregtGvd_GTRQllAU6HKjRCcGg9nA,14662
|
|
339
|
+
angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-6.json,sha256=m_7ueUWFO_2KhFnKqs53rcQHjThOz_C4X0tswUSSrEc,407
|
|
340
|
+
angr/procedures/definitions/win32/opengl32.json,sha256=48u9LADfZTjtuM6IrtcF5VhgadiXe7QNkcSa6fdC9RI,84161
|
|
341
|
+
angr/procedures/definitions/win32/api-ms-win-net-isolation-l1-1-0.json,sha256=rkqeHQPG9odD7gPiWUHg0NC0tuSfMOlNgfEnttxIXZ0,3655
|
|
342
|
+
angr/procedures/definitions/win32/dnsapi.json,sha256=Nko8Ji2JVYnLApINAcNsthCLr9hAzi6IqswSgb-pD1k,25124
|
|
343
|
+
angr/procedures/definitions/win32/directml.json,sha256=7bgd88pnhuBO9QrzjlcBxf7hSl6Fdk-Ngr4Rwsf54eM,1181
|
|
344
|
+
angr/procedures/definitions/win32/dhcpcsvc.json,sha256=CEvPfM2Z0d2JL2-WT1agnyO79-XaxkmyycFLOuB6H7E,5880
|
|
345
|
+
angr/procedures/definitions/win32/mscoree.json,sha256=_Kay5VSjIc7PeZpNqfCxv2CmNcvVZdRugLQnj-EbstQ,12917
|
|
346
|
+
angr/procedures/definitions/win32/api-ms-win-core-apiquery-l2-1-0.json,sha256=UxSBow7p1ZQWY_PAK_85cSdFIV7aEsJsC2h-2xg-dmM,420
|
|
347
|
+
angr/procedures/definitions/win32/computestorage.json,sha256=PviD7MV0fAZRRWUfM5wKSu3IA-_TZuONCNbn6qBb01o,3929
|
|
348
|
+
angr/procedures/definitions/win32/d3d10_1.json,sha256=JamsqLvGZjrS_Dep2hecAAvHl3mmvxj-B2SeglmnXXI,1683
|
|
349
|
+
angr/procedures/definitions/win32/virtdisk.json,sha256=ixbE5nUCU_LuQhyg6WBzGXDYgh936CRgiJ9urw_n8nA,13592
|
|
350
|
+
angr/procedures/definitions/win32/api-ms-win-core-errorhandling-l1-1-3.json,sha256=enPwvbSaNxnCCLQNRzLdQ4cy8VLKM1mQoNAIzNXXxhE,488
|
|
351
|
+
angr/procedures/definitions/win32/rasapi32.json,sha256=tCGoqruIJSIHXs4t3qFr4W4dmIvVo4SzFHyuZWnHWmY,33443
|
|
352
|
+
angr/procedures/definitions/win32/bcryptprimitives.json,sha256=jFgz5p4u_90CH7dkDwZcvzez_LfTFiRGqAa2vEr4hB0,864
|
|
353
|
+
angr/procedures/definitions/win32/ddraw.json,sha256=4XzTKepq9KHFK-LRqceOpfwne7T7Fb2k-CvqsHd6gtU,4100
|
|
354
|
+
angr/procedures/definitions/win32/ondemandconnroutehelper.json,sha256=nw6m-58i3Xixy5AN9oPDxyNmYcG60lMGA0XHhG4sf_0,2201
|
|
355
|
+
angr/procedures/definitions/win32/api-ms-win-core-marshal-l1-1-0.json,sha256=id6sbJgh_ixxr3MBNGiMdRbvTOQE3buBXUr9HUWdTWE,1735
|
|
356
|
+
angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-1.json,sha256=q7E5_K8QwFAqU7zu2KCeyLl75nF2A9z2MS0OY44emB0,2089
|
|
357
|
+
angr/procedures/definitions/win32/ntlanman.json,sha256=BmwF5sEYXmhOyziCJr2ieM-u4EI6oLDgueHjzms8jYA,4328
|
|
358
|
+
angr/procedures/definitions/win32/msacm32.json,sha256=5Z5EH1X9k5sGKj5ep48OysmwnGVgKJ8TZ1WS-qMpFUY,20117
|
|
359
|
+
angr/procedures/definitions/win32/version.json,sha256=AKkInMlKuYiHm5vbuqu4GgQx2T9xzE5VXuGOPUtRzTk,7270
|
|
360
|
+
angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-4.json,sha256=ON1VmlUyyce_y1sUdXcjnlB99K2zFeTsHJynSyfDxsc,818
|
|
361
|
+
angr/procedures/definitions/win32/wdsmc.json,sha256=YxUFpCujZqo8RXJUuK841eRnm-ssyF7MGBEFU0FMZQU,2319
|
|
362
|
+
angr/procedures/definitions/win32/kernelbase.json,sha256=q0-CrDyqKQUsXq27TbEH82UFgyIwnKE5RuNgvKpJyWA,2686
|
|
363
|
+
angr/procedures/definitions/win32/oleaut32.json,sha256=V_zIqLWWgbqHV0viF8wcKppLDrgbTF-zAl4HGoy_toU,141711
|
|
364
|
+
angr/procedures/definitions/win32/wdspxe.json,sha256=iEK1RGMBwmoj1z8xzgy6VvkQMjhMwD2cHcfAMMqRWRM,14080
|
|
365
|
+
angr/procedures/definitions/win32/opmxbox.json,sha256=-yaF19v80rlABLmY-qlBNpYFwjnj8QFnOh0SezyZ5Io,994
|
|
366
|
+
angr/procedures/definitions/win32/rtutils.json,sha256=THx3YuFjpjdP6hrA34EdlUkPH6z0W8Mu1Rh8tshsU9g,16102
|
|
367
|
+
angr/procedures/definitions/win32/xmllite.json,sha256=ks58JRIOnj-shGLlOfarxm0I6OvoBiZwH95rdK0qeJw,2974
|
|
368
|
+
angr/procedures/definitions/win32/cscapi.json,sha256=upf_qBEJ_IuJLWH8HDD88ixiwq_IJulBxZifxOJ0050,1369
|
|
369
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-4.json,sha256=qx0i3DvSqocidUxQV_-XggMYcKmel-9qf_Eg74OG_ho,4360
|
|
370
|
+
angr/procedures/definitions/win32/mf.json,sha256=kqn1sDK3aK8HO_RxOsgzT7X_8Ju7Bu9WBo-Yp6GOqO4,20882
|
|
371
|
+
angr/procedures/definitions/win32/psapi.json,sha256=rOlcXhlHtElWnnoNyiKW7m0Z8jSTw_0yO_7x2BiRBFY,10943
|
|
372
|
+
angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-6.json,sha256=D1HwepKDctQDiBF7b80Ivg3bd21sett7Hr8HmYrQI9s,382
|
|
373
|
+
angr/procedures/definitions/win32/_types_win32.json,sha256=ykyBZq_yGS0eixaLbJl2z1F_LfIq942kG5vEwDpvy4g,10504544
|
|
374
|
+
angr/procedures/definitions/win32/wininet.json,sha256=JSLHiMGR5mp7IGxHCOt6dond1dAt53P8YM-jO8AQVBE,128370
|
|
375
|
+
angr/procedures/definitions/win32/activeds.json,sha256=JbMa59euS8tTUGS9A_-v3hxjArmIPx_dfFS6o2gg72k,8393
|
|
376
|
+
angr/procedures/definitions/win32/bcp47mrm.json,sha256=cjaqbqMZoFBNnP2QZK1pwBP5iE0D046RJ-Ayx-_bBuE,816
|
|
377
|
+
angr/procedures/definitions/win32/d3dcsx.json,sha256=FMQaEMNTwxDm49WULfpkNOOmyrNGYc6OaeEpf7RdPWc,5142
|
|
378
|
+
angr/procedures/definitions/win32/inkobjcore.json,sha256=ugvsmvdWb6hci_iif_QaVIZJXRHI5iBTkp8kygVVrPs,8934
|
|
379
|
+
angr/procedures/definitions/win32/comsvcs.json,sha256=AnYmpXzEhhfgJajKBmiqpfdqKEIeCb-MtmaKNKbHoIw,1994
|
|
380
|
+
angr/procedures/definitions/win32/eappprxy.json,sha256=7B1KjtXx-t-0TuSilsGeS6Z9wsKqYsDCm_MfAYpkr4Q,10029
|
|
381
|
+
angr/procedures/definitions/win32/wcmapi.json,sha256=AXk0uFyTqK4XAEzTLoj7SSaA67ygKFGs_M58sDLfG1Q,2420
|
|
382
|
+
angr/procedures/definitions/win32/mstask.json,sha256=PYmTn8QLCeDzxByL_Tx2UK0mq-5HCz-XCZXc1cHVuGQ,936
|
|
383
|
+
angr/procedures/definitions/win32/wer.json,sha256=Wyc2diPrTxcTaZRlIP0wsCGf0lXXVb8TidQ3YvO2tJY,7363
|
|
384
|
+
angr/procedures/definitions/win32/ninput.json,sha256=jY-apyC_e5sxMqjTxVieI3jCHy0dxJ88z1m8OarHyh4,11248
|
|
385
|
+
angr/procedures/definitions/win32/winscard.json,sha256=gVBIM0JjxZMU5ZNkVvsxWObSAem6kJsPuDGtL1VcPq8,32209
|
|
386
|
+
angr/procedures/definitions/win32/api-ms-win-core-state-helpers-l1-1-0.json,sha256=TN3ryMYwLmFST8YIqza46F-9QUTXiFdk6MwAnurUJ0c,1069
|
|
387
|
+
angr/procedures/definitions/win32/api-ms-win-core-enclave-l1-1-1.json,sha256=RfvuSSbvk7PPdGgF50jZxhfGfqhB3xf8rxR2z88glPU,983
|
|
388
|
+
angr/procedures/definitions/win32/api-ms-win-core-comm-l1-1-1.json,sha256=rYr_dnoxz56qRyvoFkJ5d6rm60M741fCidDYZs0EZ3w,565
|
|
389
|
+
angr/procedures/definitions/win32/credui.json,sha256=5wR1DeG8EEO2fqZmiixany6qiGe1F7MfhRqC7CFlQVk,12776
|
|
390
|
+
angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-5.json,sha256=2rIt6vSBOktMwwTeg23yI9nLp3ywh-BkUngxhNR_Bss,1279
|
|
391
|
+
angr/procedures/definitions/win32/dbgmodel.json,sha256=JiSj3-k8QrBHCq5uZ1rc53VWiv_eP4DVG2HQPQTz6VY,505
|
|
392
|
+
angr/procedures/definitions/win32/msdmo.json,sha256=gwgAcXEL6IA9n6ssams4G7XdVTxgqxK2QtZO7Wglm3k,4819
|
|
393
|
+
angr/procedures/definitions/win32/dwmapi.json,sha256=F0BLJAiP_1LN_tM_Ooladr5BGgh76BktjtfL38Zwi5A,9724
|
|
394
|
+
angr/procedures/definitions/win32/dwrite.json,sha256=FjSL-0jcYhxrAgCcng3qW0_1FzVektfzBE3RCK35Suc,587
|
|
395
|
+
angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-0.json,sha256=xh9_SD-UO1M3zxjGKZH13X6iQvqPAtWGRn-g4J3Klyw,1203
|
|
396
|
+
angr/procedures/definitions/win32/ualapi.json,sha256=7BPP33ycRXfrqBlqhfvEjLyTzZeGRhRahuI09cIzrVs,1195
|
|
397
|
+
angr/procedures/definitions/win32/keycredmgr.json,sha256=Qf6kU_4jh7XVeVzZD6zROfT3u9EMPWNY32m-8V02_nc,1614
|
|
398
|
+
angr/procedures/definitions/win32/computecore.json,sha256=UaHZnM3xfm9Ho3cP-kPTqR-3jPmOmD848Uqq0SFZ8og,18784
|
|
399
|
+
angr/procedures/definitions/win32/tdh.json,sha256=kmtKOpZAnsKMVXxW-93cm4YgZSW2FdeX43mSi5O9P7g,12503
|
|
400
|
+
angr/procedures/definitions/win32/eappcfg.json,sha256=2sZVVBfD01MU2_6icGvEzUKDHPaCFkx991Md9uAN_t4,10980
|
|
401
|
+
angr/procedures/definitions/win32/traffic.json,sha256=E3fchV9tHAhDOosN8CpU6e9Yd7Rwxrj_9KEtGmH74gQ,7893
|
|
402
|
+
angr/procedures/definitions/win32/urlmon.json,sha256=SB9f1uCY05pc7k02t4XR6pF-lCi-ozwySXZAh5ETxDg,32182
|
|
403
|
+
angr/procedures/definitions/win32/ws2_32.json,sha256=YGWlXiIfPzPbz0yU1rpihQlhKVnAlek_PhY4rnzWd8c,69716
|
|
404
|
+
angr/procedures/definitions/win32/msdelta.json,sha256=-Oja9ncNiaEs4M9LxWyfkZcLWreHbvTgbbAI0gWLuuo,7748
|
|
405
|
+
angr/procedures/definitions/win32/dsprop.json,sha256=mCmUom7D0uvuF3DBUKybiYuKy4A40rTAsVd3Jq5e1ug,2316
|
|
406
|
+
angr/procedures/definitions/win32/p2pgraph.json,sha256=pfxPE9eEY20jEP7zxDlV93z0RP-Juofy1AkoueslKOI,13580
|
|
407
|
+
angr/procedures/definitions/win32/xpsprint.json,sha256=8LBdnh4D9-mSDKJOiws93m8o0cW9gKRxF2kixt7qK3o,1806
|
|
408
|
+
angr/procedures/definitions/win32/icu.json,sha256=Hsuo-Z21gnwmd_zgVwVlgYBbmrxExm4KBl21K9NgbLI,388938
|
|
409
|
+
angr/procedures/definitions/win32/mswsock.json,sha256=4qSr_8LqEEoHCjLFzPnJJn8TrjiW9DLTmCdPiRBY3BA,9309
|
|
410
|
+
angr/procedures/definitions/win32/clfsw32.json,sha256=GhSkGf4PX6QCqxvTtw3gB3rWFDdlH4kClQo7Y1PqQXY,26180
|
|
411
|
+
angr/procedures/definitions/win32/wsnmp32.json,sha256=3mU0iZcB8y8-Cq1MsTUwKojID6LIMyU6K8qEiDRejzU,18813
|
|
412
|
+
angr/procedures/definitions/win32/mgmtapi.json,sha256=KOusDjobc8bZmn13BvKnGW1X9_EY3BIEghfJBU5k7LQ,4356
|
|
413
|
+
angr/procedures/definitions/win32/mapi32.json,sha256=ZohWWSgm_3SOlHjnOV9rc3tWocwZuGxjzVRbgJIEhxU,28965
|
|
414
|
+
angr/procedures/definitions/win32/txfw32.json,sha256=gOhhy4fmK4XoOcLGk5VJ5ux1zrVLkZJFTgwAXRIqsSU,4163
|
|
415
|
+
angr/procedures/definitions/win32/shell32.json,sha256=3m4CYXNBMgAh8i4MOBzkNPVpAOediYVaLRuE4H3dKYs,88375
|
|
416
|
+
angr/procedures/definitions/win32/clusapi.json,sha256=6QeNk3Yq0_7p6Vgvd44UWqhCBnXPJ6Pi1JfEw3YRpcI,110872
|
|
417
|
+
angr/procedures/definitions/win32/rtworkq.json,sha256=lWNaDPu3tdz5gtNaG-8Lg7zOvPRV6fibPEVur_LL7W4,9908
|
|
418
|
+
angr/procedures/definitions/win32/mdmregistration.json,sha256=UoMjJgf9oZcCRNQ1GhALK2vpi9wRjJivk_86DPShH8Y,4740
|
|
419
|
+
angr/procedures/definitions/win32/api-ms-win-core-slapi-l1-1-0.json,sha256=GuprnGXKuawmhmewoP6ZihAS0dHyWcoJzifRnqnO7wY,746
|
|
420
|
+
angr/procedures/definitions/win32/sti.json,sha256=R3Aoua5tz6y71VKsSIduFK3Ql9gPCCa3A0rsTy_LjwY,606
|
|
421
|
+
angr/procedures/definitions/win32/drt.json,sha256=UUgUot_PXXAhDU_2JkzlJwVomH9su7CBnWOnfXf26v0,5679
|
|
422
|
+
angr/procedures/definitions/win32/avifil32.json,sha256=eg0zKnC75wbOapQqJELRftk7NKcGRXfJANJ3xEa_DAM,21510
|
|
423
|
+
angr/procedures/definitions/win32/efswrt.json,sha256=NK4mOoqUWfh8n7W73kWxNXACCznDcVCnpo1jBmo9Iw8,783
|
|
424
|
+
angr/procedures/definitions/win32/srclient.json,sha256=pLHG08ZMUuBa_75e416ClC-Rn7RGLeUiPuavumgtXkk,409
|
|
425
|
+
angr/procedures/definitions/win32/rtm.json,sha256=oCdRfcBPkRuV8-g4cXK7dDH64mZpn2jjRH7yLOPHMmg,39040
|
|
426
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-7.json,sha256=s7C9tNadM9YeUPvISQ8chZ-7lkMb5ib0amTcSHTsDc4,1805
|
|
427
|
+
angr/procedures/definitions/win32/prntvpt.json,sha256=cmsgDrXPw00TxtZVuLzJjalGFwDGL-n0pd1skV9kyDw,4996
|
|
428
|
+
angr/procedures/definitions/win32/api-ms-win-core-synch-l1-2-0.json,sha256=SP97OcvXm3_kzYMoumX1wxLh2C3yaPLbKPlUMBeSPVY,1068
|
|
429
|
+
angr/procedures/definitions/win32/ole32.json,sha256=q0ozLypHmMdFtbUjXvXhSFZeQh9gfUA-DdUZVF5ETEE,120639
|
|
430
|
+
angr/procedures/definitions/win32/elscore.json,sha256=i-2FQOq9Gvfv5gvbKEt0nqsc_kOZZmzZkqd7cV-Whd0,2190
|
|
431
|
+
angr/procedures/definitions/win32/slc.json,sha256=niXgb2fOkQBHbWvtA133QQGZj6AIaJ3xlB-Odz4E1wA,15688
|
|
432
|
+
angr/procedures/definitions/win32/api-ms-win-core-psm-appnotify-l1-1-0.json,sha256=mzd-6lnml7I3F0GBQWFIPaGx6T8CVp2fHOpoFpKiqQ8,1038
|
|
433
|
+
angr/procedures/definitions/win32/mdmlocalmanagement.json,sha256=aqkmNnYVdFxm8Oc39jW4Ig93umQd6sI4uHoG0Wc_Rpo,929
|
|
434
|
+
angr/procedures/definitions/win32/ktmw32.json,sha256=NuTCtCYetryxJ28tGKosIDdLrqG15t-lyRFHERe-4kg,14138
|
|
435
|
+
angr/procedures/definitions/win32/msvfw32.json,sha256=TRa64Ppd6ro9fQ1BA9ysHsxOB0pw089eN0ygh8SS8nE,16839
|
|
436
|
+
angr/procedures/definitions/win32/sas.json,sha256=knNvfcAsVtZJkU2m26vGlAiBsN0SiE343xct54NKA5Q,365
|
|
437
|
+
angr/procedures/definitions/win32/hhctrl_ocx.json,sha256=J6-dGPD96FF4jVbONrfsaiNbTtrX-A4XdFzOzrjBi6I,1026
|
|
438
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-2.json,sha256=oHruSh0Kg5ld31GBTm50txjQFJjgeI4QjY-dCXi7kM4,4991
|
|
439
|
+
angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-1.json,sha256=DssvlKhcR30dzOg9Cg4s09pHNT0WXsugDEMdo7KrC5g,3476
|
|
440
|
+
angr/procedures/definitions/win32/snmpapi.json,sha256=OLuK5rNnZ3O0yedN7EHylElFgPGAoba8v3ZibvrYG18,6948
|
|
441
|
+
angr/procedures/definitions/win32/wscapi.json,sha256=bI7WIvvaLaaafaGPa-L5aOG65g2nrZXuGsiMVDrQJqU,1895
|
|
442
|
+
angr/procedures/definitions/win32/computenetwork.json,sha256=lySIA2oMuf_VBrqJz2jl7yqJZiWFG5f_45bIQQSJ2y0,16820
|
|
443
|
+
angr/procedures/definitions/win32/mmdevapi.json,sha256=X-jgUIo7XgLUjijWaasMDugUBeMEkkmRzg7COqUxnTY,826
|
|
444
|
+
angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-0.json,sha256=p-AxWOkVRhozWV29xdDPfbI0Fq_7pWSbY-VB12O5U_c,445
|
|
445
|
+
angr/procedures/definitions/win32/winhvplatform.json,sha256=WkDR_3p-gYClEIxT-KP0irAZnE0kgaO0oZgmLfD36gM,43855
|
|
446
|
+
angr/procedures/definitions/win32/tokenbinding.json,sha256=UOiRmIKuK1fkRQAAS_Uhh8CiLTv50E-VP34OpHwlJl8,4728
|
|
447
|
+
angr/procedures/definitions/win32/query.json,sha256=8mW1Q7XBcaWwEwLFZU7lFXrV17U8MDNIBY5TvJLvdNQ,1693
|
|
448
|
+
angr/procedures/definitions/win32/windows_ui_xaml.json,sha256=cNS140to-3XvWWYMcJ-mEfdn-JaDqesH4YAKEu5eLjQ,1208
|
|
449
|
+
angr/procedures/definitions/win32/mspatcha.json,sha256=feZUidahHPyh0CR28xlgJ6CXulODmwdIscE7AZPoyZg,11511
|
|
450
|
+
angr/procedures/definitions/win32/webauthn.json,sha256=dfEbhla2YQMAwoc0yWDTcgRkARdz_y7q9eKVUfOhAsw,4746
|
|
451
|
+
angr/procedures/definitions/win32/mscms.json,sha256=7-zREduWutXAX493FoULn975TTDYSu_EHtq4EBrULDw,38524
|
|
452
|
+
angr/procedures/definitions/win32/api-ms-win-security-isolatedcontainer-l1-1-1.json,sha256=osKOvDZNM1-OXwuqAQG7rzqmyT0n6cvochDqT3Lu9mI,552
|
|
453
|
+
angr/procedures/definitions/win32/websocket.json,sha256=mWxzkTivWQczAtP0DSMjM9pIODbPnRv62i8jiJrqLDM,7390
|
|
454
|
+
angr/procedures/definitions/win32/wlanapi.json,sha256=INZA5xhGa6UopbG5i24iv4DuX9x7_xtcKaRgLfTT6PY,31135
|
|
455
|
+
angr/procedures/definitions/win32/srpapi.json,sha256=9oA-gsgSPkUGM9XtqVAPXifRq1jOSJglzTexNEZapDc,3503
|
|
456
|
+
angr/procedures/definitions/win32/uiautomationcore.json,sha256=kM8wgfzz8-3PqBHUtvIbMo-U9KEVANwVwzZXNbFw52k,32339
|
|
457
|
+
angr/procedures/definitions/win32/oleacc.json,sha256=RboTh67kZcb1KGxIT6idx5MCStmhvDh_j71RrOCOcew,6961
|
|
458
|
+
angr/procedures/definitions/win32/wofutil.json,sha256=IYwaRNipQ0FxRJXYEdquFU9iEFtYWvA9IgtP9eJ8_P4,5045
|
|
459
|
+
angr/procedures/definitions/win32/mfreadwrite.json,sha256=aJjNwYcW6M3413lV4-WBUNpzXnrR5Qv_ZPSUT2mVCek,2220
|
|
460
|
+
angr/procedures/definitions/win32/winusb.json,sha256=bn38QQa_8AQPxr8sQ99qpKYuDllHkQJ3LBBf9ON5oLo,15614
|
|
461
|
+
angr/procedures/definitions/win32/certadm.json,sha256=g7xhcKCuv8M0aXLlfDswjchEmH7VD9eoaRLvMxLsjnA,6936
|
|
462
|
+
angr/procedures/definitions/win32/dxcore.json,sha256=1D7CzUQ_GiuIuapbkNDtyNZozrGoueWHJyFZG_heeO8,523
|
|
463
|
+
angr/procedures/definitions/win32/rasdlg.json,sha256=Y5jKLW6CMHurUGu1qwYACbFx_22itLSvmtCpvtnhOzA,2396
|
|
464
|
+
angr/procedures/definitions/win32/pdh.json,sha256=1dJTSkOULJjIuzaYLPCeQhgwLGH4hXuUx0wSlldmXr8,42262
|
|
465
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-expandedresources-l1-1-0.json,sha256=wJ1MIMUrCvcI2Xzkmr-MNSz4jUQYV_rVIwjZrb1Ag_c,887
|
|
466
|
+
angr/procedures/definitions/win32/fltlib.json,sha256=RZffs20mdpQ-U5NQKsDtOVbPAT51fQGvNShHLfNUHvc,11951
|
|
467
|
+
angr/procedures/definitions/win32/api-ms-win-core-handle-l1-1-0.json,sha256=k3Z2P5tiMZBFwJmgWjwxwF_gggVeGeiEhprLOal_SWY,501
|
|
468
|
+
angr/procedures/definitions/win32/peerdist.json,sha256=JqC0AaUk2ssbSoHDP0D7lK6K_wwS9DXSokNN9K5KjgA,15026
|
|
469
|
+
angr/procedures/definitions/win32/dxgi.json,sha256=T235nK7MCQwRk7iGCw5Ph8Ol5hAJBHQenT9sm2xNyIo,1914
|
|
470
|
+
angr/procedures/definitions/win32/chakra.json,sha256=BFD_kOWnsCpHU-yAXvw1vGRy_2lca6nTrfv0GNDbAMI,29182
|
|
471
|
+
angr/procedures/definitions/win32/xolehlp.json,sha256=uOvKNj2NqdEIQMc9Wl6BDzezM0N3LmxJhbho94mDUOI,2709
|
|
472
|
+
angr/procedures/definitions/win32/dbghelp.json,sha256=MkYcPTIhq4n8kz8-Ar4WyKKWk2g-wLzYzHkokK0H-Lc,111852
|
|
473
|
+
angr/procedures/definitions/win32/iphlpapi.json,sha256=4K2fnxQBFz1xSdWsyh8lGJGD6GRjj_1dc-L5bmM3N7I,76266
|
|
474
|
+
angr/procedures/definitions/win32/msimg32.json,sha256=3MhcSMyZ724CTrQAO8Xzo1LGjQaZOZoxpeZm5GrDoWg,2074
|
|
475
|
+
angr/procedures/definitions/win32/d3d12.json,sha256=GqV1L2oiOh0EufSn4QrhdUgAN6O6E5uBKPeswtdCxpg,4050
|
|
476
|
+
angr/procedures/definitions/win32/compstui.json,sha256=Wz5vtPpcxeYh5TgXd_oGuC76kSgPNX2RlJ8V5VVaE-M,1979
|
|
477
|
+
angr/procedures/definitions/win32/tapi32.json,sha256=tJMPyZWWkfs5tEmdwkvvfQ302rZ0rfzzk2ugjML6lcY,105061
|
|
478
|
+
angr/procedures/definitions/win32/cfgmgr32.json,sha256=sLTYD-mwnB5307nIADPoWS349naacwwb4mzygYDpyqs,114564
|
|
479
|
+
angr/procedures/definitions/win32/msi.json,sha256=r2JmRv5yM2u-yQieQ3kiVUXhbC0m1LTWRv1CYJmHSQs,114598
|
|
480
|
+
angr/procedures/definitions/win32/cryptnet.json,sha256=uMlHpHzB7i90RA_e5LpAtldZMWYuXhe_GkNY9wBtx0k,3547
|
|
481
|
+
angr/procedures/definitions/win32/rpcproxy.json,sha256=Qb3xrrgZPiJpnYjAn0avPJ_fa43HIwl1UtTYlVqoVjQ,1293
|
|
482
|
+
angr/procedures/definitions/win32/rstrtmgr.json,sha256=cFgQWiwPD5pGiRqkZqzGSOxKDhl3UY2xRhshC4NQNe0,5037
|
|
483
|
+
angr/procedures/definitions/win32/faultrep.json,sha256=Mqr50c0-9mgmq1-R-2PXqFhF616v-BeWl7LSznjM5Xo,1191
|
|
484
|
+
angr/procedures/definitions/win32/windowscodecs.json,sha256=t-g2e_d4F3b1SaGAtEnkiQAEpaxcDEHC0PcYnO67SGU,4602
|
|
485
|
+
angr/procedures/definitions/win32/api-ms-win-security-isolatedcontainer-l1-1-0.json,sha256=rtrwZ5jp0CC0yglVJOAG6vVPY2l-qu9vPfzKL0cFEOI,491
|
|
486
|
+
angr/procedures/definitions/win32/ndfapi.json,sha256=uQgAm5n1Fr3Y17Akqa76JU95Q2YKeIS0Z5qvAMW81zU,6150
|
|
487
|
+
angr/procedures/definitions/win32/dinput8.json,sha256=mlT9aZiZX57mDjkrWvc8EZjId4-phIvTTjCHOO46-bU,700
|
|
488
|
+
angr/procedures/definitions/win32/davclnt.json,sha256=4LKBeVRnhgVT_SyzQ15LsCk-UtbP3yBWEoD7Y7gYExs,7463
|
|
489
|
+
angr/procedures/definitions/win32/msports.json,sha256=cE4GabpNJ2-olTahv_pDgf1nC24hQ5aPrGZ59y6RgVQ,2250
|
|
490
|
+
angr/procedures/definitions/win32/wsclient.json,sha256=iJb3B5x-6sIJc5BqLdj4HKtSo7iRSHzt68IzHQ8hLfY,942
|
|
491
|
+
angr/procedures/definitions/win32/winhttp.json,sha256=2CSlSmMnc_2GHup_AS-JI2SWwKEJDH7ruq9Gdd-yn8k,25262
|
|
492
|
+
angr/procedures/definitions/win32/wmvcore.json,sha256=BaIyxYY6ZwMfgQBIPc_3w7pB83uu36bvKSWgal3R1Oc,3264
|
|
493
|
+
angr/procedures/definitions/win32/api-ms-win-core-wow64-l1-1-1.json,sha256=DXpyRO2Fh2DFNUCafDE8F9rrUHUygaO3eN9iIDcxZVA,1259
|
|
494
|
+
angr/procedures/definitions/win32/odbcbcp.json,sha256=1gYdW5HBqIUHYxz51pip9nZ5yQCf0rAZMflN9PFHjqc,8221
|
|
495
|
+
angr/procedures/definitions/win32/advpack.json,sha256=7qlIf3cuLA0kxpVfZYM1poH1Z_5BUzN9n9fM3tAWPv0,21780
|
|
496
|
+
angr/procedures/definitions/win32/api-ms-win-security-base-l1-2-2.json,sha256=Nr2nviG9557PaIQBnmE_zs8zfRndsNnyDG1PAWgDPtg,863
|
|
497
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-3.json,sha256=QvILHzolXAuLDogLYdPLpxgcK9-0y--3reuDRXuNRh4,1817
|
|
498
|
+
angr/procedures/definitions/win32/fxsutility.json,sha256=hELDruOeLjxGsGTn55feNhTORabZts83ou6soTqWI1k,618
|
|
499
|
+
angr/procedures/definitions/win32/msajapi.json,sha256=yCtbY6OGk_n-LibLMrtgBbV9PWAxwZe4WjC28YCsGYg,189932
|
|
500
|
+
angr/procedures/definitions/win32/wintrust.json,sha256=jHS6QKmZqx-ss9FQsBved0WGNLdGDxxHGoOcwCYH6pE,24240
|
|
501
|
+
angr/procedures/definitions/win32/mfsrcsnk.json,sha256=vHCqKRUgAuoU8vUI9vM3X1ny6XLVQHDR20uF-OdWX78,1042
|
|
502
|
+
angr/procedures/definitions/win32/winhvemulation.json,sha256=kZHenKHyBBuNRKKKImu6S40E4wPYcwQVdovdYIfRV7k,2426
|
|
503
|
+
angr/procedures/definitions/win32/api-ms-win-core-psm-appnotify-l1-1-1.json,sha256=pks3Se1yZUx3X3iFgWnJAkFT_Z7nwkmllOccf12uenE,1061
|
|
504
|
+
angr/procedures/definitions/win32/magnification.json,sha256=aNh6QKn56bmwv5PJOj2X4g1AwoOadVtRDrKcjB2T4ZM,6646
|
|
505
|
+
angr/procedures/definitions/win32/api-ms-win-core-realtime-l1-1-2.json,sha256=4wVa1C-mmIat6p38FFH_KjgI9LYL6YuBlgvb9Imv6Nc,1400
|
|
506
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-6.json,sha256=Dukm0h5qaw1I-pG3DY7uaIZ50_TuWyCEtBQyjG3rNLU,3442
|
|
507
|
+
angr/procedures/definitions/win32/loadperf.json,sha256=EvzBDFLX91GCoejaCMv_Mvt5mw8s9TWq7KxruX7QGIw,4066
|
|
508
|
+
angr/procedures/definitions/win32/api-ms-win-service-core-l1-1-3.json,sha256=-UoFXocyk3EOcMGLR_diRzf3I-WDTuIamIUUhdH5RAE,696
|
|
509
|
+
angr/procedures/definitions/win32/imm32.json,sha256=Bc8apuRdtwVnxnSRbcntgfOSRvCwR2qhprxMiKFJZtk,27311
|
|
510
|
+
angr/procedures/definitions/win32/setupapi.json,sha256=bbKZVRxqXLxyitNJ-j_LruoeO3w3YiRpP2WvLUZ7SIU,171140
|
|
511
|
+
angr/procedures/definitions/win32/netapi32.json,sha256=SnuIygdBoa4L_dC1MqHyHoeMzx2GLtrB6vzB3I9U_OY,95598
|
|
512
|
+
angr/procedures/definitions/win32/api-ms-win-appmodel-runtime-l1-1-3.json,sha256=hrK6uXQ4onQD130x4m6MtTkZm5zZup7kwYFX2x-ss_I,2832
|
|
513
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-0.json,sha256=DPYf1OJhJBduunku_rVsJTy4rE-3u8f-eok5rzI2CvA,3881
|
|
514
|
+
angr/procedures/definitions/win32/mfplat.json,sha256=92JsMeScVVYmJuJuwlrfRnRqPP3zExle9Wq-hl6jhZw,54636
|
|
515
|
+
angr/procedures/definitions/win32/d3dcompiler_47.json,sha256=X0_3CK95GU66dLGzDMmuKtV-qPyo8DWXN2cDFK8IneM,14845
|
|
516
|
+
angr/procedures/definitions/win32/amsi.json,sha256=bJYtCQbsUlH9EId7hc5dO9fR87y6SY4UCwAbR-P2dTY,2774
|
|
517
|
+
angr/procedures/definitions/win32/windows_media_mediacontrol.json,sha256=dXBRipKw3An7b1-rVmkR8eeg1r9IS7ozKxwpuLLLe48,3097
|
|
518
|
+
angr/procedures/definitions/win32/api-ms-win-core-backgroundtask-l1-1-0.json,sha256=O7ZduslVRkH2PX_1X8dJXylVAUUZve2pueDoMKeSTNU,520
|
|
519
|
+
angr/procedures/definitions/win32/winbio.json,sha256=HBLaRzrUckLyz98yXEyXwgwQLB80D32X5pOBlAVebAM,24892
|
|
520
|
+
angr/procedures/definitions/win32/propsys.json,sha256=z5IkrhTudqxXJmu43EzWogQRS3k_C5gqL_p9nqpmEo8,81500
|
|
521
|
+
angr/procedures/definitions/win32/glu32.json,sha256=DZjPlNrlaSM_EsgQeLPdfpv30HeIIix1ABHn2kruuFM,16180
|
|
522
|
+
angr/procedures/definitions/win32/api-ms-win-core-featurestaging-l1-1-1.json,sha256=iiyIVTZCy0ZHbqxrHxl1WEpNcduVaSHhjAgYMCm4zfY,690
|
|
523
|
+
angr/procedures/definitions/win32/projectedfslib.json,sha256=2WE6bIHDrjPNG2q9pjE4QD1pmsHGtqODJqibqTHEcfA,8183
|
|
524
|
+
angr/procedures/definitions/win32/mfsensorgroup.json,sha256=DURyW8yaUeBaCIhLLdqxWu4XrKONMroQxx5aBPmXyiQ,4369
|
|
525
|
+
angr/procedures/definitions/win32/oledlg.json,sha256=imHzbdkRBw9l4vbBLGJ8fp9f_C5_IQTzn6RzzV3EfmE,7041
|
|
526
|
+
angr/procedures/definitions/win32/api-ms-win-core-realtime-l1-1-1.json,sha256=ku1jdyEYY1C9HXwZh83eYBXRCrbkCWCNWfwwbVMVC8Y,942
|
|
527
|
+
angr/procedures/definitions/win32/mtxdm.json,sha256=DuSzJRTJR5Ozs5nehvHbRblInKPbHnx-XzBHKCvQltk,434
|
|
528
|
+
angr/procedures/definitions/win32/uxtheme.json,sha256=PLuflg_Lz_AdSp5IXwhaqm-CPOfnacxtT99wCeKMTiI,30237
|
|
529
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-5.json,sha256=yi7dW4_-dnUHCo8TKRctT9SeWYS5qWabaMHnBIzNVbc,1689
|
|
530
|
+
angr/procedures/definitions/win32/webservices.json,sha256=xJ91rrSs5jlTyb1mRR2DoH0ouCUowk30C91sGcl0EKM,104437
|
|
531
|
+
angr/procedures/definitions/win32/esent.json,sha256=Io_8P_x-IZSqV0mRHZuDzf6CrmP363DrdZV85JBMLzk,105933
|
|
532
|
+
angr/procedures/definitions/win32/api-ms-win-core-path-l1-1-0.json,sha256=JApLjD8_mt9Ri52g8WeQfcEl4WRxvuFxRgkn_3pd9GM,8883
|
|
533
|
+
angr/procedures/definitions/win32/firewallapi.json,sha256=ND9-pBg3DSnkqvj8EXBPQwCSFztpPAOz-T30sJF_x2U,1513
|
|
534
|
+
angr/procedures/definitions/win32/apphelp.json,sha256=05EMCEEgaGPqdl3idegTClj-0WncZji0WypsctmRvyg,585
|
|
535
|
+
angr/procedures/definitions/win32/sfc.json,sha256=eC1s3SJ2KaQuKzoqti3TvTzl9Oi_wvCcCfNvahdnaC8,2133
|
|
536
|
+
angr/procedures/definitions/win32/sensapi.json,sha256=uUdyM2slStPGSbVKjilJ8k0MUzDu5sv_bs3B8r6e3Z4,1020
|
|
537
|
+
angr/procedures/definitions/win32/d3d11.json,sha256=1Z7QGHjAifeEzLTTBBRE3OdAlqWjn6l_tQzhm1qLjVc,3348
|
|
538
|
+
angr/procedures/definitions/win32/sechost.json,sha256=-k9G1JIJLeEWJmsBKUFVLNRPn_kFFB-lOSvaiy-IUwg,1179
|
|
539
|
+
angr/procedures/definitions/win32/drttransport.json,sha256=bIH2jlbwLIqOdvvCdc8SFdelPX5meLNNxAwNXsYbVlc,958
|
|
540
|
+
angr/procedures/definitions/win32/api-ms-win-devices-query-l1-1-0.json,sha256=upcqYGOWP6kkz1r4gZMoiJ_6PoSb7ilrb7DXNpmbK_0,6988
|
|
541
|
+
angr/procedures/definitions/win32/resutils.json,sha256=--463k-BfAOxS-_uFVbO-C75sULpi1CrAuFPTTERdMA,56677
|
|
542
|
+
angr/procedures/definitions/win32/vertdll.json,sha256=nW0R-zr00hBuAGlj45QsMvdJoOMX5U-DeMGN9nk3iSE,3495
|
|
543
|
+
angr/procedures/definitions/win32/sspicli.json,sha256=EiH3jfsO9N1W04XCGbjWHDdqpte4w2YaENSFZk7LDbo,2854
|
|
544
|
+
angr/procedures/definitions/win32/xaudio2_8.json,sha256=udITH-d0I27t-6QFaqE6rWCr7MJZXa5WrajQxqsQ_RA,1541
|
|
545
|
+
angr/procedures/definitions/win32/hrtfapo.json,sha256=HaorTeC3tuOnMVAlSqYmSLRSESjxefRc8c46iC2A3Dc,502
|
|
546
|
+
angr/procedures/definitions/win32/drtprov.json,sha256=kHA1xw87wXtz6vpPUVBcMUgnZQ_4Au4f9Bs5-Rg-PbM,3220
|
|
547
|
+
angr/procedures/definitions/win32/gdiplus.json,sha256=wj9uW1-DaMTtOEQMMkX5bDysxj_29WmhB8lfwUHx7tU,241485
|
|
548
|
+
angr/procedures/definitions/win32/certpoleng.json,sha256=eBPJAhfAwX3tsWbtOTojAAlMQF8CyQDOmzUo68r8YqE,4383
|
|
549
|
+
angr/procedures/definitions/win32/iscsidsc.json,sha256=Cz2CWgepAliKjMi-R-bGLeWa5uoUJS-81An_U67_b9w,32883
|
|
550
|
+
angr/procedures/definitions/win32/mspatchc.json,sha256=OAepTxTxrRs4QCYR3GZFE3ELI1qw24XA4NpoA4YyGh0,5725
|
|
551
|
+
angr/procedures/definitions/win32/licenseprotection.json,sha256=Q3GTLA8jvSxjFqZU2e6ibMlbL_OeBHRqgVh67smTNh4,1094
|
|
552
|
+
angr/procedures/definitions/win32/slwga.json,sha256=DfapxZntRVl1IZaCF9B-rPMCPaHWWNkuK9ogii2lOmY,623
|
|
553
|
+
angr/procedures/definitions/win32/api-ms-win-wsl-api-l1-1-0.json,sha256=Bk0FYQ4Ik9LOf3VVwqtaw540XBE7VQEyycVjkeSl4YY,3082
|
|
554
|
+
angr/procedures/definitions/win32/dbgeng.json,sha256=ZSpup7DQL5QEwq3UaW5XvfzWKUHIZncu0VyPRbxC5pY,1672
|
|
555
|
+
angr/procedures/definitions/win32/api-ms-win-mm-misc-l1-1-1.json,sha256=5pxWyFmGE92Gqt6vobcV95boQ64yZFlyvyK7tcOpjLg,583
|
|
556
|
+
angr/procedures/definitions/win32/ntdll.json,sha256=TJ_NRj7ufcfxuRJeWJPkvRImMDbvzVQr6Zb_0jvwHXs,31486
|
|
557
|
+
angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-3.json,sha256=1zWbUEmIxc8QrSyfS_g9NcEzysq3FDHjCFH515k10NQ,658
|
|
558
|
+
angr/procedures/definitions/win32/scarddlg.json,sha256=fUENVjLqH4NmOD7p9txyQAVLc6DydhW2e0hBqJKQm5M,1222
|
|
559
|
+
angr/procedures/definitions/win32/dsuiext.json,sha256=m6S9eMhPeNewIPoe-Kbyfifaps4u40MLqg-kkGXEQDA,1372
|
|
560
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-8.json,sha256=k5KF_h97m0-gNwccuTY0lfdBAG_GGpyQ0QgHQm8wul4,1830
|
|
561
|
+
angr/procedures/definitions/win32/odbc32.json,sha256=HtwY_qj7fazCh47mZ367fH6-vlpBm8DzARTcSwr4x7M,82588
|
|
562
|
+
angr/procedures/definitions/win32/winspool_drv.json,sha256=RzChrU9bbbtnmBk0MhmhkyEFb_t0jkTWYs0Dx7v-_tA,73792
|
|
563
|
+
angr/procedures/definitions/win32/comctl32.json,sha256=jnINWEuudavLFKD2AmzjXnqZ08PzYOaDzhGHIBBBshg,41503
|
|
564
|
+
angr/procedures/definitions/win32/rpcrt4.json,sha256=tSj-Bq-53yuIdncPhY5Ij-9EPpyezWokZrMbKHjKFgk,174456
|
|
565
|
+
angr/procedures/definitions/win32/usp10.json,sha256=f8Jbg3KCfIDHUN9Y3kl01Z_LJXzHFpfAQRe0G5Yga3g,24920
|
|
566
|
+
angr/procedures/definitions/win32/wldp.json,sha256=_Q3YjLgyuxWjGYVs8kcuweLKZut_A3paB5bTBT1kBzM,4052
|
|
567
|
+
angr/procedures/definitions/win32/kernel32.json,sha256=ii7FTNGlo_-WuZ_lL2t5KJNwyti4OCojd9u1Zrf4g3o,531625
|
|
568
|
+
angr/procedures/definitions/win32/api-ms-win-core-file-fromapp-l1-1-0.json,sha256=JPw6QGY6oGN4SNGA8v92_6GjvBrvefcq22TmMgEGlXM,4536
|
|
569
|
+
angr/procedures/definitions/win32/mrmsupport.json,sha256=N8CzxNmFYf3wUmdROY0SQMjGZC7FuHRBtcLp8ItgyGw,12474
|
|
570
|
+
angr/procedures/definitions/win32/api-ms-win-devices-query-l1-1-1.json,sha256=zMQKst6nLTa-3QXIyDoJHqy0hRtmMKPy48iIlU4Vv6Q,6662
|
|
571
|
+
angr/procedures/definitions/win32/dhcpcsvc6.json,sha256=s2eNQME7SYgiHlE0eUaRm5dE69y1FFE7YGMgaLI7sqk,2745
|
|
572
|
+
angr/procedures/definitions/win32/d3d10.json,sha256=NItzu-S7PNZIpzS_LsOT2q5xZlhsyVzuCYUfC91Exrw,12801
|
|
573
|
+
angr/procedures/definitions/win32/schannel.json,sha256=GLMQ4egsE_8J2B3smeaek8anhx4xF1yOwZvVbY4iECs,3565
|
|
574
|
+
angr/procedures/definitions/win32/netsh.json,sha256=UfuFUmiL3q_luykF23R8ujYuVGN3zdEm3NuGR1mAEMU,3122
|
|
575
|
+
angr/procedures/definitions/win32/ieframe.json,sha256=siZa96yZEWnhN3smKSdW7VaLFxeFsP_Sf08L550uxAE,10433
|
|
576
|
+
angr/procedures/definitions/win32/mfplay.json,sha256=Qnxs41uD7H7DZC0J7oCniUWuV_3VCW8Y3EewBbiOhss,771
|
|
577
|
+
angr/procedures/definitions/win32/api-ms-win-core-util-l1-1-1.json,sha256=7QPeZv6rrex5Q_Oda3GjOxoUxwKOJIs9ZXK9TFPRo4Q,956
|
|
578
|
+
angr/procedures/definitions/win32/dciman32.json,sha256=EBgNsIndw472OuLqB8_WJL17jNtRhyAW97j-Pg9AUd4,6894
|
|
579
|
+
angr/procedures/definitions/win32/spoolss.json,sha256=GInXt0PI4HmwLrpwn3c2Oz_J-D3-jjCInIuwNn0OuqQ,9584
|
|
580
|
+
angr/procedures/definitions/win32/ncrypt.json,sha256=oG0LiB2boW8vQT-OwFGoZibVjp_qsP_fo0tmV-TVpG0,20355
|
|
581
|
+
angr/procedures/definitions/win32/evr.json,sha256=w18vCGPom66eNOpEtRqgGCF2SUyLGxi-S4bOjSpdOKc,3049
|
|
582
|
+
angr/procedures/definitions/win32/msctfmonitor.json,sha256=kPWEfal1wiM7fYJR1GS_6QTZqu3tQOviH9ekwmFkiFU,836
|
|
583
|
+
angr/procedures/definitions/win32/wdsclientapi.json,sha256=7lxyu2_k958t2Z6oVg5U2938-d4qcFd3cBsL7alqJVg,13399
|
|
584
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-4.json,sha256=JZLgvZ0N7x0VpTuPqgHzsTTvIcbLY3oneTDwGmKWzsM,931
|
|
585
|
+
angr/procedures/definitions/win32/wldap32.json,sha256=L5hJ0QFCYIPexpSuxwmhzVIUwokVmEEvSiFWFgluwng,110432
|
|
586
|
+
angr/procedures/definitions/win32/rpcns4.json,sha256=jG3Ia8v20NBS1WS0QeeSsBpSjmQoCVRchhYCCNLnEl4,24462
|
|
587
|
+
angr/procedures/definitions/win32/netshell.json,sha256=Diw5aLZHwa6Uz1W_wB01eTVDU_dTRONIiTnNzvuGB9U,629
|
|
588
|
+
angr/procedures/definitions/win32/api-ms-win-core-featurestaging-l1-1-0.json,sha256=hMx_Eoqr9zPkTRj1wDa9a7MzX1EyNgL71he6aERhu20,1947
|
|
589
|
+
angr/procedures/definitions/win32/normaliz.json,sha256=yOdby3ANUfRsxKsBkqfXDAFnewGLDAce_SYydLk9VJs,1219
|
|
590
|
+
angr/procedures/definitions/win32/mssign32.json,sha256=EuxnKbcpDPuLmLrCyU2HlVyXvHpzk611gcNxUtSuR5g,7900
|
|
591
|
+
angr/procedures/definitions/win32/cldapi.json,sha256=KLDD-xn28rtB9nPMI0Z6dIkZnJcf9O2fRceNquJGonQ,14611
|
|
592
|
+
angr/procedures/definitions/win32/mprapi.json,sha256=DDmZYFBpbxXw7VDGg4w-_Pln4WPzrAAbHtLdM4xFn8I,49852
|
|
593
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-tcui-l1-1-1.json,sha256=nSODIz479va5g-kXhHe5FGfs0ml47TbCfwyteFDkIWU,1306
|
|
594
|
+
angr/procedures/definitions/win32/imagehlp.json,sha256=7f6RCUNwIe0HhAqvTnRPOSkK0NH3QLWTdoRaX4ZIrbA,10872
|
|
595
|
+
angr/procedures/definitions/win32/httpapi.json,sha256=mrBDFrvOYEU4MWEuYMlp7_dibt8S0QlgZuumpiHWqp8,20765
|
|
596
|
+
angr/procedures/definitions/win32/cryptxml.json,sha256=6TNO4s48VN8pPkWcYn5gzS41fzfTiiKu9AZsLBvVxws,9758
|
|
597
|
+
angr/procedures/definitions/win32/gdi32.json,sha256=tL-nhayoR1Fs2KqM5PLtyUWZ-AdP86sBX_W19ElmpT0,150058
|
|
598
|
+
angr/procedures/definitions/win32/mi.json,sha256=NHCje3H-BKHTKG-laVOLyYqfOeJvtyKtxA7EYgqnqfI,718
|
|
599
|
+
angr/procedures/definitions/win32/wevtapi.json,sha256=GS84GWoTlcyY3vR4p4o5P6fwNNvvsvjM_2DcYxNrXeg,15918
|
|
600
|
+
angr/procedures/definitions/win32/tbs.json,sha256=Q92V_YcjE3ng7Jxhk64t1uwQ6RRQTRA3k4Rh3t2dyso,5251
|
|
601
|
+
angr/procedures/definitions/win32/cabinet.json,sha256=QcrPoWl6pSj4c7HQatUNSALuSNjOqEYGy1HC2-QU-7E,17435
|
|
602
|
+
angr/procedures/definitions/win32/user32.json,sha256=Xt-s-YQIY00R0S8_abBf4HcvX3W-SF9VMrS-kUAJv3k,252507
|
|
603
|
+
angr/procedures/definitions/win32/gpedit.json,sha256=GJ_zFFdzhwlaB1Cz8PXojJ3PQITr87yNZLaNfX4k4-U,1733
|
|
604
|
+
angr/procedures/definitions/win32/vmsavedstatedumpprovider.json,sha256=QcScJAosZWS5rJ03_wkbvAC6cV3c0wVhzbgWh53UHn4,19244
|
|
605
|
+
angr/procedures/definitions/win32/wlanui.json,sha256=Te5uQXnvTJKp7oHldEXT2t1Yq_5WgxUN3symD1fDWNU,856
|
|
606
|
+
angr/procedures/definitions/win32/crypt32.json,sha256=w910UoSs1ZgH-QhabSKOx2HkFtEjioagMeoJTUr2zsw,119982
|
|
607
|
+
angr/procedures/definitions/win32/ntdsapi.json,sha256=FwGMKqaa7u-lO53ooZ_H4wLSA1XKKMPpWytaZ0AA1tY,36178
|
|
608
|
+
angr/procedures/definitions/win32/wsdapi.json,sha256=GHfOvN_ae0C7qiyoF45CKtx7itj3laQmEmQfUl6Yy6Y,12445
|
|
609
|
+
angr/procedures/definitions/win32/dmprocessxmlfiltered.json,sha256=UTxsUyqvw9AoToober8AHy3TjRX6-80_xjUVZWnfq30,696
|
|
610
|
+
angr/procedures/definitions/win32/api-ms-win-core-sysinfo-l1-2-4.json,sha256=Iq67Ps3JF3Mv474Fs_TI6NAMppBmDhmdglHsVG-ToQ4,966
|
|
611
|
+
angr/procedures/definitions/win32/dflayout.json,sha256=uecpc2j0TWUAnY6TiWR60ZJqygT4af7UYd9pXz2g9Hg,617
|
|
612
|
+
angr/procedures/definitions/win32/isolatedwindowsenvironmentutils.json,sha256=U92lp1VzNrTMyUMAv_VTHJP-nNQRn1dcs6eVAgnKAfU,782
|
|
613
|
+
angr/procedures/definitions/win32/dxcompiler.json,sha256=KDHmVOMXa9lyKY9t1zj1Y1mrHYPjQmpAzCKED8Y6qQs,1045
|
|
614
|
+
angr/procedures/definitions/win32/bthprops_cpl.json,sha256=TW9Yvy1cV2oX64ZZGO5rnwfcbs4IcP35P8z_Lp0hf2g,2612
|
|
615
|
+
angr/procedures/definitions/win32/dhcpsapi.json,sha256=sDybV-_yt501B3TWTQ2Mk6GswEZqyrA3Q9rbhFtI2ak,91361
|
|
616
|
+
angr/procedures/definitions/win32/wecapi.json,sha256=xEZ2MoP5RqUyP7isOA3gfgxStBAFHk1GNHju1xE72bA,6513
|
|
617
|
+
angr/procedures/definitions/win32/ntdllk.json,sha256=B-ViiosX6LccG7_VvLafiiOYxxx5oinAK8sbJlQDdEI,549
|
|
618
|
+
angr/procedures/definitions/win32/mfcore.json,sha256=J1hsKPlY0ouurzMvmH14p-Xovhau7i58nFpByWVLPPU,874
|
|
619
|
+
angr/procedures/definitions/win32/quartz.json,sha256=8YRxDEH4iN51OozbvwxYmm1xR7WwuyOWulrFIyt6xAo,926
|
|
620
|
+
angr/procedures/definitions/win32/aclui.json,sha256=23iVGw309S0aw--RgRTP-o8V9B0c2xpZOA_7bEXpF10,1013
|
|
621
|
+
angr/procedures/definitions/win32/deviceaccess.json,sha256=aNPi8hzG5ZUwMPIjqjGv7BpZJ8Nwudk0sEPlovZHNfo,597
|
|
622
|
+
angr/procedures/definitions/win32/ksproxy_ax.json,sha256=54-dJQvRVMTVrFfOW5ncunzYgRxYx-vsEm_RGDe2zvI,3339
|
|
623
|
+
angr/procedures/definitions/win32/cryptui.json,sha256=dDaDciXdiAVf83uuwJvL-aK39wbRx64YZtF1FxgigDM,4650
|
|
624
|
+
angr/procedures/definitions/win32/winml.json,sha256=L4EI-gSlgZNQ77La9j4HeMxZoInNWZu6wCYj2OQ091g,430
|
|
625
|
+
angr/procedures/definitions/win32/wdstptc.json,sha256=YV2ogOc1iltXHjB0_VpZdMEdONb0-6u7JOKQ5_eyZSQ,3821
|
|
626
|
+
angr/procedures/definitions/win32/powrprof.json,sha256=J32xN80aVoXRy7W5koHJwNHOjliNMj_RKDuA3jCCWmc,36163
|
|
627
|
+
angr/procedures/definitions/win32/avicap32.json,sha256=_AcBNuG7DkBd2bb7GDdFCFVcLBkeDQDfdxZ9AaVpkJU,2290
|
|
628
|
+
angr/procedures/definitions/win32/fhsvcctl.json,sha256=cLZ7pOUD_BQfJTdDlbMtNNJbbGb4Skt8hnOcTwOn8YI,1946
|
|
629
|
+
angr/procedures/definitions/win32/dsound.json,sha256=1urJF09junmneq5lz3tepqYEMF9gMgClmcrp4-J4Tr4,5564
|
|
630
|
+
angr/procedures/definitions/win32/comdlg32.json,sha256=TXAXMwn3UOAZ3NqJp1YvAgP2SAWQ-J5rvyrAuKBqvkc,5096
|
|
631
|
+
angr/procedures/definitions/win32/t2embed.json,sha256=K1KeDlqiEGx_hTRwj_VmI-UePQPwhfxT-TGsz66M8ZQ,9521
|
|
632
|
+
angr/procedures/definitions/win32/windows_ai_machinelearning.json,sha256=4PDs1rRIcot09rxej-Xcrsu2ZS-9Less5NVDIoKjkbI,464
|
|
633
|
+
angr/procedures/definitions/win32/api-ms-win-core-memory-l1-1-3.json,sha256=JxqOLMMOlXRQgIKCUUJrlMQyYNxRwr5KdBz97BD9zZw,2092
|
|
634
|
+
angr/procedures/definitions/win32/api-ms-win-core-comm-l1-1-2.json,sha256=iGra9uFAxXBFtb0HphedPO3ogbASEd3W-lZasnVx90g,641
|
|
635
|
+
angr/procedures/definitions/win32/ksuser.json,sha256=94k6zF88Ixjt0lVWiz2GhYp4TQ7BB0YlIzSIjUJpYjs,3635
|
|
636
|
+
angr/procedures/definitions/win32/mqrt.json,sha256=hg0koHs0QybgKuYctrwRxkIytBlVqEgkixP3RQ5aF8w,13841
|
|
637
|
+
angr/procedures/definitions/win32/msdrm.json,sha256=9uT2pVeK5AlODrlntXmVCYWlBIKrZUVRjfz1WyiSaCg,44250
|
|
638
|
+
angr/procedures/definitions/win32/qwave.json,sha256=SOzXhACQBWzs5skbJmNhf5BDpswe_iTwava6h4ufzdw,4850
|
|
639
|
+
angr/procedures/definitions/win32/wnvapi.json,sha256=O8vfC-W8qg9D7bk3pC5ET6EgUO4b3_btnO4jFkeClSo,841
|
|
640
|
+
angr/procedures/definitions/win32/fwpuclnt.json,sha256=l_xgeFM4tnFSOugbOBb2XigYBGkNKkHxM_OLC6fR5zg,96179
|
|
641
|
+
angr/procedures/definitions/win32/imgutil.json,sha256=tQkFvC_p6DXFs3PEEaL70QyGll6Joc5Iq6MLwIia1yU,3885
|
|
642
|
+
angr/procedures/definitions/win32/bluetoothapis.json,sha256=7ABJEBjkdacV6aMnW83kcNGklE0v-bkyRzj3o3m7JcQ,18709
|
|
643
|
+
angr/procedures/definitions/win32/api-ms-win-shcore-scaling-l1-1-2.json,sha256=T9I1JDREUEa36WQ5tUy6WZwH-ZLDrBRYg4NJyE8AQqc,445
|
|
644
|
+
angr/procedures/definitions/win32/forceinline.json,sha256=nvy6LNUZ7WmE8fVmU2hSDF0fqLsZXQgxp9tnEITv3-o,659
|
|
645
|
+
angr/procedures/definitions/win32/vmdevicehost.json,sha256=YUWqtm_1N7kr-aHRgzSZLJ4XDX8EtlyevmC2VeHlOqI,6035
|
|
646
|
+
angr/procedures/definitions/win32/slcext.json,sha256=FmjE3WX6WYK8Bvu-FNAKoD0C0uzHSxOZRIORDx8iXtQ,2435
|
|
647
|
+
angr/procedures/definitions/win32/verifier.json,sha256=TR8vp933YAkCwCeWvJDkNkoYtTPmdnpFddNABHF9VhQ,1038
|
|
648
|
+
angr/procedures/definitions/win32/api-ms-win-dx-d3dkmt-l1-1-0.json,sha256=lZ0zri--VxMLjSx_fIln5TkpXFY1Djhzjg8Lovp1TSg,360
|
|
649
|
+
angr/procedures/definitions/win32/infocardapi.json,sha256=buyfZuB66_U1F85zRPrfyx8cbFg3KyQVn687ZG9WI54,9008
|
|
650
|
+
angr/procedures/definitions/win32/bcrypt.json,sha256=zrQ_uNGWpkefxUmMY1FeMz7zsFrGzznOS613PUdkPKw,27398
|
|
651
|
+
angr/procedures/definitions/win32/d3d9.json,sha256=9cxCOJgB78CbseTpqd1kU08rr0m-kUpgdUFqfA8gfMM,2927
|
|
652
|
+
angr/procedures/definitions/win32/shdocvw.json,sha256=gXhCjCgoV8tZVShdOU0EbcdDKIEfdRSrF6IeN_f2pfM,1406
|
|
653
|
+
angr/procedures/definitions/win32/userenv.json,sha256=Fxc2a4ZkSzuQv-nJL-XV_czMjEew2OpLwVdHEa7yL80,16791
|
|
654
|
+
angr/procedures/definitions/win32/vssapi.json,sha256=T0UxLZUaKVUrk-kxy5ZvSKUTqa_5zdyDeVtDnZO1-VY,448
|
|
655
|
+
angr/procedures/definitions/win32/p2p.json,sha256=X4penRyvvJvdsaeOUa2uO8jaoEVZANokhJ9wOI43gWw,36103
|
|
656
|
+
angr/procedures/definitions/win32/hid.json,sha256=UmDfQd3GA_mkQNHc6Ee8mkLTqJ3Cry8frWRrqlvyojY,23158
|
|
657
|
+
angr/procedures/definitions/win32/diagnosticdataquery.json,sha256=nnynbs572sCRL1w9p8MLmU0YXOG54zhjjqopUuvOGbM,14261
|
|
658
|
+
angr/procedures/definitions/win32/icmui.json,sha256=cL2CGnNaufz3VxWrlHGwwTnyfbv-dEUsbul2dE_1KIo,662
|
|
659
|
+
angr/procedures/definitions/win32/winmm.json,sha256=N9_P5VbXDPBtcquqSijQxSHm6xq3-wBIZbDK5znuRPs,59670
|
|
660
|
+
angr/procedures/definitions/win32/dsparse.json,sha256=WFHurEhDEQmK73j9i2wqYYab__EKjVoayUY2FnUF7NM,12882
|
|
661
|
+
angr/procedures/definitions/win32/winfax.json,sha256=PDpzbvGn2tPbEIVBf7ijxqb2pgLL9Jq1UYJoQoDrb6I,23083
|
|
662
|
+
angr/procedures/definitions/win32/wsmsvc.json,sha256=s53WDd_cnPWi4FDZrzmQnYOW51_UTdQtmKpLQhHxrMs,17013
|
|
663
|
+
angr/procedures/definitions/win32/windows_networking.json,sha256=XXe2KF--Wb075KgiaFS4jYLfszN-UWfhKyDpfTs1iIA,415
|
|
664
|
+
angr/procedures/definitions/win32/api-ms-win-core-ioring-l1-1-0.json,sha256=Eqw9HA4hf9AogLr5e5ngnMWf5ZrMB7rujkfQ5H_0XBI,4831
|
|
665
|
+
angr/procedures/definitions/win32/xinput1_4.json,sha256=E8cZyI6WU_VD4Ry3q9rnwihji8AcPcJbaDXo5oxDNak,2779
|
|
666
|
+
angr/procedures/definitions/win32/fontsub.json,sha256=aalSuu2tT-NGgAnHAoMsJmKWiPmL6eVsVL9pTHkrvWA,4025
|
|
667
|
+
angr/procedures/definitions/win32/api-ms-win-gaming-deviceinformation-l1-1-0.json,sha256=xBuvcHjJQowwgwg3c3d3kEH0yt_Q5jOnxBlse1snbtA,502
|
|
668
|
+
angr/procedures/definitions/win32/d2d1.json,sha256=iskc9ooLW5pGwgkvqqwefAGMaChRi_hlCpMUoscursY,5459
|
|
669
|
+
angr/procedures/definitions/win32/advapi32.json,sha256=ha7a1xBWRVM1v8zKxjNfZRbonaIiA65YNNYq3nXZYuw,332726
|
|
670
|
+
angr/procedures/definitions/win32/sensorsutilsv2.json,sha256=UCmev6IgXN33_nM73LlkIstQm18EYkB7P9Z8a8RpAAA,15384
|
|
671
|
+
angr/procedures/definitions/win32/icm32.json,sha256=pjGifu8r8M7kKoMC7-LLAou4ODNY9n4jsLg4d9S_uEI,13512
|
|
672
|
+
angr/procedures/definitions/win32/secur32.json,sha256=mCW2fhjA6a_Dbj_lrPip-TjJCwnTPE2-CoqDKRJb_SY,42180
|
|
673
|
+
angr/procedures/definitions/win32/avrt.json,sha256=BKY8X1H3X2cNn30PGL3w8lbUlhwTBfoxw1ku1kgvtdw,4880
|
|
674
|
+
angr/procedures/definitions/win32/authz.json,sha256=hLvf6xqZvbRV1ZrvaOEE5vy-bfAkQaaanx8QJuV80s0,18255
|
|
675
|
+
angr/procedures/definitions/win32/hlink.json,sha256=XFy-JxUTBKWdwFnxV72TPNNx-FX-23X0IPt_5mfDSnw,13751
|
|
676
|
+
angr/procedures/definitions/win32/msrating.json,sha256=s8GYdr7P8x4AvTn4l8kZpRW9hpcCTh5w0qaSk6FJRS4,6978
|
|
677
|
+
angr/procedures/definitions/win32/shlwapi.json,sha256=bLM2G4MrhQFpJoJaUTp-oz3k_xVv9rp7HOiAghcmtz8,118155
|
|
678
|
+
angr/procedures/definitions/win32/dcomp.json,sha256=pk49E7UdCjGyiJHHIQjPtR48FXtIaLbL49ceB9Y89sE,4839
|
|
679
|
+
angr/procedures/definitions/win32/dssec.json,sha256=XrM0uaVSbAn6-CQtnHnz_5BWQ65-e2dg7FOZ77qE6cc,5560
|
|
680
|
+
angr/procedures/definitions/win32/wdsbp.json,sha256=LSO_Uw255hcRwVsbwbiO92MkLsNooMEgiRWMFsRhVNw,2920
|
|
681
|
+
angr/procedures/definitions/win32/newdev.json,sha256=5H7xk5Y8op5UP78VFkAvb-C5QSjdMBfXYjfUMkckEWg,5469
|
|
682
|
+
angr/procedures/definitions/win32/mpr.json,sha256=voCWxqZGd7OkfpiAvjUXpPLwbDXcpmaNwrTTPTOF1bs,20677
|
|
683
|
+
angr/procedures/definitions/win32/wtsapi32.json,sha256=S5mXvMfpDJ0UNahjf59-Mx1fBy4h3bysxLetiAiSL0E,26541
|
|
684
|
+
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
685
|
+
angr/procedures/win_user32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
686
|
+
angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9pVEG0mo,383
|
|
687
|
+
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
688
|
+
angr/procedures/win32_kernel/__init__.py,sha256=I4WgVVCg4PuqChPe8nayrzLxDYJBFAwHdql8sWAD0Ps,70
|
|
689
|
+
angr/procedures/win32_kernel/ExAllocatePool.py,sha256=63tXPhk9BhQA6AWgg_lFjt5qIl2CyO7ylJSLfN5626Q,458
|
|
690
|
+
angr/procedures/win32_kernel/__fastfail.py,sha256=2vTgaxsV6dNkRVUScLnvPO8xDqru7LYSFpJtZelOlyY,356
|
|
691
|
+
angr/procedures/win32_kernel/ExFreePoolWithTag.py,sha256=ok_CG6yILlPGZzg-VvBxWMXkWZq-ucDK2WobkZGwx20,260
|
|
692
|
+
angr/procedures/java_io/write.py,sha256=zYTD5OYySQEfj4Z8t54AEoM1gUR5AXdeCa6AmNabwXk,662
|
|
693
|
+
angr/procedures/java_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
694
|
+
angr/procedures/java_io/read.py,sha256=PWQjyUErAHcoL5JYG4IhSqeRc5s30IeHM2mpsWdBqgI,384
|
|
695
|
+
angr/ailment/converter_vex.py,sha256=PSZvU83HCtRpVax87QUJXWiAshuZ02pNjyU9TbyJ8iU,29091
|
|
696
|
+
angr/ailment/converter_common.py,sha256=u-QS0q2srW5r9KwZ-Ox6nNX6Yb4ki8r4YnILdsOoTgk,188
|
|
697
|
+
angr/ailment/tagged_object.py,sha256=JJH1ptADSQdP2uwY5iaqDJTuhJ7yKJSZWWySO7Aj76Q,1288
|
|
698
|
+
angr/ailment/statement.py,sha256=Jjfx_YPL8khdmHaSCfJTNAMjiCqJO9J9DvuCRq931OY,30330
|
|
699
|
+
angr/ailment/__init__.py,sha256=4yp8tmntIRILe7q1QzpM25J_MgghfgltIZKd1f_gx1s,2133
|
|
700
|
+
angr/ailment/block_walker.py,sha256=AFSHciK8dfA3PCrHJyEsRC-KWZtuXXzQkc4mEcH2JmQ,35097
|
|
701
|
+
angr/ailment/utils.py,sha256=YprhO7yJcd5jUKDbCXFMmPdCd8BIOhqXti-zb3mtxRQ,2830
|
|
702
|
+
angr/ailment/constant.py,sha256=UG4OKm6VL3uBW_0NxlosWKBqK49gyduJjw64nBcfFfE,64
|
|
703
|
+
angr/ailment/block.py,sha256=aXi1KVrUB4N_rptXOcrExQzeFaOkjPBn6C04YtKecOY,2701
|
|
704
|
+
angr/ailment/converter_pcode.py,sha256=b8WHc0ChwjtkGmBwAfm0n6OTREcULfVJ1SkYOGdIMno,24400
|
|
705
|
+
angr/ailment/expression.py,sha256=emCKb_oJPt3M2cK1TVuxwzY6j7aHa8PDGgPbJQos8LI,48655
|
|
706
|
+
angr/ailment/manager.py,sha256=zqn0NiWZl5vdVQrJpejVhuHico9LxiWgvv5lGkUcjqU,690
|
|
707
|
+
angr/misc/hookset.py,sha256=mP4qYEwBGYHWqJ3jhCL3x-Bvppmc3nqhTdYv4kSAdtM,4549
|
|
708
|
+
angr/misc/plugins.py,sha256=1NzhTd0rSY9oPElCeMGMZXLHEclOWVIEgdq0JvxpUMc,9385
|
|
709
|
+
angr/misc/loggers.py,sha256=Vfr2GQFpDjxSG5RRrUd3q9JJctIY3Q027Hu2OSLYWKU,4247
|
|
710
|
+
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
711
|
+
angr/misc/telemetry.py,sha256=M6MhDs3kUg9AYTHA1WWu5GyQQKJgJuALloeHh4cJiDY,1217
|
|
712
|
+
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
713
|
+
angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1311
|
|
714
|
+
angr/misc/testing.py,sha256=b3CWR7bv38RP-IjGKKjZmvCLyYvvSNPSdZu5MgniJ50,626
|
|
715
|
+
angr/misc/ux.py,sha256=3iU1tDj4_pZZ_FEouoD8S1frjOGjY9w5gF1sqjOqnXY,742
|
|
716
|
+
angr/misc/bug_report.py,sha256=Oq_4O9wqkfjTAP7grJJghOF__cv-C74yzPNbIn4hV3g,3989
|
|
717
|
+
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
718
|
+
angr/angrdb/db.py,sha256=hEji643q4vgKcycXCkW5jP3viwrDDkVc7VZKN0OtwKc,6586
|
|
719
|
+
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
720
|
+
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
721
|
+
angr/angrdb/serializers/labels.py,sha256=wShkd0cnxUc5ZfeRAAZYChTUgstQRElhrEI7_T9tPcg,1472
|
|
722
|
+
angr/angrdb/serializers/structured_code.py,sha256=F9Ygt6t72zbt2v0qW1UVD7NEmoiXscIo2rdDyIMm4YQ,5963
|
|
723
|
+
angr/angrdb/serializers/variables.py,sha256=LyrBqhn4B4u6y8_WBiE_JF0vwD2j6sAjIOlWPw8VqxA,2392
|
|
724
|
+
angr/angrdb/serializers/__init__.py,sha256=xeDIqw9DoggjZCtUw79jwRq_PGD_K9HZGLy8rNDeirQ,184
|
|
725
|
+
angr/angrdb/serializers/funcs.py,sha256=twDiZ5rx88kat8llBwsukKtg2lgklQpmHJ7X9lLI-DY,1727
|
|
726
|
+
angr/angrdb/serializers/loader.py,sha256=xgvlp8t0H4tKgU680SpIW3r5DcrbU-qHtU_L_S_5B7E,5248
|
|
727
|
+
angr/angrdb/serializers/cfg_model.py,sha256=Uxy1VDKAy_50dMXUykpEsl_zp3ko5ETuKNPRAd3Xsek,1314
|
|
728
|
+
angr/angrdb/serializers/xrefs.py,sha256=C28PKZVmTJMFjycPttBckvCrrMsRDAzIcU52LCwWjq0,1205
|
|
729
|
+
angr/angrdb/serializers/comments.py,sha256=oHlwu9weMpFJrVBo19Ud1OB-XtpUPrdH9MWZy7QnQ40,1578
|
|
730
|
+
angr/angrdb/serializers/kb.py,sha256=vDC9Qh27L4NTRd1nplRwRXDUWXyZT2eOTz-8pEBu2js,3889
|
|
731
|
+
angr/concretization_strategies/logging.py,sha256=JOu4fUO-gNfSw5jM9xNsThIL6gTZbQxOy1qWsklS4BI,1196
|
|
732
|
+
angr/concretization_strategies/max.py,sha256=nX4xN-zDEKjtRxarFUr5cfKvggMlaFoNfjLXPBaLNpY,1011
|
|
733
|
+
angr/concretization_strategies/norepeats.py,sha256=j4Jy9OShW9_KgZvlm4p7lCzOlzvLZEbaDRN066kTGrs,1465
|
|
734
|
+
angr/concretization_strategies/nonzero.py,sha256=iitrFMwbt56c1CnAszZtWxGS9IuKDxnFjgK4-mlmZm8,576
|
|
735
|
+
angr/concretization_strategies/single.py,sha256=VFTkSrCXXK367e38rHEwqo0e8oGJoytXnJ8u02_XSPA,418
|
|
736
|
+
angr/concretization_strategies/range.py,sha256=jXylwOLabqfJrQx-7HRZaJKlX6pB6rQO2vX0LYEiLX0,595
|
|
737
|
+
angr/concretization_strategies/any_named.py,sha256=EqSOcHMUG0b4aRfCrsS58TJewL-8-JOLIwqzRKhEr4U,1384
|
|
738
|
+
angr/concretization_strategies/__init__.py,sha256=8IfQ7QmOsRRt18ru2cNF_P23Bo0FzyKrCDDtHEyE8h4,1309
|
|
739
|
+
angr/concretization_strategies/nonzero_range.py,sha256=X4JVAbdfSkWpxQZDSBlipYytfpqVQAghCVtjfevKk3o,827
|
|
740
|
+
angr/concretization_strategies/controlled_data.py,sha256=Rm72mjyv6IuLsvCfsXp-EjkBxx_2KjYJD2liDUC8eEM,2250
|
|
741
|
+
angr/concretization_strategies/unlimited_range.py,sha256=fdQ54qrJ2nj47AKJPw6yuiDsemFRfJ35UsOk17NbC1Y,569
|
|
742
|
+
angr/concretization_strategies/solutions.py,sha256=nGsRdjgmUPiJplktGYzKdJE_6H3J0svwsBIn_y77hgY,571
|
|
743
|
+
angr/concretization_strategies/eval.py,sha256=ekzs5D5l0pKDqGxMYfmIrWcOmnJ-t4v3fCNPyBqkesE,635
|
|
744
|
+
angr/concretization_strategies/any.py,sha256=-F91Zxym1PJXgB8rNUfyAyqwiCdGBRaYkUGoUkLRXhs,472
|
|
745
|
+
angr/concretization_strategies/base.py,sha256=dxybixYIcEgrLBJNBOcI5ELs2qZzvx3xYG3V8hRbVOc,2977
|
|
746
|
+
angr/concretization_strategies/norepeats_range.py,sha256=eyefZDYmkFvCmpT9snoVBkyie0CEZBSUG6HI2iVyjic,1607
|
|
747
|
+
angr/concretization_strategies/signed_add.py,sha256=kLIkHDjlhY6QoRj3g8gzY8y3bV3WqgIYeCs-kqV-sDE,1225
|
|
748
|
+
angr/protos/xrefs_pb2.py,sha256=1lJStwWD7KPCWCApSoisVpDewp8hw668U4icL-eG79w,1423
|
|
749
|
+
angr/protos/function_pb2.py,sha256=pvPzKBoq7O0MfOtzC9mqmPADRvX2ImNl4BDLLe3Jt_k,2446
|
|
750
|
+
angr/protos/__init__.py,sha256=VdHXdfTK_wbCsdTJ3umFhWpUKZ9SEQUu9gQsd9TukY8,420
|
|
751
|
+
angr/protos/variables_pb2.py,sha256=BK9mPEMQKPPJy-QvopwaRCbi9tNxBWrLuDbXEwaQOv8,5142
|
|
752
|
+
angr/protos/cfg_pb2.py,sha256=qu3yIpNIxoFIMs2Xl_vzSUCzYCcr3VLU7225e-OQK_g,2856
|
|
753
|
+
angr/protos/primitives_pb2.py,sha256=3uLGtIQL9zfvlQkgryigh8zuimMTDVP8zHZpjjgWn-s,6303
|
|
754
|
+
angr/distributed/worker.py,sha256=MZVlxC9ksC6xUG2fy5h08Vv9R8RiG7QBQIomPYdFIJs,6065
|
|
755
|
+
angr/distributed/server.py,sha256=g3STpFQ48AScjXciwCt1sGE-qWAvi3GHwb8tdScL1CE,6645
|
|
756
|
+
angr/distributed/__init__.py,sha256=KbEuL2qYp5UN8c0mv_38rfZefTvvvtMkp6_ejWVFpOQ,204
|
|
757
|
+
angr/utils/dynamic_dictlist.py,sha256=bHQrxhUCkk6NDDzEBouAWESjMyKfQUJIk8g38R27iXw,3048
|
|
758
|
+
angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
759
|
+
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
760
|
+
angr/utils/library.py,sha256=4SZyPPfoaKM0L8tJ6eQNosgupzGadlFcvQvPghHFw1c,8264
|
|
761
|
+
angr/utils/ail.py,sha256=Tju88ZW3jE1TC3EKBYQc0u0dTkN7JoVXIKnjOyKqeoA,6622
|
|
762
|
+
angr/utils/graph.py,sha256=NzI9qgm8n708TepSx94FebHRjvt5wBBIstDkGzhU-cU,35363
|
|
763
|
+
angr/utils/constants.py,sha256=kY8SvX3475AT7JWD2uKHiLKuFEAMxn6OFVtnfbIJzaE,281
|
|
764
|
+
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
765
|
+
angr/utils/__init__.py,sha256=kBUIJCp9WSgzb62zMg4puUUeheMSl9U4RFqkfiL3en8,1159
|
|
766
|
+
angr/utils/types.py,sha256=ZGXhv1XeXqL5JDj3mP4kOcOTeVuMtRzub1-cmPvgPjw,6527
|
|
767
|
+
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
768
|
+
angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
769
|
+
angr/utils/cpp.py,sha256=k6ZOUNIqYxLd5WSRKP2T3li-3zt06PtneLgaBWPOtiU,516
|
|
770
|
+
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
771
|
+
angr/utils/doms.py,sha256=WnBgFhE7kif40kQhWXhjKOkLjgAJV97vwWBb4lYSfYU,5394
|
|
772
|
+
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
773
|
+
angr/utils/mp.py,sha256=y6Q0nDOykRZvcQ805DZpcJHQTGN-gqFi0eERGNhb3C0,1903
|
|
774
|
+
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
775
|
+
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
776
|
+
angr/utils/funcid.py,sha256=PA115tjmdUpfrGQvva4Ad3Q5SoToRiGjJzNRhX2Ca6Y,9567
|
|
777
|
+
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
778
|
+
angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
779
|
+
angr/utils/endness.py,sha256=PDpDNbiIbaSx1DGH1z16nU2B5GMrTqONGivGeVNiGyU,506
|
|
780
|
+
angr/utils/strings.py,sha256=iv3Mg_KCyyPx9dkIw-O0ZidWyGl8mqPDkyNJwZYQr_U,688
|
|
781
|
+
angr/utils/balancer.py,sha256=BGcV_qRkT0IjHtY_8NMTQQMgAPWkPfi37GXtntOODlc,27841
|
|
782
|
+
angr/utils/vex.py,sha256=epcrCexi_NjKnPGM2gfpiRsUea_Scd-71UMuF32ZAQo,306
|
|
783
|
+
angr/utils/ssa/tmp_uses_collector.py,sha256=wyjigjPAsC9FptloG_10ScAGSztGXFU-YtzKLk05nOI,805
|
|
784
|
+
angr/utils/ssa/vvar_uses_collector.py,sha256=67Rc_MQehWNAreCFYaUC2O5-tBmUHN_8p9i3ewiX9_0,1388
|
|
785
|
+
angr/utils/ssa/__init__.py,sha256=zLfPnA9ctWqf23sQIOcfvIIXd1BQS_aYuQMNNy37NzM,17359
|
|
786
|
+
angr/exploration_techniques/spiller.py,sha256=B5qy8B3l_0JSo8YDH9cJUX97anf9YdDeJMVAsN1xZi8,9415
|
|
787
|
+
angr/exploration_techniques/memory_watcher.py,sha256=9grrkwq4ha5u8gtJIqTFhVG9Yur18r7Tec7bv_HpNlw,1312
|
|
788
|
+
angr/exploration_techniques/lengthlimiter.py,sha256=To8SlXhtdDVSqAlCSIvhvqyY8BUs37ZU7ABymhJDz14,590
|
|
789
|
+
angr/exploration_techniques/loop_seer.py,sha256=SmLTC45QmPWiRt9w7KV6EXo0SjZ_K1Q0jhKmrWyao1M,11616
|
|
790
|
+
angr/exploration_techniques/veritesting.py,sha256=8F7emyvQa8SOjr7Ztk7Bw-aIrYjrvmXBeaavMlNLvxs,1392
|
|
791
|
+
angr/exploration_techniques/suggestions.py,sha256=h15TEcP_qW2gk5q7Qwj41xF884dO6jy7e3lSLgn-nkE,7012
|
|
792
|
+
angr/exploration_techniques/stochastic.py,sha256=SpCsWPQpqUQ92Bpf7r2EpWz8ucMU1rHfbSduiQRvY_k,2040
|
|
793
|
+
angr/exploration_techniques/unique.py,sha256=UqB8dUzvgaSfYBfm15g8XYlBsS8Out0z1loN4sjBsNw,4453
|
|
794
|
+
angr/exploration_techniques/timeout.py,sha256=JbKoV1MXYHVaiMERUy0gbEV7yeRy_uDjsgeNTFyjNOM,964
|
|
795
|
+
angr/exploration_techniques/__init__.py,sha256=5LJEn_hYBNxcMA_gnMFU_fkGp4NBRowQPVWpJTqF0pM,1390
|
|
796
|
+
angr/exploration_techniques/bucketizer.py,sha256=BvkBr5SBbWHT6Z1G8AJaNA7BmN9NqRmyr1J98yQ6Ou0,2563
|
|
797
|
+
angr/exploration_techniques/threading.py,sha256=QJcgyCYRE7iECxr4fczz5XO6C_R3KHNWH7fyCkxBdnE,2487
|
|
798
|
+
angr/exploration_techniques/explorer.py,sha256=_SKBIFX-YDd71aIAJaV9MwCZt64wUvvZmZiBjrjuruk,6243
|
|
799
|
+
angr/exploration_techniques/spiller_db.py,sha256=ccbjeAtlgD23tMt8gGbJL9r8Tc4aOJi3Rjn6hg70dnY,811
|
|
800
|
+
angr/exploration_techniques/common.py,sha256=_FmR6IxiCm_lal1rP6382r-1hCj-EirDsq_eQdD3x3s,2277
|
|
801
|
+
angr/exploration_techniques/manual_mergepoint.py,sha256=H7eTs1fNhkbLo5go2EwRq2U4Wy9yQxqj99qb-3I2we0,3138
|
|
802
|
+
angr/exploration_techniques/tech_builder.py,sha256=jjW_3KobHh_phQ9zJp7SuWzIrJl7HUosYjKUemAoY_M,1626
|
|
803
|
+
angr/exploration_techniques/stub_stasher.py,sha256=gDcazGeSyLCUFTutF_HQFDfDgye0vo7ZG1j9vQW1qK0,499
|
|
804
|
+
angr/exploration_techniques/director.py,sha256=sdqTSCNoieBWln7egJBh7gkJoZAo7zpWC2telwEsn1w,17865
|
|
805
|
+
angr/exploration_techniques/local_loop_seer.py,sha256=qcXC3XByVc1WkznVoqCNt7MqBX_GL_qSwBHmwbHphmU,2605
|
|
806
|
+
angr/exploration_techniques/driller_core.py,sha256=ZguyrKpC0kHLotJOkdVX553JBMwvAgUtQW244EUf78k,3450
|
|
807
|
+
angr/exploration_techniques/slicecutor.py,sha256=_IIg7Jl6gZStumtlEwyY8eu55BM1ex11DpKgTjreoYc,5170
|
|
808
|
+
angr/exploration_techniques/oppologist.py,sha256=qginjebD4HFsz0UDr75-387YXnqKkjqlTSML-oXu86I,3525
|
|
809
|
+
angr/exploration_techniques/base.py,sha256=AoM5IInQExOxC5sHdm_ZNj2HxQE3QeBVzZWVQP6510Y,5535
|
|
810
|
+
angr/exploration_techniques/tracer.py,sha256=QqxsNn4jPwbpquZfjZDMlyIyAoZa1cOodDJhvS41Cx4,50111
|
|
811
|
+
angr/exploration_techniques/dfs.py,sha256=_pPa8qdusyGN_98FSmqEDNKrDWsBYVJb7Swn55Ngbh8,1208
|
|
812
|
+
angr/simos/cgc.py,sha256=LoBl_csMIVqn7WDqmspqAN5ETnTUoUv4PkVqobxqspU,5592
|
|
813
|
+
angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
814
|
+
angr/simos/simos.py,sha256=l417vxsblW02go_hUlWriFb9wipo3WswRuNQZknMfwo,18458
|
|
815
|
+
angr/simos/javavm.py,sha256=8WatgrjfiSPyUyHmRhrKWvKxYCvUG3F3xh3LSJDpxhQ,20566
|
|
816
|
+
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
817
|
+
angr/simos/xbox.py,sha256=f0IL9ZTgYX8feEck5nBu87bYcehbdmYKQVoze6wsmY0,971
|
|
818
|
+
angr/simos/windows.py,sha256=VGyLJx0MMOPFFnkcgFwP2tGVBhmBIC3JMmVI_UyRLsw,28506
|
|
819
|
+
angr/simos/linux.py,sha256=ShLsqFIut1jGuo6NGQSlT7ymoaEEwgTNkloJNN0pDDI,23204
|
|
820
|
+
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
821
|
+
angr/storage/memory_object.py,sha256=EyRSgADKDt0IMNfUoDfu-uE1ycpK7U30ORduxPUgk6w,6242
|
|
822
|
+
angr/storage/__init__.py,sha256=bTLVWYaHiFGdjYSieHdADLZ4fTKW0pUl_5aZBJV2ips,294
|
|
823
|
+
angr/storage/file.py,sha256=sb7DnGgDnozxRR3bwcLJIkUf1w7FBagS6795Ah7H_WI,48046
|
|
824
|
+
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=qAS2QKTimhZMZ-m9QSMi9DgFQeNMmISj7S8VS-3m9hI,391
|
|
825
|
+
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=ez-WWauvFzGzZrrohRSejI6h4Y_lqxtGUkE0SIzUPiA,10291
|
|
826
|
+
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBitcIPv-RBpcPhvFk718,3678
|
|
827
|
+
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=ZNG9IrafrHITS_LCLidt5_KnVbuvcYpFTlXpYHP-GzI,15452
|
|
828
|
+
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=GZkWxceMhP-e-iBGBilK6JgEjdBvUSPyd_Zi_4KZQxs,3432
|
|
829
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=9xwaHqJziT07dMtHtIU_ni0b_Wh9azPiTbPSnJ4ZS10,5992
|
|
830
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=3Jr8L5hS72oxVWc7at2Wd7plOb7EL5_lxHIUpoYYouM,5828
|
|
831
|
+
angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhwwf4tmI4mWlxS0zVYBM,721
|
|
832
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=oxSTndU8a_l5gzVxfnWFI02SMM0ZSKULsQwbmeLOzhg,5775
|
|
833
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=HmVfl5ubKmF0I_je0O6afNkVoF8EsKxqr-Yo8kzNawU,6498
|
|
834
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
835
|
+
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
836
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=ajjiQ4ulbVQ1WgygR7WuM7vrOzsFGa4D-11R7ipmr1c,594
|
|
837
|
+
angr/storage/memory_mixins/__init__.py,sha256=a4fY0pSAwgFALjPoDRJVHKt_oMCqia_JqiMzxvk6xpY,8597
|
|
838
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=OekCAvHcwnzUbRN5OTzlWL-H_x0gaFr-iB6xUdjDeVc,1025
|
|
839
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=7LwcgsuJpwPlQ8LzX5q0bZj2PTkLs_cngrd3lDiHd2s,5728
|
|
840
|
+
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
841
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=ualfyGbaBqb0hjfde_YomZYT-6U_und_wj7KV_z8wKY,4966
|
|
842
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=5owT0luMQkYGqAdP-CSOD821Mrg4REFG_9uuo8uaphA,2888
|
|
843
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=L9FlA0oyQ3gvEENfs5nvHhCYBeuKeyk_TyBh5sgiF64,3493
|
|
844
|
+
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=3YirCfFTWcdYwmfM0X5yJMiJ2s80a75Ha43WNnhTwnA,501
|
|
845
|
+
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=ftj6faTEr5qyBmcwMEYfLEqioxPOLlctX5khpydv2mQ,1238
|
|
846
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=isJ3_vuElWtLTW7MxweHs5WJOuawr1LmLlS7-yakWd4,2576
|
|
847
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuLVyMEqNSZNmDsGRRkQwR30_w,2691
|
|
848
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=w3d1IJ_HrcSEt77_31CuozKYbbWRg17wkhrT-O0EqwE,16535
|
|
849
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=e5rzeE43aYU_V9kazTu_aBsZCSnk3w-oUnmCuZXcJEA,17840
|
|
850
|
+
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=Sa_UmOMho3_6P4WG_c989zfU8ucO4oNgnfLAnKEOuU4,4946
|
|
851
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=MJclb7-RUmj0kwivbWBxuPKJfNwSPDMc6kJ9H_2JMWs,7823
|
|
852
|
+
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=-LO2_yG1yKmC-1r4FA8wT-XE5xsJSKyPowPJRiHeggs,577
|
|
853
|
+
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
854
|
+
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=wcvhmzDyuPqmHYFkawr-no6J8d9t1Rhlz1Iu27ae3-E,201
|
|
855
|
+
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=dT0Bfttz6zlCLoaeuMs1putEtIJ2tvNePZEcjo0PJ-A,9175
|
|
856
|
+
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=8he3-DQU7d5JfVpxvsUBx_ylEuovF6ORi2rxHqIexfM,975
|
|
857
|
+
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=tWyiNrMxmGv-OSSkJq1ZvGUiZg2JUIeETcYa_EULIcs,2173
|
|
858
|
+
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
859
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=E2LNktW8ln2e5ofMfhQlyUjB4XVChkkqVwit32NWamY,29386
|
|
860
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
861
|
+
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
862
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=77Wx5vLXr4sMX2eVdQNZz2AYTEZ09YWySyKHAQMXlnw,10521
|
|
863
|
+
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
864
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
865
|
+
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
866
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=41EUAR1cHW-gkBR2ltMoSl5JUKgG1672VXIZtyrJXc8,16934
|
|
867
|
+
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=O6wxpqcRqZijLD3LkDQDKLjb_K8UloUyZHSrMijXgNw,654
|
|
868
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
869
|
+
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=sOs25tFHpLZDWo4GxB9apxm9mSTVnQdf8ntwjd1ZtIM,3069
|
|
870
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=gGaFFG34mTJF3SG-noCHHfp36GJe6HaiYicB5GosuNg,21506
|
|
871
|
+
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=1-gi9LooOPxYGzwPuLwzRcPANLSg5Ad-eB5YV1DsoyY,13242
|
|
872
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=aeKBWosclmNKl0wV6ST5ECATDjUz2dbWPkCpZCY_ws4,13230
|
|
873
|
+
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=dAZIA0Z7tM5ZDQPtmkQ7OsUHq6bTqWPl_NcIj0RO7X0,14421
|
|
874
|
+
angr/storage/memory_mixins/paged_memory/pages/base.py,sha256=NiIZdOH1nrkP1AO6QKd1x-Ax_l1vRkDmFgR4mHpIH0c,1421
|
|
875
|
+
angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipYKJgGH9vxLLA,1037
|
|
876
|
+
angr/knowledge_plugins/labels.py,sha256=HvDQjL3jayVmKNdOHTteNSIgd4aOrAp1qGaBIDqzdPQ,3218
|
|
877
|
+
angr/knowledge_plugins/structured_code.py,sha256=9IKRF1Pb7E0eBz0uMK36Pk8HL0fmI7JqVaeihu7uiRQ,2167
|
|
878
|
+
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
879
|
+
angr/knowledge_plugins/__init__.py,sha256=T8ovRNYYhqk_QkKN2OU5JXzeYZob8iq3v0ZlnX8_Hho,1160
|
|
880
|
+
angr/knowledge_plugins/types.py,sha256=KsJfGqQw2zZWysY3tjNM_E-aYRMYsi9xotfZs1vWh6c,2348
|
|
881
|
+
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
882
|
+
angr/knowledge_plugins/obfuscations.py,sha256=VaPftmE_WdxcIuT2e2FwSENFevN4g98cOAVHF6BowXU,1679
|
|
883
|
+
angr/knowledge_plugins/plugin.py,sha256=0vLfWNRvXc8C7QHw4ZruEAiaZuNArMd_uGzBa1CRaZw,751
|
|
884
|
+
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
885
|
+
angr/knowledge_plugins/callsite_prototypes.py,sha256=R2aVw_eZxRHtYL6ADR9fHJCtP_Cl7T_FSa3K8sBuHEc,3103
|
|
886
|
+
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
887
|
+
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
888
|
+
angr/knowledge_plugins/propagations/prop_value.py,sha256=FFRNqHaEKzYF4sIMRoqemoEqTJxyrI9kvTgC5MdzEK4,7597
|
|
889
|
+
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
890
|
+
angr/knowledge_plugins/propagations/__init__.py,sha256=tG2ER9gilu212YgjfNB7-J8cLSw8kuE1m-UaM8wjljE,202
|
|
891
|
+
angr/knowledge_plugins/propagations/propagation_model.py,sha256=IL8cxQ1uBiUQ8-GkMGVICpV5Gfftv-PNR7OX-6NdR5o,2898
|
|
892
|
+
angr/knowledge_plugins/propagations/states.py,sha256=QPFb484q52rGwlYZjcsq6RZdSReL_QUeIYvrWy6MHwU,18958
|
|
893
|
+
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=i8n31KYwD044UlJ2qswIPUWYr_tutnBQOy6pT_ZsBU4,1547
|
|
894
|
+
angr/knowledge_plugins/key_definitions/uses.py,sha256=BQqNeI4Ow29oWpCrkZbw8bLSKUXrP0vFNZewxJcjcgI,7356
|
|
895
|
+
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
896
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=LYLFUutUqWB1jSOjWh7b_JQtIaT08duv8_TUZIt5R-k,3313
|
|
897
|
+
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
898
|
+
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
899
|
+
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
900
|
+
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
901
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=y5oFS8du8TYSDN_d26aW-83WaZ8_PGs1TkaDcAdZwYA,38989
|
|
902
|
+
angr/knowledge_plugins/key_definitions/undefined.py,sha256=9_lhbftnUqPGBc1boOoZtUQnNFn0eXsl3Xty0y79z2A,1273
|
|
903
|
+
angr/knowledge_plugins/key_definitions/definition.py,sha256=TAqGuOPAoAlydejvEz0vcj2grBlB1YLB5LXzrT_Z63w,8707
|
|
904
|
+
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
905
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=dKbhvROB0cKSIZC1Z29MvIUmEHx5Ke6rK1lMgmKNdV8,11149
|
|
906
|
+
angr/knowledge_plugins/key_definitions/tag.py,sha256=QWtBe5yuMei6t2NRPwolVyUa1XyY2khMeU6pQwb66iQ,1710
|
|
907
|
+
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=XQjyH8ZhSlRFWLc--QY9Voq0RB7nI2wzeP5COANwoOc,3741
|
|
908
|
+
angr/knowledge_plugins/cfg/__init__.py,sha256=oU07YZ4TIsoje8qr6nw_nM2NXizEGKuulD1RDxk4PWI,418
|
|
909
|
+
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
910
|
+
angr/knowledge_plugins/cfg/cfg_model.py,sha256=hzbEi7dn-f1CDLvN4tIElzov2Vpx0r5mV6ti5XvDYNw,41674
|
|
911
|
+
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=QGXCsdoLiH_vW7LP1EWGLlRVlMSqAM06l6qWq7uxQJU,2651
|
|
912
|
+
angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWBsLonpNpLA,17183
|
|
913
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=p-7scwMNjB4hoym0RCrT-EHzrR0Kw9Q2AzW39gGTzcE,55420
|
|
914
|
+
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
915
|
+
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
916
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
917
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=kwFBQ3bBKUdI5aAz858btzu8KMRpiX55aGE9eCNdhwQ,14721
|
|
918
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=Es0-qph-ph5xu-rXCPdoBuRS8T1lT2EJufbpkvW0WWs,24586
|
|
919
|
+
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
920
|
+
angr/knowledge_plugins/functions/function.py,sha256=mSv7xBywiWK1l950jJqcd9AmlkdwIe3swCtpRHSaJII,73210
|
|
921
|
+
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
922
|
+
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
923
|
+
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
924
|
+
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
925
|
+
angr/engines/unicorn.py,sha256=gNfl5W9QXdeUUlWmZWttGu0Vs4UY7jFGp20T3E3gA-0,24569
|
|
926
|
+
angr/engines/concrete.py,sha256=kEt6Dyp8QAIaOP3oW5lRcDs_2UMP2vbiNzylGiqvf7g,2143
|
|
927
|
+
angr/engines/icicle.py,sha256=JSbHnTJePV1l6dmF5WPhlzYjm6ZApQfjCUrgJ4jewOg,11033
|
|
928
|
+
angr/engines/hook.py,sha256=ndknM8ZFZtErMibMNCDhX6rhvOkIvi-ymKPx4oklNgQ,3499
|
|
929
|
+
angr/engines/__init__.py,sha256=ER5uUHnDQPEdHkFKMkIKgEyl12-WiZlzOFITvfQLqLo,1701
|
|
930
|
+
angr/engines/procedure.py,sha256=8kgFH56nkqSWm0p1apuGBaFngl-4BnAzE0bXhq9mc6Y,2561
|
|
931
|
+
angr/engines/engine.py,sha256=2kwOT-sbxKXAVX2PmsPTr8Ax36Vxq6hkRdDKaITBQNc,657
|
|
932
|
+
angr/engines/successors.py,sha256=fTwEyJQm6IeRNCXPqGK1kWRpBPRK3_XcN0MmPgHjpTE,27167
|
|
933
|
+
angr/engines/failure.py,sha256=pc6M_4ibT8HeGTdbd0PS7pVNxVp9Fw69LPPh5KE1t-E,1058
|
|
934
|
+
angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
935
|
+
angr/engines/soot/method_dispatcher.py,sha256=Ooj7DwtXDcgvw6Wt60Q7Z_Xj6lEKR79ncVW_HCZphkQ,1759
|
|
936
|
+
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
937
|
+
angr/engines/soot/engine.py,sha256=rHKbnO9YBOAd1DJ-a33vAMseFt_b3iDhArTFdgmyVsc,17065
|
|
938
|
+
angr/engines/soot/field_dispatcher.py,sha256=WelL0r0f2hSUki4Xw0myHlzvnzqhnN9l2JyByJsB-2Q,1893
|
|
939
|
+
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
940
|
+
angr/engines/soot/values/staticfieldref.py,sha256=fYucDqKryaZbCWm2iOSsVi7FdGRIm9jncK-rA4tIXMU,1291
|
|
941
|
+
angr/engines/soot/values/local.py,sha256=KUnMtcxlemPXhu7zufUDUluaLpaWs4dhEbg2hK30YC4,420
|
|
942
|
+
angr/engines/soot/values/constants.py,sha256=S9iY6vQui2ATFJTMcZCpdbrn9ttBcj3xFOLRInlcpHk,438
|
|
943
|
+
angr/engines/soot/values/__init__.py,sha256=L3oz1NXDxvCTsdU8chpszGBuVIrWWSNS0LhHk0lrPhI,1101
|
|
944
|
+
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
945
|
+
angr/engines/soot/values/paramref.py,sha256=zDxRKZ2YquslhE41BZbBeLcW-PFAcTQLggvuCE_SPB0,446
|
|
946
|
+
angr/engines/soot/values/arrayref.py,sha256=lki_NAPesi8FM0glJI8qM2cja5K0BCSxtRdVSrTCljc,4405
|
|
947
|
+
angr/engines/soot/values/instancefieldref.py,sha256=FrwIT1NkyMzJfkbQd3d_K1lh8ahw-EfZi8rXeQYw4go,1652
|
|
948
|
+
angr/engines/soot/values/base.py,sha256=nTETgLhh4EST1ujvbXG-3fG-ekAMF2f6WiQzsjDtkI4,156
|
|
949
|
+
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
950
|
+
angr/engines/soot/statements/goto.py,sha256=M1ECqzQQJtdn3vbP0J5k_3Qvhu_Uilkq22y0JmoVAv0,368
|
|
951
|
+
angr/engines/soot/statements/if_.py,sha256=OZFSR5yojJzZjs63hF9yxGAcaIN4MqCOjWA84rbOE2s,603
|
|
952
|
+
angr/engines/soot/statements/__init__.py,sha256=r6cR4JUWLUAJvyqcXmc-BLSPzO8uLtg22bIYSClD2ng,1193
|
|
953
|
+
angr/engines/soot/statements/switch.py,sha256=dJrJ5-_dogvoAfzuYYWjDZn6o3p02AX9qgCtMn3WftA,1340
|
|
954
|
+
angr/engines/soot/statements/assign.py,sha256=MQJmr3EN1wylmW7j9aO2qIrz1HulXa_-wk0yVEcuy_c,1322
|
|
955
|
+
angr/engines/soot/statements/throw.py,sha256=k41dYR-h63tjJ1xC_0npo3pMBFaX0nJqRZ0vsHzJ5fU,397
|
|
956
|
+
angr/engines/soot/statements/return_.py,sha256=4IIqto1nstQ-pGJYp8c7mrPRVyy41yeofQTqUcq9nUE,501
|
|
957
|
+
angr/engines/soot/statements/invoke.py,sha256=HbR2ke7Kcrns8e3dzjxYoxEzm4UnWjQL_EY9Vz1BWTY,319
|
|
958
|
+
angr/engines/soot/statements/identity.py,sha256=d1ldd4tJiRPuh2TOTAkjfL72-lWmPinoOrA1cBXk7zY,456
|
|
959
|
+
angr/engines/soot/statements/base.py,sha256=cOF5oCzq10X1erMe4A96GKg0q4wvEeCf1kqCeFJRdIk,2143
|
|
960
|
+
angr/engines/soot/expressions/cast.py,sha256=DlBC9cq4KpcH3qfyI1QabFs1mLRzsHa4NHBPc7bD_I8,804
|
|
961
|
+
angr/engines/soot/expressions/staticfieldref.py,sha256=LlrlCaDSBv9tCa8TNK3UskVshv2bT8dyt8JpdI3gn1I,267
|
|
962
|
+
angr/engines/soot/expressions/unsupported.py,sha256=PAg0gAByaPAlj4GTsYJMNc72MPkLPB3xjYNRw6EbPYQ,148
|
|
963
|
+
angr/engines/soot/expressions/length.py,sha256=Ae2UIK1UCbUm65Uq05Xkzerro4quOA3knv_mMbnt5hc,224
|
|
964
|
+
angr/engines/soot/expressions/local.py,sha256=n8TYrHylKmj8a-zGbFawnF-ofNjo_QShpvCDGcnfS_s,250
|
|
965
|
+
angr/engines/soot/expressions/newArray.py,sha256=KbzM2zro0jaXveM2l3LWcQMMX3Xz4kzOXdulICZEdmY,2032
|
|
966
|
+
angr/engines/soot/expressions/constants.py,sha256=eHeWXIy181RSJRaBOsUijac19IDwCJshk9h9X8h87o8,1403
|
|
967
|
+
angr/engines/soot/expressions/__init__.py,sha256=FO2AAkrv9ky6Wi22ziXnGWVwpXytzMfQispza--D-yg,2544
|
|
968
|
+
angr/engines/soot/expressions/thisref.py,sha256=ofsOlxQ9TX992FEmWRDhDuxZ34F56QnzwVxWrrJ0dOg,184
|
|
969
|
+
angr/engines/soot/expressions/newMultiArray.py,sha256=HWnuyfYxTBZof6k3t6BNLTGaI0XbFkDV4GuZPfyzw_g,3440
|
|
970
|
+
angr/engines/soot/expressions/instanceOf.py,sha256=XRlCa-LaVT03Zf09dRzrl3eIuZjR8P5Q8ti3Lvt6wB0,345
|
|
971
|
+
angr/engines/soot/expressions/binop.py,sha256=8u6bII365ueXXQ6Mu4jmdYNRiRmAzPpERRtfRB1XJI4,816
|
|
972
|
+
angr/engines/soot/expressions/condition.py,sha256=j3IK72n2pXgzgfmvmr1zh-6f0I7CPeZb2TDfug-BCF4,1315
|
|
973
|
+
angr/engines/soot/expressions/paramref.py,sha256=zkL142Vb4oDWlp-pv8NZSQcFsx5fmuCh_YgbEhoSiRI,259
|
|
974
|
+
angr/engines/soot/expressions/new.py,sha256=uFTtVYcCYsbFCLja7ybZx4Qi9zo03qY-2VCG0erffF8,603
|
|
975
|
+
angr/engines/soot/expressions/invoke.py,sha256=OtD17xGkWtqStQB55wHr4WkSemQNdffK8QUtTLnD8Mk,4482
|
|
976
|
+
angr/engines/soot/expressions/arrayref.py,sha256=G7Pr-fe1sYg_PFT-5Q8TwnAZZ4uTIuXEsVqXFmTsVQs,908
|
|
977
|
+
angr/engines/soot/expressions/instancefieldref.py,sha256=KWx8sfhLHIxlbScdp_Eg8IvWDmSgoXhxau4S4VOJW70,269
|
|
978
|
+
angr/engines/soot/expressions/base.py,sha256=7y6a_euE8TNsrCA1jZfyjHjh7TH91nKaP_Z80PBICPY,496
|
|
979
|
+
angr/engines/soot/expressions/phi.py,sha256=XS44tYMD-70WCL0EH0BdVcLIfYXLEHgSW9Tywl67uIk,1227
|
|
980
|
+
angr/engines/vex/lifter.py,sha256=BqeajzzpLL32nmGaszWASBPDhluhTec2m3ods1ZTIIo,17207
|
|
981
|
+
angr/engines/vex/__init__.py,sha256=k8cIQpJO2Wv6erLCOa4boEywRcwlFOTgAgGP6wNQcwM,525
|
|
982
|
+
angr/engines/vex/claripy/ccall.py,sha256=sxWkTmCFwVto9dqTW74sCSgl47kn8HV3NSTU0LCcxts,82962
|
|
983
|
+
angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8ElSuJcFzNQ,4971
|
|
984
|
+
angr/engines/vex/claripy/irop.py,sha256=_xiVGT5YbguTm8c0DaAqHnPUVrD2lp3ELtiBJTPwTOA,46240
|
|
985
|
+
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
986
|
+
angr/engines/vex/light/light.py,sha256=YBBUOIJrE8YkbW_JNBVyjqpwVymsf1mOuqYl6bpUE_0,21685
|
|
987
|
+
angr/engines/vex/light/__init__.py,sha256=U31OCY_B_kjtpewghpiFa7mYNBGNVj6CoeOiKAhUUkE,224
|
|
988
|
+
angr/engines/vex/light/slicing.py,sha256=JtUtOeE9h-xBtrrVvY9T8ttYG-T4cllhRyR6zUcxiG4,2009
|
|
989
|
+
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
990
|
+
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
991
|
+
angr/engines/vex/heavy/concretizers.py,sha256=SHojrhwpJHlSTOPooX_2IZOv0kOOr9D6PJs52rdUlIQ,14826
|
|
992
|
+
angr/engines/vex/heavy/actions.py,sha256=Q08wb2TK5HfDduAf8PRXY58h8iIOeCuArNzALzIf0Tk,8668
|
|
993
|
+
angr/engines/vex/heavy/__init__.py,sha256=XkIvjUOyEY9XN_zjM3ozzdSDqbMJHGm1XbehwhshlBE,376
|
|
994
|
+
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
995
|
+
angr/engines/vex/heavy/heavy.py,sha256=tbLzoyzKKTTfhqxT_VUR0ANkcRwCaF-Cj9UvHuLS1EU,15571
|
|
996
|
+
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
997
|
+
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
998
|
+
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
999
|
+
angr/engines/light/engine.py,sha256=JDUArvQGvsh_7Jv2AG4DZBpjUB_DB5BnIvK5or2V7oI,46842
|
|
1000
|
+
angr/engines/light/data.py,sha256=bSJOryON-SWSLNo8PDJJBzL3xPsNnlO-ECj5h60Tf5E,21259
|
|
1001
|
+
angr/engines/pcode/cc.py,sha256=Ux9VFTBPzAGMi5WXQIQzzpQTF1su0eV69PRttKmhkTU,3809
|
|
1002
|
+
angr/engines/pcode/lifter.py,sha256=3JxTS9ut7v2OAwV2aU_I5CgRHKSHpGELYWzeJZU7U9s,52833
|
|
1003
|
+
angr/engines/pcode/behavior.py,sha256=Q4V9VN9rB2yzPjMjIyCh49LsvouGjAkOpV7c1-YX8iw,29583
|
|
1004
|
+
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
1005
|
+
angr/engines/pcode/engine.py,sha256=aFVvBYkVzZ8A5NkC2SblDU6Mlfk0ioVn7xDhp0iG8-8,9930
|
|
1006
|
+
angr/engines/pcode/emulate.py,sha256=YlFHfXk8WmABiwVRJINP4ekMAY2b7dbvrpLrE2BfLXQ,16670
|
|
1007
|
+
angr/engines/ail/engine_light.py,sha256=vXr83s-Cs43KD7nnW7KCuYW547Fe0-91oK2dz0UaWqw,40584
|
|
1008
|
+
angr/engines/ail/__init__.py,sha256=E_xXE4XeomsG5DsypGWCCkknFglIIynPpYobWXt_WYk,500
|
|
1009
|
+
angr/engines/ail/engine_successors.py,sha256=l8j4p6PNNkTFk1VPmZsrSJniGrcraIxAVwoohsT3aEE,826
|
|
1010
|
+
angr/engines/ail/setup.py,sha256=CO8MbQn6DyTfU-isO2uPlkNNjoG1QdH5M3agx0JYJ98,1812
|
|
1011
|
+
angr/engines/ail/callstack.py,sha256=La5a8IqQUCZEKvHwr8SVFfq-_UMpIy90YmQzuOfoym0,2070
|
|
1012
|
+
angr/state_plugins/cgc.py,sha256=7EWDIX3__gEhzG8iC3JyjXi-Awfx5diRk6Y2eIgeCjM,4280
|
|
1013
|
+
angr/state_plugins/unicorn_engine.py,sha256=CRsyhyU3zDw9Bl4WTaiIyrQCTJb7UKjCiPaOoLPvlr0,78933
|
|
1014
|
+
angr/state_plugins/sim_action_object.py,sha256=QKDQQlgoRUalr0v_cNACZGy36XF1157h1ch6tHHUB9c,8512
|
|
1015
|
+
angr/state_plugins/symbolizer.py,sha256=XEdY9g1G0xN0SbA1MDmSDsaOithnP3HnrsckeNV37m4,11011
|
|
1016
|
+
angr/state_plugins/loop_data.py,sha256=GAyGWwgmh914OPnxqIZ4BOGaNvlWmrHTxC136I7kYk8,4243
|
|
1017
|
+
angr/state_plugins/solver.py,sha256=A-tyIiIldNTHit2dlxA6EOf06BKaE4fFz4pmFCgpiUg,45403
|
|
1018
|
+
angr/state_plugins/debug_variables.py,sha256=LR-lsjnn6FVrEr8RCVkhA_gyeeh1jiHC92uP3EZNDEE,6815
|
|
1019
|
+
angr/state_plugins/log.py,sha256=hTx4IF7BVW47pq9ZdMRlDmh4O9Y2pyecnq9Ey5PBgME,2400
|
|
1020
|
+
angr/state_plugins/uc_manager.py,sha256=-mervKrD5a5K71CVAUxHrDW5RCduNwNxZXwW63L9bEA,2973
|
|
1021
|
+
angr/state_plugins/globals.py,sha256=pU8_VPSjLLsW2x7vr_f2uFRMEIobqDjXQJUp5YDbkNU,1593
|
|
1022
|
+
angr/state_plugins/sim_event.py,sha256=cREHpvrd0JbtIN8D-VtZ_foe6F0q0IMDz73S5ax3UWA,2088
|
|
1023
|
+
angr/state_plugins/filesystem.py,sha256=qkM2zCfcrSBjt-g3RO1VYbjHPNRSdvsNRQR_M47pqFU,15765
|
|
1024
|
+
angr/state_plugins/libc.py,sha256=aQaeS1IqcKnLw2PDZngoxwtJRx9FTXNLjkkbA-OeDzY,23597
|
|
1025
|
+
angr/state_plugins/__init__.py,sha256=AOCYC5r6YWswhEhBEdtNDK9d9N_qhAl902UMHyGi8QY,2419
|
|
1026
|
+
angr/state_plugins/jni_references.py,sha256=ufNi66U9-O2c7bzOv1cAxykcEu3uj6PvbIOy_CV2Z2I,3451
|
|
1027
|
+
angr/state_plugins/scratch.py,sha256=cq1kp8OBLwKNuBvaqAPylyDvw5whjL1A353R36UGK1Y,6210
|
|
1028
|
+
angr/state_plugins/light_registers.py,sha256=4BY_uGIPF-LQlsfLncsNWTd0QPQMjRPtF2y_N5a3mZo,6719
|
|
1029
|
+
angr/state_plugins/trace_additions.py,sha256=d1P4a-DdC0c2Fu5_KAhNzfLr1mylAR2wWSOMSwad7os,29717
|
|
1030
|
+
angr/state_plugins/inspect.py,sha256=9hXBRAL9C8rGqGdS9joydSsBsIrgu_pVLNmZeO_fqFs,11350
|
|
1031
|
+
angr/state_plugins/view.py,sha256=968XQAnGrPB0gHh0f6DDTEn54VlpwFjcDZgtAmIwCf8,12382
|
|
1032
|
+
angr/state_plugins/preconstrainer.py,sha256=Y25dH4-rVh2fKAL1Ks2_k4KVkcRtrmWg_UXV-i0PQkU,8066
|
|
1033
|
+
angr/state_plugins/sim_action.py,sha256=kcEa8CFXzICsj2NOW4sRPRPaPxlJ9b9ISBYFf-AkMGQ,9595
|
|
1034
|
+
angr/state_plugins/plugin.py,sha256=bp248QLhL-HcJes9zf6uSc6aUWs4rCK9IFqMjyZ0h8E,6870
|
|
1035
|
+
angr/state_plugins/gdb.py,sha256=CrilA-FPDNm7Fk5fWx9wOn_gVb4SRJyFyNPcef7oOr0,5175
|
|
1036
|
+
angr/state_plugins/callstack.py,sha256=2VsQY3LYbvj6BG1lwwW4CBHigxyfCX2vYnHIfcpmsF0,15506
|
|
1037
|
+
angr/state_plugins/posix.py,sha256=p2TjAl9k_CcmTS1-6QhKdM2ymBYAH2wnNW_t5oinZQ0,26774
|
|
1038
|
+
angr/state_plugins/javavm_classloader.py,sha256=QOkvHSVnoiaEKX6HK520viBemFpxXBcaXeC_csLSmhY,5589
|
|
1039
|
+
angr/state_plugins/history.py,sha256=f_d3QxcN0TYe2tZxCz1ojBKmb2oNjIAuKWYNZFEfL8I,19782
|
|
1040
|
+
angr/state_plugins/heap/heap_base.py,sha256=AqAAvg6_qZtoY5tVXOZL7wW2rRl2o7-AEjj9NxSxEWM,6282
|
|
1041
|
+
angr/state_plugins/heap/heap_ptmalloc.py,sha256=WMShu2fFMfxbIJp0YQ81c-U90nx31gh537yPTahsLf4,28222
|
|
1042
|
+
angr/state_plugins/heap/__init__.py,sha256=ajfNPVloK8CUpfd1z22v8dof55c8skshy8aFHG-aqy8,340
|
|
1043
|
+
angr/state_plugins/heap/heap_libc.py,sha256=HzcyHifKGn_acUQJJAWhH4yD8xedzhNp1VMIyEce5a4,1893
|
|
1044
|
+
angr/state_plugins/heap/utils.py,sha256=GnVCryZeTWiFvYYq1xTOd59A46wvqMygSRS5z6wUuwM,830
|
|
1045
|
+
angr/state_plugins/heap/heap_freelist.py,sha256=NZ3Sxfvsg1t-S694gHGQwnVz6dldZIXrDvKr8MceHYg,7918
|
|
1046
|
+
angr/state_plugins/heap/heap_brk.py,sha256=BIVTjFhkdcCz_SRvNAeYRCZQzSmkY2GTdtxDh_3cz3E,5439
|
|
1047
|
+
angr/analyses/cdg.py,sha256=UxKp30a1pq0q-FsgmutHU3sdXFwXOjlcal0wzX4EYJM,6229
|
|
1048
|
+
angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,16136
|
|
1049
|
+
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
1050
|
+
angr/analyses/datagraph_meta.py,sha256=Ng0jqLD5ucRn_fBXhYq3l6scs3kczRk6Sk-Sen1forc,3414
|
|
1051
|
+
angr/analyses/codecave.py,sha256=k_dDhMN4wcq2bs5VrwpOv96OowQ7AbZSs6j5Z6YbIpk,2209
|
|
1052
|
+
angr/analyses/vfg.py,sha256=GIfHSHMWnE6CdNJZ7CnGaRZa7ACvfZKhlTXeuSJ_v_c,72878
|
|
1053
|
+
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
1054
|
+
angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7030
|
|
1055
|
+
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
1056
|
+
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
1057
|
+
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
1058
|
+
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
1059
|
+
angr/analyses/analysis.py,sha256=2ABUppMZr97ZEAmxOQuXo-eyw5aF0ZASAii8SuuncNo,15685
|
|
1060
|
+
angr/analyses/init_finder.py,sha256=lSiBfmKExmhK7wsLGsBaJYQKjW9t7S5mlcH3U--B6CI,9259
|
|
1061
|
+
angr/analyses/boyscout.py,sha256=KIxl1chV_hQV2Unn-vnoYne1dmFVy1WTUdoidkUpQ8I,2469
|
|
1062
|
+
angr/analyses/congruency_check.py,sha256=QeYRrdrs_iluLLnKz3KUHkCTPRVl5PgM2T0ZXd786HA,16165
|
|
1063
|
+
angr/analyses/stack_pointer_tracker.py,sha256=tsiA8VHyrUsR9sCFh6CL0BS1Ubunv2pat6D3DLanDgI,38151
|
|
1064
|
+
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
1065
|
+
angr/analyses/proximity_graph.py,sha256=JB3_hsOh8WJVjJHI-yP0Q6M_-gJvQ0J3AlAU8wv-ARQ,16285
|
|
1066
|
+
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
1067
|
+
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
1068
|
+
angr/analyses/__init__.py,sha256=OALUWoktyrSLqwwAmtGA5nlZMKh5OxiXVxrlRw3Dtfc,3599
|
|
1069
|
+
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
1070
|
+
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
1071
|
+
angr/analyses/smc.py,sha256=0jU8fJL3i96ouFcwwOb2DR0l2Xxy1eWiY6ThWyUiRdM,5155
|
|
1072
|
+
angr/analyses/complete_calling_conventions.py,sha256=-XRKcR_NzvJrAdqGNUeumx9WjBAiE_k_1us9ERLo2FA,21115
|
|
1073
|
+
angr/analyses/callee_cleanup_finder.py,sha256=lQRn5rHS6mGNOqDh-UsxX-gs4cDpwQ6KNjvzQFVCdio,2800
|
|
1074
|
+
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
1075
|
+
angr/analyses/code_tagging.py,sha256=Gj7Ms24RnmhC9OD57gw7R6_c-pLfqSug-LVUMw_JmXE,3510
|
|
1076
|
+
angr/analyses/disassembly.py,sha256=ukPUguw1WhjsUsXSb-ZbTPbQeN2BuY_UneccNdru20o,48912
|
|
1077
|
+
angr/analyses/s_propagator.py,sha256=rnfqwx8-oIQCQHdQnueE6kiICqTk8KfVhUxatQVC05A,26223
|
|
1078
|
+
angr/analyses/s_liveness.py,sha256=wm3Rur8MKChg94xtdLQtdB4qzZXfADSL9pDnaE-4TtE,10257
|
|
1079
|
+
angr/analyses/patchfinder.py,sha256=yf8FwkWPVOrvMRA90dKZizVz4s4QE-upq6B0Xxn8wj8,5063
|
|
1080
|
+
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
1081
|
+
angr/analyses/loop_analysis.py,sha256=up6N3SZzya6N6OlKldo_MP36DqiY_tMbVdFWSM8fByU,9311
|
|
1082
|
+
angr/analyses/class_identifier.py,sha256=7zOIryNL_DrXW11GGzZjp6TPwv--2VZ5ZuSzYpXirmQ,2951
|
|
1083
|
+
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
1084
|
+
angr/analyses/typehoon/lifter.py,sha256=FGu990mwsMRvPwiRIcu7pHtfXQ54sZ6bVGxwtb8W9EQ,4523
|
|
1085
|
+
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
1086
|
+
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
1087
|
+
angr/analyses/typehoon/simple_solver.py,sha256=FH5akCpuL0Ib-JD1N3GG5WmS-9iSt4mu1lqmE0iz-5M,83320
|
|
1088
|
+
angr/analyses/typehoon/typevars.py,sha256=jM7hrW--xvqC8gNc_GCq-x_S_K4uy1VElm7QFjBZO1I,18188
|
|
1089
|
+
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
1090
|
+
angr/analyses/typehoon/translator.py,sha256=c1iQpt5zjf6L__VpsybhP8DmQnPHv4AD_bXdd4hpbLo,10814
|
|
1091
|
+
angr/analyses/typehoon/typeconsts.py,sha256=LV8aLJlC1DBdsKpQMzDKm4-iDZzT8KRA-lTa4rSvJWw,11856
|
|
1092
|
+
angr/analyses/typehoon/typehoon.py,sha256=dZlxpDf6o3ODeyVRwFioTxw0aXbFRgRY1zGqBo-_cl0,13688
|
|
1093
|
+
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
1094
|
+
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
1095
|
+
angr/analyses/forward_analysis/forward_analysis.py,sha256=16QXeMWGAUQLs9Y7vinNVFimiFrt-wYDGpaMWD9DSrU,23139
|
|
1096
|
+
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
1097
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=jsNSspZGRjtp9rsewA3qtBhVduJTR8WAK5rLNQOnlfQ,7788
|
|
1098
|
+
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
1099
|
+
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
1100
|
+
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
1101
|
+
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
1102
|
+
angr/analyses/unpacker/__init__.py,sha256=tBXwDMFKN0Hp8YP0DK-c6deo0Muc_LNopvoKKbzp3Tc,190
|
|
1103
|
+
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
1104
|
+
angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ7N1i99utC8Vkbtptw,3502
|
|
1105
|
+
angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py,sha256=DV-dDQJd6T_vRwowoPjp02mc8yrgsjabNrHtR3oGvTY,3963
|
|
1106
|
+
angr/analyses/cfg_slice_to_sink/graph.py,sha256=80erWbctYEpsLjpw2TNjntDLDGQFdYRo-c9zwvOYzEY,3590
|
|
1107
|
+
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=YaWvUc-iQ--9tnsCgHYy1lbe6M7cQJljppMPkJ0ZK_o,267
|
|
1108
|
+
angr/analyses/cfg_slice_to_sink/transitions.py,sha256=9Y1qG789dsAcv73FwgYtppUzPWXbKdV5qIfIZHfhfmg,888
|
|
1109
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
1110
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=czsHSar26Ry6RYyicOS9C9HRwFXDgjC7aWHOlYezM9s,28308
|
|
1111
|
+
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
1112
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=UfT0LITTEe7vXYUeRF7UJzTEyb9qOQFsKs5-TcQ03Ok,38199
|
|
1113
|
+
angr/analyses/variable_recovery/variable_recovery.py,sha256=I45eVUpOOcSobA_QyXl3aRNa0kppJH_7YOj95fPPTdE,22272
|
|
1114
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=Sjh3bZZfnEaich7PLTitaZITSMW7agqgyxck4gWKDbQ,21465
|
|
1115
|
+
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=Ewd0TzNdZ_gRYXtXjVrJfODNABMMPjnuvMy9-Nnyui0,16813
|
|
1116
|
+
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
1117
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=TgXr1v0G8CYixdCypiOee4jZPe6Zr2kBA6CKkQ4KTlU,56189
|
|
1118
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=0s_851TqlTRFpHAh0W_SZayze1xAZ2G8CZ9JF5zp7_M,29071
|
|
1119
|
+
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
1120
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=MjIfv1iTNDm5TUcXN19SQWXzYFq6zAZdEOJrGSOxuOk,47838
|
|
1121
|
+
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
1122
|
+
angr/analyses/propagator/values.py,sha256=L41ue9PjPpA_tEe8YlTwv3ly9o3Sbo8uQESALfbUr4c,2026
|
|
1123
|
+
angr/analyses/propagator/__init__.py,sha256=lxvNUfUJYOPqO8se8Nej_NNCObLt90QFIrZhzgt5a_o,114
|
|
1124
|
+
angr/analyses/propagator/top_checker_mixin.py,sha256=Ket9h9TILsceIi3YoMbjeDF8PA6n3BelRDaL59vheMA,8852
|
|
1125
|
+
angr/analyses/propagator/vex_vars.py,sha256=PRZOccwfdNRqEywPU-Mor3LGhakM5ItK1lRfay_T8vY,1462
|
|
1126
|
+
angr/analyses/propagator/engine_vex.py,sha256=ZqSKJ3PqlBI-lvLZFwl3beiknNIyUxHf_lGvzyhlIhE,12522
|
|
1127
|
+
angr/analyses/propagator/propagator.py,sha256=6YfXkqt6I2IgBf8Pt7NCDUucnjKKNX9kMxzYBNdaq2A,13257
|
|
1128
|
+
angr/analyses/propagator/engine_base.py,sha256=cZOwG1Qn44aoQ4-L5O4yQ_FhA6k0jwOMNfB27nyK7Tk,1960
|
|
1129
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=pVSnp1OJ4vp-0aQS2ifPeU39UvEnlkbWN12NPpiiRDQ,14042
|
|
1130
|
+
angr/analyses/deobfuscator/scope_ops_analyzer.py,sha256=g8WjhWrZu0lcUjPfF0X9BpfDs0IzDYtF4VhaRTld_II,2189
|
|
1131
|
+
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=8l0SHZdG0SVcnUmWXKxZ1xnbcSGovIq9g1ylpvb9zis,3429
|
|
1132
|
+
angr/analyses/deobfuscator/__init__.py,sha256=VcJ_Bv6E7Tm341ZvWZ6BcOMo9KfjsXtP451iFBXDNGE,918
|
|
1133
|
+
angr/analyses/deobfuscator/data_transformation_embedder.py,sha256=QXhldQ7VB5gam9YByT1qughrEwweoR6UAoW3Q7EVtUI,26674
|
|
1134
|
+
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=_VQv2E2yOAZDAi53smQL5KcSLNe5FMqNUYC8jNSYXGs,1957
|
|
1135
|
+
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=bfk9MxxZUq1cF2wDN1_QZoW6pw75hHcUq6VsaIVzoCM,5739
|
|
1136
|
+
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
1137
|
+
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
1138
|
+
angr/analyses/deobfuscator/hash_lookup_api_deobfuscator.py,sha256=4m_RTSxqOwQyI0svzYg40H-o5rHg1BXWTGipiUUkx-s,6364
|
|
1139
|
+
angr/analyses/deobfuscator/string_obf_finder.py,sha256=rQ8A91sfnXH4h9EBIYl1yEaqGHZYZIT_Z9ccjp_bDCs,41722
|
|
1140
|
+
angr/analyses/loop_unroller/__init__.py,sha256=rKkU8IPFzZW9vRQsWforH5rSoGW_iq4SZjy-mms05Bo,103
|
|
1141
|
+
angr/analyses/loop_unroller/loop_unroller.py,sha256=fZunvp6Gk8Jq4dLVb2GKtZW_qWXcYGFX17zgv1ZtU_s,9429
|
|
1142
|
+
angr/analyses/loop_analysis/__init__.py,sha256=rK--sAfsTW_DUTMEovWbtCZ4vWO2INQQlporQDawj08,103
|
|
1143
|
+
angr/analyses/loop_analysis/loop_analysis.py,sha256=JBMEeX77660PKtkWjgZMThPAE87E9TOeg84Kajuazps,16539
|
|
1144
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
1145
|
+
angr/analyses/reaching_definitions/subject.py,sha256=DxhzWhZz_EJo-Cs-u-kB29M-sVxCqtfXkSv72WEYZp0,2021
|
|
1146
|
+
angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquqg0_u4TMBbKVEupJrL4,15554
|
|
1147
|
+
angr/analyses/reaching_definitions/__init__.py,sha256=lqe-S7Jl9ZlCGgJT0kUZtNMLzmySokDz72v0pQBHh4w,2060
|
|
1148
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=1nnAKC_ceWNYDHhQz6--V2T9il3zYnk04sIN_AOSH0M,46544
|
|
1149
|
+
angr/analyses/reaching_definitions/call_trace.py,sha256=osabHpgiV-dvifwej3mwOxckeZmG6JIXb6FDSCFzfVI,2170
|
|
1150
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=Ky6bFFdjMlsA3G2A3uNp99U8zOu1wktvXBvr-WDfq18,29276
|
|
1151
|
+
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
1152
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=1v-4V-KXjY9CO0616lgmow_ba6qMDDi_v_ET1YfmPAY,45724
|
|
1153
|
+
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1154
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=70Qv60LUnVv7IJjoSo20FLoPRiLMhCLPYIJh5YK2FBk,23727
|
|
1155
|
+
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
1156
|
+
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=elHg3doPsR68R3mZJM85qmDhy2OaCc347O-RaUaTDqY,458
|
|
1157
|
+
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=oO2HROZZWsjPlCLMxEo7T4M5JkYRlkc9BLLYLwY1SfQ,2370
|
|
1158
|
+
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=dPGE2mjCFCCKX-0ixzJ_dwU97QAte3jzkLZGdRMz4YQ,11416
|
|
1159
|
+
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qh7XJXiSuT5dwUjnYKSo6RhGQbsMjJm97mma1gypNG0,8825
|
|
1160
|
+
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=YRNWe87eQ9aJo-m0IvN_nRIqQLFJxb9kfN3cboN3218,8124
|
|
1161
|
+
angr/analyses/purity/analysis.py,sha256=pG9jRleyeVsKOh5GSdRyNpIySfvJ5NM3kQj-_hLmL-k,2941
|
|
1162
|
+
angr/analyses/purity/__init__.py,sha256=D-ct0jy31VmQto-j_gBGL66mqBCmQQfwSXY3gSfq2N4,335
|
|
1163
|
+
angr/analyses/purity/engine.py,sha256=reX8FvtoSt3azaJu5ZMp8FkSY8Cmy3N9hkUkroQi0cE,21687
|
|
1164
|
+
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
1165
|
+
angr/analyses/cfg/cfb.py,sha256=uL1Hq_-X6vqBCbK2SfH-R74duLvzcLXBiJW3moRv3c0,16672
|
|
1166
|
+
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
1167
|
+
angr/analyses/cfg/cfg_fast.py,sha256=PEybtbOZuQEYowDTSTq8egRhih8mJ7kbHjkyxKgtuuM,238546
|
|
1168
|
+
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
1169
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
1170
|
+
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
1171
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=4lKrmGVfCGt8l3Nz9zH6EcUcAVLwyOM7p81DlxUVNGA,148351
|
|
1172
|
+
angr/analyses/cfg/cfg_base.py,sha256=Ro_BAUJTk_yjPlPq2tg7yMfBgaaAxXsaPSPmr6SNG-o,126667
|
|
1173
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=5fGcld7xG9Tph7Ckwf95ZA3SvwmZ2ezEG5_clNrunkY,109107
|
|
1174
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
1175
|
+
angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py,sha256=jmCiDkloyyqb6iRfjXBlu2N9uwYhiqeiXWhnUXW27dU,2950
|
|
1176
|
+
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=eo9Bn-lVAzsx-Y7ncr647enHmWyAZIehc9_Q6Uq7xc8,15517
|
|
1177
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
1178
|
+
angr/analyses/cfg/indirect_jump_resolvers/aarch64_macho_got.py,sha256=K5ngQCeITowIQ4ZkjovtizVoP-nLNS39ioAMvueobeE,2337
|
|
1179
|
+
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=oBV5VAnJFQCa2zdWQxEY7DR8BamLdisBd0V_X3glH5o,921
|
|
1180
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=6ITAIIPBST7-AuvzLMeUsU07H8UhehWmnCn7BAQ7Ndw,1553
|
|
1181
|
+
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=zli-mLIK7_UFE1zvUdzPXTjUfWeNeBx5FEbcLRNKl7g,1871
|
|
1182
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
1183
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB91fuXmmDPWQg1YkWNz015OiRQfNhE,1777
|
|
1184
|
+
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
1185
|
+
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=KzX-BYgEM1npZYipMvCU-YJ4phdLyoM5LnrxJ0LEPFg,5347
|
|
1186
|
+
angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py,sha256=ZSzhpqSIdlXXheMDmbOsgpChq5yWxOTYQR341vAMTD8,3160
|
|
1187
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=j7Kf1TOxw5h-WfyskU8uKaDEFj1fkiJOkTVTplwK5ag,2927
|
|
1188
|
+
angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py,sha256=iADDFxnMdIOaN72a0FcODG79dcMzlesYT6LGmQKJxAc,3728
|
|
1189
|
+
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=nc6JSi-h0xaC-xbBIZMXuQ8qroo1T9AIHUwyDswMZjw,1810
|
|
1190
|
+
angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaakDHZOCXnUF3eEybRVoue4,24978
|
|
1191
|
+
angr/analyses/data_dep/__init__.py,sha256=ea8DhrS1mec_6CSSv6QxqXtcaC27DxjYM2o0acVQpuE,401
|
|
1192
|
+
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
1193
|
+
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
1194
|
+
angr/analyses/identifier/runner.py,sha256=1X8lo2ZTBSJcK9fOkTE1ox-HtdgTwKDQPH-bABfvObo,13760
|
|
1195
|
+
angr/analyses/identifier/__init__.py,sha256=82MTyuTZqSyaGz8iIMkkoTm-nIpQfXcoYDiifDuMLfk,96
|
|
1196
|
+
angr/analyses/identifier/custom_callable.py,sha256=3Lg29e-cLyRJmiX4vT65rU464xLh70p-h7idX-iiMbI,4752
|
|
1197
|
+
angr/analyses/identifier/errors.py,sha256=xVDh09xs7TQQBq7Y1ijdVqsclhgBNbIt61o4Lba-lVI,194
|
|
1198
|
+
angr/analyses/identifier/identify.py,sha256=w2nsv6YBXBFibsGk5yvsoVDO4Mp6Y-ga6jaG6ztp4q4,32657
|
|
1199
|
+
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
1200
|
+
angr/analyses/identifier/functions/skip_recv_n.py,sha256=o-D8_rlvr9ILIcdh6-_F534hFOkxHMKyTqwYFgazt0M,2884
|
|
1201
|
+
angr/analyses/identifier/functions/strlen.py,sha256=gbtQT2XXneGYOlNBcmgIeJo8cLCdx2xfQx-OrJH8mkI,811
|
|
1202
|
+
angr/analyses/identifier/functions/skip_realloc.py,sha256=Y5x5TpFGGXys9lKYpAigNcxS5xodCMjtaA-RYi8MgYg,3204
|
|
1203
|
+
angr/analyses/identifier/functions/recv_until.py,sha256=GWmQbXch0FoxXB5X-JH4Op9bj3bkBSa4m_F__yMUf2U,11561
|
|
1204
|
+
angr/analyses/identifier/functions/skip_calloc.py,sha256=hENwon4VCSHRehxAUzeVOo3MLuZggYCiBjUk_xdhCH8,2416
|
|
1205
|
+
angr/analyses/identifier/functions/strtol.py,sha256=e_XbqYSa-s3CjDcPJkSaVnDjnTp2Z3ian67BXMxkrnE,2437
|
|
1206
|
+
angr/analyses/identifier/functions/memset.py,sha256=KsITPGDbdv2mIH0SIsaeiwcBuCAgkEt2TIfRNPwkkH8,1226
|
|
1207
|
+
angr/analyses/identifier/functions/memcpy.py,sha256=LD0UDK4CG0Ffej2A0__hJr3EHpZhon6YQMe-lFbUFFI,3228
|
|
1208
|
+
angr/analyses/identifier/functions/memcmp.py,sha256=8Ns87XcNuxhiRldgk4bZd8HstqrYyM2DFk7vQRr7_zs,1974
|
|
1209
|
+
angr/analyses/identifier/functions/int2str.py,sha256=3ooGmIs0Lfcls-ZeiKNFZXF2vN1X8BBlI8u1_nudAH8,8403
|
|
1210
|
+
angr/analyses/identifier/functions/printf.py,sha256=0E1-lG-2pdZPclmEXgfiQShD3xntQS3fE8Tz0gYOAT8,4365
|
|
1211
|
+
angr/analyses/identifier/functions/__init__.py,sha256=mMMRS5wAMgy9yazu7tiMWzp-vTQ5UToyba_X7PogA-Y,1080
|
|
1212
|
+
angr/analyses/identifier/functions/strncmp.py,sha256=CXoeiJmlEUSGW48SFkpcJoN3ZeCDEJgqSELjcQHDxxg,3350
|
|
1213
|
+
angr/analyses/identifier/functions/free.py,sha256=NbWtNUmGh0QBpRLV8IJeARNZLy4l_JCJLOL0YUeR8qI,1991
|
|
1214
|
+
angr/analyses/identifier/functions/strcpy.py,sha256=VYidctE-t9LiXxYAq6PW6_Ens7ar0Mo4FNmFq5jLRpg,1225
|
|
1215
|
+
angr/analyses/identifier/functions/based_atoi.py,sha256=snS0mY0XdIZ_0cSo8mzCN1pxA6HKGrujL0QOlqTN3qk,3272
|
|
1216
|
+
angr/analyses/identifier/functions/sprintf.py,sha256=uxQMdJzwzlB56w2higJwO0YA5jZkIel5XtkqerBChtQ,4177
|
|
1217
|
+
angr/analyses/identifier/functions/fdprintf.py,sha256=CYGzKe7WYokoIQHneRWYbGlgVnVkX5siLjplDCa92LQ,4411
|
|
1218
|
+
angr/analyses/identifier/functions/snprintf.py,sha256=3JSZWZz52LdgnAez9ZyGDkqa-_wj1TnNY1sv6mPqFdU,4198
|
|
1219
|
+
angr/analyses/identifier/functions/strcasecmp.py,sha256=vwJUmmhe-uK-D4oMoe9gjpVQC8FCl2yGNduZ8OM0qZc,841
|
|
1220
|
+
angr/analyses/identifier/functions/strcmp.py,sha256=Cw5_4XPrVn3gYPBaoRvwHU6OBX0av_7uEel9UCxMK6U,3512
|
|
1221
|
+
angr/analyses/identifier/functions/strncpy.py,sha256=y1w7A9255j91TGKVuJLXj67lADci16EzVqQWzJAkTHo,2046
|
|
1222
|
+
angr/analyses/identifier/functions/atoi.py,sha256=4ccnAkkUydyG_c-kvjyT_PLZfSqv_XSJIBQZ8zataC0,2125
|
|
1223
|
+
angr/analyses/identifier/functions/malloc.py,sha256=2ofilCKAw7K7z2AGLEhykYwZmH3F-goJomplglhwDxY,3863
|
|
1224
|
+
angr/analyses/decompiler/return_maker.py,sha256=chDy8OKhAV-FCmXwYiQpsgBLa4UNwuNhDd-V5Eey9bg,2637
|
|
1225
|
+
angr/analyses/decompiler/condition_processor.py,sha256=9y_pZLr1_MbTwH5IFyXdW484e4bVnsjA5gooqAjZwzs,56647
|
|
1226
|
+
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
1227
|
+
angr/analyses/decompiler/block_io_finder.py,sha256=rXDbv7JkAlSDuzrdLtYp2QR2N4-H6mAIVhUZOTBfuXw,10935
|
|
1228
|
+
angr/analyses/decompiler/redundant_label_remover.py,sha256=m4l2AFnhQmZEpb6urEb2UMHckS7c6O5DWVh3grJR8eM,6215
|
|
1229
|
+
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
1230
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=AeC57IjdB2ZpNGU3Oqmo5mI1ggBQMG5FLMew48fAE6g,23629
|
|
1231
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=MMsmlKJbhRuDQHqll5waUaw72JlCQZHYMXKpp8LknAA,10589
|
|
1232
|
+
angr/analyses/decompiler/sequence_walker.py,sha256=_-kUn01iU7iGdrzOPpwzquwk9CVDUL7QfQkv2OT9r8Y,10083
|
|
1233
|
+
angr/analyses/decompiler/region_identifier.py,sha256=-SCQrkvOwyC6E14bMEKu9wqFedJ5gvxQ7Smdf-YMqrc,55762
|
|
1234
|
+
angr/analyses/decompiler/empty_node_remover.py,sha256=4CdxTM1AVmRoEdRIwJg1YEy10AgkEoRmJ8SU7xGbKnM,7424
|
|
1235
|
+
angr/analyses/decompiler/seq_to_blocks.py,sha256=4-tqstendHHO2J0WD3JHQkm8c4c2KG3AO3mYWrn4xvg,569
|
|
1236
|
+
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
1237
|
+
angr/analyses/decompiler/clinic.py,sha256=bMtjUdSPMv1onihp49KajmhmYjkr8A5iNBKquoO4WJI,166977
|
|
1238
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=_ejEgyaluI9GhvUCufHFurNPnyUAbVJStje8cqFg6Cc,1800
|
|
1239
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=9LykKUTaUVH6yg_hY9HdjTA4xfv1xBtfklKxRn2pfuM,15443
|
|
1240
|
+
angr/analyses/decompiler/node_replacer.py,sha256=jJd3XkIwFE07bIbLriJ6_mQEvfhm90C8lqlrL5Mz1Xg,1450
|
|
1241
|
+
angr/analyses/decompiler/decompilation_options.py,sha256=V1yXoczDwHpNGiU2zlknJxbPzS-Vp0c5gGiepCznQEE,9475
|
|
1242
|
+
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
1243
|
+
angr/analyses/decompiler/graph_region.py,sha256=QxvhkSKg1MM4KOzVhj5YoZceu8bX0LTQBaNUfdWMGx0,19172
|
|
1244
|
+
angr/analyses/decompiler/utils.py,sha256=Iv5zI1kh4Jr87nidiHI8bFatos2ju8JGjwsPSOTmDVA,45079
|
|
1245
|
+
angr/analyses/decompiler/decompiler.py,sha256=DayEynVGlG-kVy2ESVKDmVTpxPJlT8tng6mbfezzJEo,34960
|
|
1246
|
+
angr/analyses/decompiler/goto_manager.py,sha256=z_1QXrgqwNQ9O7WsfkxPLr2aY7Lt2cdd663zPpPT8Kw,4043
|
|
1247
|
+
angr/analyses/decompiler/block_similarity.py,sha256=jCcopBr_QQfOHm16H2XZoWFMwVwH4rAovf0WyuFLUv4,7036
|
|
1248
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=DSfDUw_86-tu46n3oAXT1UmM1jDduqi5ARdZhEtn-Is,100022
|
|
1249
|
+
angr/analyses/decompiler/jump_target_collector.py,sha256=CucT99luxIVrioM-keMMjyNKWE5QaXEFQOFphtyU8b4,1189
|
|
1250
|
+
angr/analyses/decompiler/label_collector.py,sha256=fsCkldy8ZKH4FjkREByg-NDmfCd7Pmuz2K1Dks9oVjM,814
|
|
1251
|
+
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
1252
|
+
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
1253
|
+
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
1254
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=y-xbSi6TFGSV4aKX1Up1RjktBW1dovoSApXo4DKGtr4,155213
|
|
1255
|
+
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
1256
|
+
angr/analyses/decompiler/structured_codegen/base.py,sha256=gDmXzMg6Ky-GEmqRDFCgrooDKHyN4BdweKPqsw-DJco,6034
|
|
1257
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=Nf32Oj-9UK3wkBeG4t1d8HwSc2qRbpfL_Afty2oa98w,19026
|
|
1258
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=9o4iwJGNnDq7rfx209N_-2ySScJlcka2j3iBQBpWDHI,12218
|
|
1259
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=69fnpW9NfT4HkIrIVWhnh3nj_TERQuDT3OR-q9caago,4149
|
|
1260
|
+
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
1261
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
1262
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=EMH_-oStTW4B6-qas5628Cb34bRUDcDBCxGFiiFEECI,11712
|
|
1263
|
+
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=NAwVcBYh-BQo9K7nfnUlNDBAYflfFMgBYzsVD3BwiN8,1898
|
|
1264
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=uc_wiLXuhMXZMasL22CsB8iS4n6bBXVWrmLUCetlIjU,42309
|
|
1265
|
+
angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=pCU9xaYnf2-xyeRKxAs5oIJ1mOADVO3jfNy6vjDIHrA,15422
|
|
1266
|
+
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
1267
|
+
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=22IAXHP2_SDkFjIWTuqouIAthruAotzKA4uiKSipH7w,739
|
|
1268
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=TFN9WQKjQTml8RPA5me777st3mOad4Ret-BYy9AngKo,26642
|
|
1269
|
+
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=kigkzU78eNe-zD16hUI2YMNt_jHvixpohHpnLhAHMlw,5437
|
|
1270
|
+
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=mZx8uuhJWnnn-Ta20ZMmZEkCIlXtTsv3_Hk806hc8_M,3510
|
|
1271
|
+
angr/analyses/decompiler/dephication/__init__.py,sha256=xd6YSsoXLKVB2g52l-TZGsDwN5Vm3p4b35lqAYcrlhU,280
|
|
1272
|
+
angr/analyses/decompiler/dephication/dephication_base.py,sha256=C0ShonhyTRXUxhiouIIDBKwE4xGBGSa-_c7nMyTrlHA,3450
|
|
1273
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=XBONxotArvZiIpzLhU3UpuTTvwoprsi_xwEIljLhdjc,18663
|
|
1274
|
+
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=j7bVQDXeE2p9wPqV-Op0zViTbcdIP_XO_YqIXv2TuJQ,15774
|
|
1275
|
+
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=OB3wLoUtfSTyZGIynmEjd4vhZ7DGtbrzHum6myLHA0k,2393
|
|
1276
|
+
angr/analyses/decompiler/notes/deobfuscated_strings.py,sha256=f9AtSSVIB7kAlPUlkLxqNodco4KWbYivPV3Yh8KjVTo,1877
|
|
1277
|
+
angr/analyses/decompiler/notes/__init__.py,sha256=4e5yTEQr5tnTQt8BfsMXqRUUpWPaQIFLzsgNVx55VJw,181
|
|
1278
|
+
angr/analyses/decompiler/notes/decompilation_note.py,sha256=MTFHVMlfmJGrKGuvlHppcIEFR1FWF9xW8_0U0xoFOUo,1352
|
|
1279
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=NNOB9Q2SrBgmBrSXy7olVwn1-CEv3ERf0FAQoCVdnbQ,10689
|
|
1280
|
+
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=QYrSLtD9zvfJnU8VwFa0E7NaDfKkA8vF32s2G08wTho,24926
|
|
1281
|
+
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=12ULJcBgIlpSkt5t-xAZzwqpL2-G_8tnStJAnXIhTQY,6093
|
|
1282
|
+
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=xVY1NUqFudjdcFFO5RAfbdIlHyCRPLYDVPM8Z4J6uic,3832
|
|
1283
|
+
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=saxgjw416DtUlMsE7kvLL5pTr5CUffRNHWwvXhEe9-s,616
|
|
1284
|
+
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=YSmBBC1MIr4Na1DDFiw-309nkyNTnL-9hucM8gZf-C0,3351
|
|
1285
|
+
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=FPTNUKPB-7kABEXntq6x5pUfVzGgVR25h18h2HTTv5E,4422
|
|
1286
|
+
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
1287
|
+
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
1288
|
+
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=iU2lG-O0HUqxkKtY3ydmKh2pL1TPxEttdUV_oiB3qn8,6331
|
|
1289
|
+
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=kPWajH8__ap-7713B-rT3Dun_O1gYW-AoS5gJHRoMlY,2610
|
|
1290
|
+
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=ZoDPIxXjvj1Xm8VT77cxXTAPvhdGU3UmKDIcu5CAIQ8,32791
|
|
1291
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=2Tb4zGnFA5hZH8oI6t1hoRstGDmOBsOoQxf6fU5Ct7A,1105
|
|
1292
|
+
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=8gPWhFTcezgO7pZ_v0pxR7pweds4_GrrY82ur6Nrlf8,4796
|
|
1293
|
+
angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py,sha256=GLyoE2xkKEYdf7JF1eS9a26UnSAemflnaKznPdeBjBA,8029
|
|
1294
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=V5Vm1zUGjsauyOYXbUgDfZEgmChLbY8wnvmcRbfdMk0,1278
|
|
1295
|
+
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=vLXt0ekjRep4SgaNq1wyxVkBTzOMTa03d3rgkjUOcUg,995
|
|
1296
|
+
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=fXV_a58W2X30KCanYeSHdZ2yPcfDlyZq_OkYNMkglrg,6420
|
|
1297
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_memcpy.py,sha256=lg_YK5ahVKf14sLvSkzwhvLOZdt78b9WnoyT8Ip6M_w,2944
|
|
1298
|
+
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=09PA82Sg2FlBp2XZd4-WSES-8BQesXPXvIlpuuGByvM,1306
|
|
1299
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_memset.py,sha256=NTHFIi2jPUe0t1ZlGDs6XxO9rH7hc69m4Xjjf9a0kHA,9805
|
|
1300
|
+
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=UIdsR1_ST2-NGXR5QtKM0GcuSd8teKOhafTzb7UvTO0,1142
|
|
1301
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py,sha256=jaZJu0oo8zEuvvQ30IqxeH3CEIugZKBkVktK3SCzWFY,1010
|
|
1302
|
+
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=xLWWFtcbib9a92X__ffR2M306p1w4pBGZpIcVI0AWu4,1916
|
|
1303
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=AI9dPPcilS04SzkPJ4IpsGtWgH_U2QHnDodEG_kL7Qo,19300
|
|
1304
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=d-O_rIm0OrwK88P0zYBZcOY0ewTdCp4bnkJZDdWUUVw,4883
|
|
1305
|
+
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=STmu5FE0EHOkCdxFJt44DhMAjbAagnuics5VV6aNmnM,2110
|
|
1306
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=VJCK1yPM2DBQpxuJ3ED-YpOfmDSpOE4pUdD8rPkGAkA,11130
|
|
1307
|
+
angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py,sha256=5Gsq3DSQEWt3tZSkrxnbAEePkKC_dmpoQHZ2PVNlSfs,1158
|
|
1308
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_derefs.py,sha256=Zzsa_dbQmgirchst25pK6kr0i3tuuuxcuqb3H0Dz4ps,593
|
|
1309
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=0R_ja5u2fO_BMSpfSk68sDMfhwpvBpyCBKahQh-SB4w,3997
|
|
1310
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=YMfsqffIzsB7YslHVohBOeOWeNJydsrBowJ_6oD1QyY,1909
|
|
1311
|
+
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=KRjv1VUMmzkmax_s1ZM3nz24iqz1wqInMgJn3NR9kd4,1788
|
|
1312
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=Z_C6pLZMJ9b15W3FvlcohfT9cxgloeCXLiX2AcN6fUI,5167
|
|
1313
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=1pbXLE65KwREUoB9GqCXBgz-BeUrzXxoIRFUYZAnBVA,1133
|
|
1314
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=NpjPio84lBFY76hPyvOWChRo1jgFEj9XKmSh_A3A-bg,1430
|
|
1315
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py,sha256=nhV4URuLjH_G-te15cJJ3O2-9VJvpOnkRJjdHSBRoko,1481
|
|
1316
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py,sha256=UGOXLJuW2nDGILv4x5RqoowZxJ3dNq1pdCp6DnnRaUk,4137
|
|
1317
|
+
angr/analyses/decompiler/peephole_optimizations/shl_to_mul.py,sha256=LHR5izaUNdsYIHJYNvf_14wdWrFrMqgqAesYM3C2sos,788
|
|
1318
|
+
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=Qwodlh1Lk283GqSEWo8bI2F4yR5_VnOcJC9xO8y_9Jk,6503
|
|
1319
|
+
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=eLy2wdVZgk9s7yH49T6-8mTkQhXXWtcoUmKSs8KB6t8,9302
|
|
1320
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py,sha256=LsLcmnVNsjUJFzirktx0rFApex0ZXzn8T8_Z3ZGZH5A,1262
|
|
1321
|
+
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=-eQ3nI-3-aeD-2dsA-H1NS5N6JtcCWeBTpjFiN94QBw,1774
|
|
1322
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=yzXSuKjmJixB-ElBT2yMp1lgrdU_8JgaD0ayNkXj_4E,8666
|
|
1323
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py,sha256=lxDgPnnkiFEnYreHvHM0bBP_-udl0WUDfUx3B4_YGGE,984
|
|
1324
|
+
angr/analyses/decompiler/peephole_optimizations/utils.py,sha256=KYDiAt0PUA4PcOlBK-OS0aBr16_ZSETMISPAnaUJiLM,724
|
|
1325
|
+
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=lq41TsLU8kSEduzt66i-Jva_HB5Pqlg4Q6acO-nGAYw,1612
|
|
1326
|
+
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=sJV-8aP9KUx5Kt7pZmb3M28K3z2bGD3NWJFZOdYaBYc,2662
|
|
1327
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py,sha256=XuR33qLQRVD_fX1kqyAdG2NNi4o6bJGvvxXD8uzfzmw,963
|
|
1328
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_wcscpy.py,sha256=I6rvD0_T9vfBuwsPaeMaRqsyhUiAET5q7SI8irlQSyg,10120
|
|
1329
|
+
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=zljXiUnoH6AwgAoXVRwz9dXEedW7RiUTkHvBMZIA-o8,1140
|
|
1330
|
+
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=-V60wMaBKz1Ld1NcaQ8Dl0T4Xo9Qq6nfAQpXJ-MNsDI,1379
|
|
1331
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=3ByEh3bbqaIeWcniCtKqzWFQqsULfeVEJlcEopN9iq0,667
|
|
1332
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=E2HMxTqzmuhvv7PhT3HhnRWmBCe2b9cTfr57J4UoGds,1883
|
|
1333
|
+
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=NU1D1xqyQi4SaCUrJ9bk51-hjcFNseQgqD0wgQkh558,2049
|
|
1334
|
+
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha256=8TLjoRzG2ym6ebc8CNj9vj0jUYI7pMhKrDovfGSxUKI,1096
|
|
1335
|
+
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=hRx0tuK_s47AEgPfaWYbzh5lPfBhx_anGDTVoIxHYkg,1990
|
|
1336
|
+
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=hrtAJaWTZgphP6Wex50uz9vHIBeXy1ie5M5CBSruY7Y,5144
|
|
1337
|
+
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=4fZUQGdEY2qVANb6xQWZJRf5N7X78R_gyECxzhC_5vU,2384
|
|
1338
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=--C1JQluHt8ltdfUPBHvRD3SjW_ZcBU3oWdFwpCtpuw,1072
|
|
1339
|
+
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=fXq-qFe7JUdD5LdtUhoA9AF3LnY-3Jrmo4t3ZRJIIiQ,1414
|
|
1340
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=FUf1bg9nADlwT1upwTKcVhhPcvZ98C-8PlmkWoHqwZ4,4787
|
|
1341
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=u2yeH29z4Y3vZbfM8zJIbgyuYiZfUE6J59-hCWzyQv8,4510
|
|
1342
|
+
angr/analyses/decompiler/peephole_optimizations/optimized_div_simplifier.py,sha256=M4GxEWKs6V9aEYejGluZ8w8QpvPKpaESeFFzid88HjE,14208
|
|
1343
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_wcscpy_consolidation.py,sha256=TfimMI0FwpRBrWVQZy4m9XAf_BBPInu0zfywQ9CoGgs,12712
|
|
1344
|
+
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=HY6EQkThiyMaahz3bodJUqLBKWY2n4aKGbKyspMXN50,1641
|
|
1345
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=tezg1gsxxH-iMmo_346NYO0YHwJz_Gpb8Ztm526o0G4,3300
|
|
1346
|
+
angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py,sha256=vubbwFpqli8hg0TRXT4nyFRTVbQn4k5TJslJl7cUjLM,996
|
|
1347
|
+
angr/analyses/decompiler/peephole_optimizations/modulo_simplifier.py,sha256=M09Whprj6tOJdFI5n9a7b-82YZOgnm3QvIbISJ9Lvaw,3724
|
|
1348
|
+
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=Dv3LmnS94CFlgCS7e99-6uKSa32yfiIJKYCaCv7ZUpo,5009
|
|
1349
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=JK8VIopPY29wgbd4EDGI-uAVfphARL4bqByj5iDRujI,1820
|
|
1350
|
+
angr/analyses/decompiler/structuring/sailr.py,sha256=aJCES4r5HaLs-l1tXagIPtXpWnqY_uTlJn7wCYKnwTg,6127
|
|
1351
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=iWFZdM54C1q2ezL7ouhH6rygJiGO2OCUH5JKXKgrf6w,7422
|
|
1352
|
+
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
1353
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=YRRj7BJh4MY1waeTKvQM_wf6_Fs4MpWleLCwUldkvuw,48754
|
|
1354
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=SydmYfNYiF_YRF9FBAIZ5RGSy8jwA9mQ-ll4GJb7S9A,12971
|
|
1355
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=KS469bbxbfvTApRNHB2yr-cvIMEr3Qf-fifVqiIor18,171904
|
|
1356
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=5aznVrlZHX1rljKfDQV8hfeSLnEe04zy18GBsUaiF9s,50818
|
|
1357
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=pOP30-Oywhp4VRKlBBYt6rr9UD8_sROq85k-tvtXvC0,22147
|
|
1358
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=cr_9dkuQdvlhErrf221V2ugpNDj0ReAwO6FD3ksf9f8,28307
|
|
1359
|
+
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier_adv.py,sha256=0meq2RzaJUXk4BzbhPUrqMEBzYP0ubZHi1DkDAaQVJQ,8661
|
|
1360
|
+
angr/analyses/decompiler/optimization_passes/eager_std_string_eval.py,sha256=LL0RV_fE7L9KgYqJoIZnRJFVVzSAXiIPKWSCvaHhSnI,7864
|
|
1361
|
+
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=x0iWsQsWZOUPujcZkAa3DmVqQ9HjCU3mO-dtTUBnRZo,42855
|
|
1362
|
+
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=pZLSzEpeg-xsqym5-EjegC6CrpxKGk-eZML1sb--f28,4834
|
|
1363
|
+
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=INLmzfGDMsVzyQF2S6uwiQSoNcxM7DUBJrdWlL2gqlY,1325
|
|
1364
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=ez0tzV2MqNVBW7hhvNyJWQpJQUntLA4etK606hXixJM,5206
|
|
1365
|
+
angr/analyses/decompiler/optimization_passes/inlined_strlen_simplifier.py,sha256=6vWTuzmiYZNizOk5QhqoY7FKzbvDW0dZFoh0lje9NB4,11240
|
|
1366
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=iOaouK9G6GkDyQ-IH_VVoi_JAyiriUK3YBGN0l13LaM,2084
|
|
1367
|
+
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=WpBaiC_SkSaOwGX7hKe7R3BCJs-uyndKwoQTRk5dJbE,8950
|
|
1368
|
+
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=w_c7RU4L8qYDyyjW9dOmCInqBcJGEBpquMu3T9G9biI,8037
|
|
1369
|
+
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=A7azHMeTQDXPFj44lI-mK7wnbJZ6cdSL-lwwqxiBTk0,6420
|
|
1370
|
+
angr/analyses/decompiler/optimization_passes/static_vvar_rewriter.py,sha256=y9TXexbIkW45CrhTmvqHIzVj0X-MXOisCi2aEh9h3F4,13817
|
|
1371
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=LluOLfvtAFIW7-OrOKjZHze_bmb5TcrgIdItgo_B7bc,7682
|
|
1372
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=kHqLuqtQ47tlzQLDjpJDsGrI4UTr3S_JR61noDkq5RI,5830
|
|
1373
|
+
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=kfUNCBLZkxcJSK-XB4bIH6y27S2rCyb5hzBVrbXL2CA,7871
|
|
1374
|
+
angr/analyses/decompiler/optimization_passes/switch_reused_entry_rewriter.py,sha256=6-b3u4zCwSQkMaYXDP4aTjTZdFTlIWlYfd8zC1vNuRM,4035
|
|
1375
|
+
angr/analyses/decompiler/optimization_passes/tag_slicer.py,sha256=VSlwk9ZdnFZnAAxL0gUAgqAtP6HEk4fqcYGWlD3ylGg,1181
|
|
1376
|
+
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=zelzmoxJd3zLIg6Wrggpemt1-LSdHmVTPxm_NS_4LGY,11250
|
|
1377
|
+
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=6I53o3X3d9IjWJVzm8Z5VW2tpqBGkjPO60dKJnS8rOM,4893
|
|
1378
|
+
angr/analyses/decompiler/optimization_passes/determine_load_sizes.py,sha256=cyDEGP7be5FAHX32eTE6FD_RZHF6G3vRo5rCYrNCfJM,2246
|
|
1379
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=fVMs8afHYrki3mltXJvgZP0vYD1PJAcekDlt_WVni04,27041
|
|
1380
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=NQ9g4ADILSpps8eSrXL-SKQVKyfvGqY3FG_mn-vjjTo,25519
|
|
1381
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=sTUfku6sMVp1cgGGmT2ZUYl9IlYpoeYskzScS6ricy4,13258
|
|
1382
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=RMvKYw0aWrisO6DB_g3BTY9CgIgAJ6JZXpOnOOm7fpo,2737
|
|
1383
|
+
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=di_yaOo_cBzau7tNZHmozCwNNkNou1LH99cUrsU2AKg,18744
|
|
1384
|
+
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=IuR1Agh6bZQpqOXLIkGUq7SCbTq0JwdWacG_5AhRq7Q,4020
|
|
1385
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=Qr3faJ9GmbP-ynyGRGtWGTC99Hf9Cj1SHTBuVKJfE90,13820
|
|
1386
|
+
angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py,sha256=-RZEK4w0B8G_wmAnSmfsxcl5bjdvUNC5NblX5SZZW3I,9803
|
|
1387
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=YHmS48Wyegq6Hb9pI9OKybFy9MWAo9r0ujDYJgykKk8,6866
|
|
1388
|
+
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=fdUvRseuFiH6ehpk9uWWMityDuBs_kqmIjYMi92dDkw,15353
|
|
1389
|
+
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=KxP3fqH_Rf0VwWPp7LpORFSmQHSt_nEEnn8pFa9KpI4,14717
|
|
1390
|
+
angr/analyses/decompiler/optimization_passes/peephole_simplifier.py,sha256=mUKBwImDCn4VJ-RiFkbM68cjm_qJBRBILQQOS7MabYY,2676
|
|
1391
|
+
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=-kuCQk0ALYM1rmr6VaijrZYgHseeXqlWECaekKfI6hE,6120
|
|
1392
|
+
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=aTQV3_yQaAKhQ24V66alxErjg7jv6gellWCqsT9G-lE,3104
|
|
1393
|
+
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=9ekxyvxF8g3tN5oanUg96HaYiyYVbj5Nf-vSeeq86kI,3384
|
|
1394
|
+
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=iugy7n8ttFUUteTnKLTikWwnRZiuIvgLvj8dIVzMT_o,17610
|
|
1395
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py,sha256=VZ_V2vWT4c7Jr0_rb5o_uXNSHV0D9OxO_8-81iLxVqs,52829
|
|
1396
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=H9FGTyxHm-KbqgxuTe2qjMotboRbUyOTeiPVcD_8DSk,4411
|
|
1397
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=vTXXuELU2hMG8FfN8ESiHZzkeJFcr19byUyjo6wDZi0,21668
|
|
1398
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
1399
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=w2qDsR2AT-FL05_-gRpn75CrQOnh66IepAZuamtBRVI,5192
|
|
1400
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
1401
|
+
angr/analyses/decompiler/counters/call_counter.py,sha256=UZo69tpvbS9YoTaxpxk0dPymkfI537h1JV7A-QrQyfY,3143
|
|
1402
|
+
angr/analyses/decompiler/counters/expression_counters.py,sha256=7-5p1RZb_eL8MuvPNa9wNsJlsRRtguG6ByzrSI3KYcU,2859
|
|
1403
|
+
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=C4jnse_Qp_Bg_JZuHusgTh0TU4AsQMYf7UgVjZAryWo,2348
|
|
1404
|
+
angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
|
|
1405
|
+
angr/analyses/decompiler/counters/boolean_counter.py,sha256=8IQ72AsVP58TJw-4X15XxsT97bq5Xq9Kb5h38tKTVwc,885
|
|
1406
|
+
angr/analyses/decompiler/presets/malware.py,sha256=HDDNiZRd43oxbMbWmvDDWI6vovlYX3_9WKltCZYKZVE,1981
|
|
1407
|
+
angr/analyses/decompiler/presets/__init__.py,sha256=1rH77GuJjS5ijfmeyySqCY3aVsMkETHV6yxMNDL0gds,442
|
|
1408
|
+
angr/analyses/decompiler/presets/preset.py,sha256=LvX7ydyO0ZzQsC0M2fy1wXA_0ygSqeP9P52VJAK0Eeo,1264
|
|
1409
|
+
angr/analyses/decompiler/presets/fast.py,sha256=lRkuwEXi-tvIRe8TMnKfdszwdcPAofycds3WIxo4vBg,1860
|
|
1410
|
+
angr/analyses/decompiler/presets/full.py,sha256=SS5uJfreZlOsHr82DQgeFHaDR3ZuNvz_p4fevC0REyk,2104
|
|
1411
|
+
angr/analyses/decompiler/presets/basic.py,sha256=lb4TyVOHL-NqHsGPDOvw5XeGOfuKyzlQAY8fUMrwMI4,981
|
|
1412
|
+
angr/analyses/decompiler/dirty_rewriters/__init__.py,sha256=Go9Znxszue8UZD8w7nHJXcU885ZvZ8fa6BAuOa3Qpms,136
|
|
1413
|
+
angr/analyses/decompiler/dirty_rewriters/rewriter_base.py,sha256=ghiYgB5O78ozGaCti7SqR_YlXQJrHtMEHnxQKe3Rw2I,817
|
|
1414
|
+
angr/analyses/decompiler/dirty_rewriters/amd64_dirty.py,sha256=WKJMjnfDxYcGUXxjagNQAKfWj8AwCWoru5RpPrM6Abc,2473
|
|
1415
|
+
angr/analyses/decompiler/semantic_naming/boolean_naming.py,sha256=OonrC14TLHgt8I7evy6U6xYS_MOP_iHS_aXhnkWKGI4,10120
|
|
1416
|
+
angr/analyses/decompiler/semantic_naming/region_loop_counter_naming.py,sha256=2kTjczJqtw8JPReF4q_DRmCdbkQs6Y_1u_XD1fdzmso,9280
|
|
1417
|
+
angr/analyses/decompiler/semantic_naming/__init__.py,sha256=BCRD8aCu31U5PaA-yTwkOC2x2EnEA9NalQYFknxgtlk,1343
|
|
1418
|
+
angr/analyses/decompiler/semantic_naming/orchestrator.py,sha256=giu0k6e8LW1tGDh7U_7s8pdPtMoMYCnimolEgEXxDJg,3631
|
|
1419
|
+
angr/analyses/decompiler/semantic_naming/call_result_naming.py,sha256=iSqk8ltmLjchAOXw5vB5r0WXCLhwkpNCojxuJwa72fs,6046
|
|
1420
|
+
angr/analyses/decompiler/semantic_naming/pointer_naming.py,sha256=6glmS0BwfKwHM6ePsvJmhL3GUuvKKmhHtdSJSb6dPPI,12030
|
|
1421
|
+
angr/analyses/decompiler/semantic_naming/size_naming.py,sha256=gskqW8QznVhnYhVWcjCJlc29XUlZzLvvokI-rxhghqw,4263
|
|
1422
|
+
angr/analyses/decompiler/semantic_naming/array_index_naming.py,sha256=m8gt3dM1D8yIMcsOuwdOnHTxvG8c7nd-R9VdQ_BqAko,6414
|
|
1423
|
+
angr/analyses/decompiler/semantic_naming/naming_base.py,sha256=lvyvG4JzZYKeJCunG3RNn5B-MvJWRFRU9_nP2oLGfZE,5561
|
|
1424
|
+
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
1425
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=OvvBheN759kfJcLSYD4TDFOZYfjW267BI-b6uQFfv0k,10825
|
|
1426
|
+
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=hi23tfm8MR4bCgvzhctufoP3PGOt5sf9yVqVWVvzap0,6317
|
|
1427
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=TnhAV_xKAnv1gBodkcD3g_2srwx1FcHSnr7i8p56fAM,14839
|
|
1428
|
+
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
1429
|
+
angr/analyses/fcp/fcp.py,sha256=djkJsvSja_De7ptNwllmTHjvVl62BFcH_haBhwhzFtw,16373
|
|
1430
|
+
angr/analyses/outliner/__init__.py,sha256=1PQNMJIV1QYhFmjDXTj4Oj3gF7TAbmXimC9zst-yLDA,98
|
|
1431
|
+
angr/analyses/outliner/outliner.py,sha256=Kcd5s9DISEddm54JKrnm9qFDlHi__Lp6JGBUpI_rzds,16974
|
|
1432
|
+
angr/analyses/flirt/flirt.py,sha256=ibX7szBsl-kVT-y2NucxQOaoWUob7hZarw59TpYTrZE,10986
|
|
1433
|
+
angr/analyses/flirt/flirt_sig.py,sha256=SeOOqdMk_has4X1egBiFPDbC2jW___VIF2HhH96ggyg,11574
|
|
1434
|
+
angr/analyses/flirt/__init__.py,sha256=1jKkwUDhwwnxG5BRcYtwogLHLBvtZApXgvcAcHrJrdw,1293
|
|
1435
|
+
angr/analyses/flirt/consts.py,sha256=9ldvicgtJZa8Hw8cWOKxGkCYtc09I2q5ZWxctXcg20w,4861
|
|
1436
|
+
angr/analyses/flirt/flirt_module.py,sha256=pUP6vbujzceJMXFxvLAPgek5Y2qPv3KTlKY8ZWHeIQU,920
|
|
1437
|
+
angr/analyses/flirt/flirt_function.py,sha256=IHskIu5XTTCLKfmow23ig4HIqzs7oGbw7iktIfv40O8,420
|
|
1438
|
+
angr/analyses/flirt/flirt_matcher.py,sha256=W1P2IxYUWrqkm174sV_BPh7j4l47sXr8-vfZoKQZFY8,6428
|
|
1439
|
+
angr/analyses/flirt/flirt_node.py,sha256=ecfJq4Ymp38zzvoZPDfLcLSR045GNOM9je-F_NPM5e0,638
|
|
1440
|
+
angr/analyses/flirt/flirt_utils.py,sha256=ojZ_01s7O23vU7dN6xZL7Wyx5M3pgm43frxjbZzSmyU,819
|
|
1441
|
+
angr/flirt/__init__.py,sha256=HXFNQiXaGhcnJVaTXKhkXVywO_8uLCQHXW4y9FbnXdM,3783
|
|
1442
|
+
angr/flirt/build_sig.py,sha256=AO48uuWi76eMiw4-RTJn58j6DDyziy7HCuWMNpApcOQ,10020
|