angr 9.2.101__tar.gz → 9.2.103__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr-9.2.103/PKG-INFO +119 -0
- angr-9.2.103/angr/__init__.py +153 -0
- angr-9.2.103/angr/analyses/analysis.py +359 -0
- angr-9.2.103/angr/analyses/calling_convention.py +956 -0
- angr-9.2.103/angr/analyses/cdg.py +197 -0
- angr-9.2.103/angr/analyses/cfg/cfb.py +436 -0
- angr-9.2.103/angr/analyses/cfg/cfg_base.py +2917 -0
- angr-9.2.103/angr/analyses/cfg/cfg_emulated.py +3570 -0
- angr-9.2.103/angr/analyses/cfg/cfg_fast.py +5053 -0
- angr-9.2.103/angr/analyses/cfg/cfg_fast_soot.py +669 -0
- angr-9.2.103/angr/analyses/cfg/cfg_job_base.py +204 -0
- angr-9.2.103/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +2368 -0
- angr-9.2.103/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +517 -0
- angr-9.2.103/angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +117 -0
- angr-9.2.103/angr/analyses/complete_calling_conventions.py +424 -0
- angr-9.2.103/angr/analyses/data_dep/data_dependency_analysis.py +605 -0
- angr-9.2.103/angr/analyses/data_dep/dep_nodes.py +170 -0
- angr-9.2.103/angr/analyses/ddg.py +1695 -0
- angr-9.2.103/angr/analyses/decompiler/ail_simplifier.py +1408 -0
- angr-9.2.103/angr/analyses/decompiler/block_io_finder.py +293 -0
- angr-9.2.103/angr/analyses/decompiler/block_similarity.py +188 -0
- angr-9.2.103/angr/analyses/decompiler/block_simplifier.py +434 -0
- angr-9.2.103/angr/analyses/decompiler/callsite_maker.py +403 -0
- angr-9.2.103/angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +489 -0
- angr-9.2.103/angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +19 -0
- angr-9.2.103/angr/analyses/decompiler/clinic.py +2166 -0
- angr-9.2.103/angr/analyses/decompiler/condition_processor.py +1184 -0
- angr-9.2.103/angr/analyses/decompiler/decompilation_cache.py +38 -0
- angr-9.2.103/angr/analyses/decompiler/decompilation_options.py +274 -0
- angr-9.2.103/angr/analyses/decompiler/decompiler.py +544 -0
- angr-9.2.103/angr/analyses/decompiler/expression_counters.py +76 -0
- angr-9.2.103/angr/analyses/decompiler/goto_manager.py +73 -0
- angr-9.2.103/angr/analyses/decompiler/graph_region.py +413 -0
- angr-9.2.103/angr/analyses/decompiler/jump_target_collector.py +36 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/__init__.py +108 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/code_motion.py +360 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/const_derefs.py +265 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/deadblock_remover.py +73 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/engine_base.py +303 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +136 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +91 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +386 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +226 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +757 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/optimization_pass.py +397 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +198 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +172 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +219 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +448 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/spilled_register_finder.py +18 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +293 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +281 -0
- angr-9.2.103/angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +87 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/__init__.py +69 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/base.py +120 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/bswap.py +131 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py +72 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +91 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/eager_eval.py +225 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +146 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +102 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +159 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +85 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +105 -0
- angr-9.2.103/angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +133 -0
- angr-9.2.103/angr/analyses/decompiler/redundant_label_remover.py +116 -0
- angr-9.2.103/angr/analyses/decompiler/region_identifier.py +1098 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +93 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/expr_folding.py +606 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/goto.py +177 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/loop.py +135 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/node_address_finder.py +23 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/region_simplifier.py +211 -0
- angr-9.2.103/angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +644 -0
- angr-9.2.103/angr/analyses/decompiler/return_maker.py +70 -0
- angr-9.2.103/angr/analyses/decompiler/structured_codegen/base.py +132 -0
- angr-9.2.103/angr/analyses/decompiler/structured_codegen/c.py +3811 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/__init__.py +15 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/dream.py +1225 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/phoenix.py +2546 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/recursive_structurer.py +186 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/structurer_base.py +954 -0
- angr-9.2.103/angr/analyses/decompiler/structuring/structurer_nodes.py +414 -0
- angr-9.2.103/angr/analyses/decompiler/utils.py +787 -0
- angr-9.2.103/angr/analyses/disassembly.py +1302 -0
- angr-9.2.103/angr/analyses/flirt.py +185 -0
- angr-9.2.103/angr/analyses/forward_analysis/forward_analysis.py +527 -0
- angr-9.2.103/angr/analyses/forward_analysis/visitors/function_graph.py +85 -0
- angr-9.2.103/angr/analyses/forward_analysis/visitors/graph.py +250 -0
- angr-9.2.103/angr/analyses/propagator/engine_ail.py +1560 -0
- angr-9.2.103/angr/analyses/propagator/outdated_definition_walker.py +158 -0
- angr-9.2.103/angr/analyses/propagator/propagator.py +422 -0
- angr-9.2.103/angr/analyses/proximity_graph.py +452 -0
- angr-9.2.103/angr/analyses/reaching_definitions/__init__.py +65 -0
- angr-9.2.103/angr/analyses/reaching_definitions/call_trace.py +72 -0
- angr-9.2.103/angr/analyses/reaching_definitions/dep_graph.py +392 -0
- angr-9.2.103/angr/analyses/reaching_definitions/engine_ail.py +1172 -0
- angr-9.2.103/angr/analyses/reaching_definitions/engine_vex.py +1102 -0
- angr-9.2.103/angr/analyses/reaching_definitions/function_handler.py +603 -0
- angr-9.2.103/angr/analyses/reaching_definitions/heap_allocator.py +69 -0
- angr-9.2.103/angr/analyses/reaching_definitions/rd_initializer.py +235 -0
- angr-9.2.103/angr/analyses/reaching_definitions/rd_state.py +613 -0
- angr-9.2.103/angr/analyses/reaching_definitions/reaching_definitions.py +594 -0
- angr-9.2.103/angr/analyses/reaching_definitions/subject.py +64 -0
- angr-9.2.103/angr/analyses/stack_pointer_tracker.py +832 -0
- angr-9.2.103/angr/analyses/typehoon/dfa.py +108 -0
- angr-9.2.103/angr/analyses/typehoon/simple_solver.py +1258 -0
- angr-9.2.103/angr/analyses/typehoon/translator.py +242 -0
- angr-9.2.103/angr/analyses/typehoon/typeconsts.py +294 -0
- angr-9.2.103/angr/analyses/typehoon/typehoon.py +239 -0
- angr-9.2.103/angr/analyses/typehoon/typevars.py +565 -0
- angr-9.2.103/angr/analyses/variable_recovery/engine_ail.py +746 -0
- angr-9.2.103/angr/analyses/variable_recovery/engine_base.py +962 -0
- angr-9.2.103/angr/analyses/variable_recovery/irsb_scanner.py +131 -0
- angr-9.2.103/angr/analyses/variable_recovery/variable_recovery.py +552 -0
- angr-9.2.103/angr/analyses/variable_recovery/variable_recovery_base.py +452 -0
- angr-9.2.103/angr/analyses/variable_recovery/variable_recovery_fast.py +589 -0
- angr-9.2.103/angr/analyses/veritesting.py +635 -0
- angr-9.2.103/angr/analyses/vfg.py +1945 -0
- angr-9.2.103/angr/analyses/xrefs.py +263 -0
- angr-9.2.103/angr/angrdb/db.py +208 -0
- angr-9.2.103/angr/angrdb/serializers/kb.py +110 -0
- angr-9.2.103/angr/angrdb/serializers/loader.py +81 -0
- angr-9.2.103/angr/angrdb/serializers/structured_code.py +128 -0
- angr-9.2.103/angr/annocfg.py +320 -0
- angr-9.2.103/angr/block.py +506 -0
- angr-9.2.103/angr/calling_conventions.py +2383 -0
- angr-9.2.103/angr/code_location.py +168 -0
- angr-9.2.103/angr/codenode.py +140 -0
- angr-9.2.103/angr/concretization_strategies/max.py +24 -0
- angr-9.2.103/angr/distributed/server.py +198 -0
- angr-9.2.103/angr/distributed/worker.py +183 -0
- angr-9.2.103/angr/engines/engine.py +212 -0
- angr-9.2.103/angr/engines/light/engine.py +1441 -0
- angr-9.2.103/angr/engines/pcode/behavior.py +995 -0
- angr-9.2.103/angr/engines/pcode/emulate.py +446 -0
- angr-9.2.103/angr/engines/pcode/engine.py +256 -0
- angr-9.2.103/angr/engines/pcode/lifter.py +1423 -0
- angr-9.2.103/angr/engines/vex/claripy/ccall.py +2097 -0
- angr-9.2.103/angr/engines/vex/claripy/datalayer.py +149 -0
- angr-9.2.103/angr/engines/vex/light/light.py +555 -0
- angr-9.2.103/angr/exploration_techniques/tracer.py +1101 -0
- angr-9.2.103/angr/factory.py +385 -0
- angr-9.2.103/angr/flirt/__init__.py +126 -0
- angr-9.2.103/angr/flirt/build_sig.py +316 -0
- angr-9.2.103/angr/keyed_region.py +532 -0
- angr-9.2.103/angr/knowledge_base/knowledge_base.py +145 -0
- angr-9.2.103/angr/knowledge_plugins/callsite_prototypes.py +52 -0
- angr-9.2.103/angr/knowledge_plugins/cfg/cfg_manager.py +94 -0
- angr-9.2.103/angr/knowledge_plugins/cfg/cfg_model.py +1057 -0
- angr-9.2.103/angr/knowledge_plugins/cfg/cfg_node.py +541 -0
- angr-9.2.103/angr/knowledge_plugins/cfg/indirect_jump.py +67 -0
- angr-9.2.103/angr/knowledge_plugins/cfg/memory_data.py +156 -0
- angr-9.2.103/angr/knowledge_plugins/custom_strings.py +37 -0
- angr-9.2.103/angr/knowledge_plugins/debug_variables.py +221 -0
- angr-9.2.103/angr/knowledge_plugins/functions/function.py +1694 -0
- angr-9.2.103/angr/knowledge_plugins/functions/function_manager.py +501 -0
- angr-9.2.103/angr/knowledge_plugins/indirect_jumps.py +34 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/atoms.py +314 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/definition.py +217 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/environment.py +92 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/heap_address.py +32 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/key_definition_manager.py +81 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/live_definitions.py +1074 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/liveness.py +170 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/rd_model.py +176 -0
- angr-9.2.103/angr/knowledge_plugins/key_definitions/uses.py +180 -0
- angr-9.2.103/angr/knowledge_plugins/patches.py +125 -0
- angr-9.2.103/angr/knowledge_plugins/propagations/prop_value.py +193 -0
- angr-9.2.103/angr/knowledge_plugins/propagations/propagation_manager.py +60 -0
- angr-9.2.103/angr/knowledge_plugins/propagations/propagation_model.py +74 -0
- angr-9.2.103/angr/knowledge_plugins/propagations/states.py +1064 -0
- angr-9.2.103/angr/knowledge_plugins/structured_code/manager.py +59 -0
- angr-9.2.103/angr/knowledge_plugins/sync/sync_controller.py +329 -0
- angr-9.2.103/angr/knowledge_plugins/variables/variable_access.py +114 -0
- angr-9.2.103/angr/knowledge_plugins/variables/variable_manager.py +1191 -0
- angr-9.2.103/angr/knowledge_plugins/xrefs/xref.py +157 -0
- angr-9.2.103/angr/knowledge_plugins/xrefs/xref_manager.py +122 -0
- angr-9.2.103/angr/misc/ansi.py +46 -0
- angr-9.2.103/angr/misc/autoimport.py +89 -0
- angr-9.2.103/angr/misc/plugins.py +291 -0
- angr-9.2.103/angr/procedures/definitions/__init__.py +784 -0
- angr-9.2.103/angr/procedures/definitions/linux_kernel.py +6167 -0
- angr-9.2.103/angr/procedures/definitions/parse_win32json.py +2556 -0
- angr-9.2.103/angr/procedures/java_jni/__init__.py +475 -0
- angr-9.2.103/angr/procedures/java_jni/array_operations.py +309 -0
- angr-9.2.103/angr/procedures/java_jni/method_calls.py +364 -0
- angr-9.2.103/angr/procedures/posix/inet_ntoa.py +61 -0
- angr-9.2.103/angr/procedures/stubs/format_parser.py +677 -0
- angr-9.2.103/angr/project.py +834 -0
- angr-9.2.103/angr/sim_manager.py +971 -0
- angr-9.2.103/angr/sim_procedure.py +606 -0
- angr-9.2.103/angr/sim_state.py +1003 -0
- angr-9.2.103/angr/sim_type.py +3372 -0
- angr-9.2.103/angr/sim_variable.py +562 -0
- angr-9.2.103/angr/simos/simos.py +450 -0
- angr-9.2.103/angr/simos/userland.py +163 -0
- angr-9.2.103/angr/state_plugins/callstack.py +404 -0
- angr-9.2.103/angr/state_plugins/history.py +548 -0
- angr-9.2.103/angr/state_plugins/solver.py +1129 -0
- angr-9.2.103/angr/storage/memory_mixins/__init__.py +393 -0
- angr-9.2.103/angr/storage/memory_mixins/actions_mixin.py +69 -0
- angr-9.2.103/angr/storage/memory_mixins/address_concretization_mixin.py +388 -0
- angr-9.2.103/angr/storage/memory_mixins/convenient_mappings_mixin.py +257 -0
- angr-9.2.103/angr/storage/memory_mixins/default_filler_mixin.py +146 -0
- angr-9.2.103/angr/storage/memory_mixins/label_merger_mixin.py +31 -0
- angr-9.2.103/angr/storage/memory_mixins/multi_value_merger_mixin.py +68 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +266 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +750 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/cooperation.py +330 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +87 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/list_page.py +346 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/multi_values.py +290 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +434 -0
- angr-9.2.103/angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +468 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +35 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +43 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/region_data.py +245 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +125 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +118 -0
- angr-9.2.103/angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +462 -0
- angr-9.2.103/angr/storage/memory_mixins/size_resolution_mixin.py +140 -0
- angr-9.2.103/angr/storage/memory_mixins/symbolic_merger_mixin.py +12 -0
- angr-9.2.103/angr/storage/memory_mixins/top_merger_mixin.py +24 -0
- angr-9.2.103/angr/storage/memory_object.py +194 -0
- angr-9.2.103/angr/utils/algo.py +33 -0
- angr-9.2.103/angr/utils/dynamic_dictlist.py +92 -0
- angr-9.2.103/angr/utils/formatting.py +124 -0
- angr-9.2.103/angr/utils/funcid.py +133 -0
- angr-9.2.103/angr/utils/graph.py +822 -0
- angr-9.2.103/angr/utils/library.py +214 -0
- angr-9.2.103/angr/utils/mp.py +64 -0
- angr-9.2.103/angr/utils/segment_list.py +558 -0
- angr-9.2.103/angr/utils/typing.py +17 -0
- angr-9.2.103/angr.egg-info/PKG-INFO +119 -0
- angr-9.2.103/angr.egg-info/SOURCES.txt +1314 -0
- angr-9.2.103/angr.egg-info/requires.txt +48 -0
- angr-9.2.103/pyproject.toml +44 -0
- angr-9.2.103/setup.cfg +83 -0
- angr-9.2.103/tests/test_types.py +328 -0
- angr-9.2.101/PKG-INFO +0 -121
- angr-9.2.101/angr/__init__.py +0 -153
- angr-9.2.101/angr/analyses/analysis.py +0 -358
- angr-9.2.101/angr/analyses/calling_convention.py +0 -958
- angr-9.2.101/angr/analyses/cdg.py +0 -199
- angr-9.2.101/angr/analyses/cfg/cfb.py +0 -435
- angr-9.2.101/angr/analyses/cfg/cfg_base.py +0 -2917
- angr-9.2.101/angr/analyses/cfg/cfg_emulated.py +0 -3571
- angr-9.2.101/angr/analyses/cfg/cfg_fast.py +0 -5053
- angr-9.2.101/angr/analyses/cfg/cfg_fast_soot.py +0 -670
- angr-9.2.101/angr/analyses/cfg/cfg_job_base.py +0 -204
- angr-9.2.101/angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +0 -2367
- angr-9.2.101/angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +0 -517
- angr-9.2.101/angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py +0 -117
- angr-9.2.101/angr/analyses/complete_calling_conventions.py +0 -423
- angr-9.2.101/angr/analyses/data_dep/data_dependency_analysis.py +0 -605
- angr-9.2.101/angr/analyses/data_dep/dep_nodes.py +0 -170
- angr-9.2.101/angr/analyses/ddg.py +0 -1696
- angr-9.2.101/angr/analyses/decompiler/ail_simplifier.py +0 -1407
- angr-9.2.101/angr/analyses/decompiler/block_io_finder.py +0 -293
- angr-9.2.101/angr/analyses/decompiler/block_similarity.py +0 -190
- angr-9.2.101/angr/analyses/decompiler/block_simplifier.py +0 -433
- angr-9.2.101/angr/analyses/decompiler/callsite_maker.py +0 -388
- angr-9.2.101/angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +0 -491
- angr-9.2.101/angr/analyses/decompiler/ccall_rewriters/rewriter_base.py +0 -21
- angr-9.2.101/angr/analyses/decompiler/clinic.py +0 -1961
- angr-9.2.101/angr/analyses/decompiler/condition_processor.py +0 -1177
- angr-9.2.101/angr/analyses/decompiler/decompilation_cache.py +0 -38
- angr-9.2.101/angr/analyses/decompiler/decompilation_options.py +0 -274
- angr-9.2.101/angr/analyses/decompiler/decompiler.py +0 -540
- angr-9.2.101/angr/analyses/decompiler/expression_counters.py +0 -75
- angr-9.2.101/angr/analyses/decompiler/goto_manager.py +0 -75
- angr-9.2.101/angr/analyses/decompiler/graph_region.py +0 -413
- angr-9.2.101/angr/analyses/decompiler/jump_target_collector.py +0 -37
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/__init__.py +0 -107
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/code_motion.py +0 -361
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/const_derefs.py +0 -265
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/engine_base.py +0 -281
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/expr_op_swapper.py +0 -135
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +0 -91
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +0 -383
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/ite_expr_converter.py +0 -226
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +0 -757
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/optimization_pass.py +0 -398
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py +0 -194
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py +0 -172
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/ret_deduplicator.py +0 -220
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +0 -448
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +0 -294
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +0 -282
- angr-9.2.101/angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +0 -87
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/__init__.py +0 -68
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/base.py +0 -122
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/bswap.py +0 -133
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +0 -92
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/eager_eval.py +0 -225
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +0 -151
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +0 -103
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +0 -162
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py +0 -86
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py +0 -106
- angr-9.2.101/angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py +0 -133
- angr-9.2.101/angr/analyses/decompiler/redundant_label_remover.py +0 -117
- angr-9.2.101/angr/analyses/decompiler/region_identifier.py +0 -1099
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py +0 -94
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/expr_folding.py +0 -607
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/goto.py +0 -178
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/loop.py +0 -136
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/node_address_finder.py +0 -24
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/region_simplifier.py +0 -213
- angr-9.2.101/angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +0 -644
- angr-9.2.101/angr/analyses/decompiler/return_maker.py +0 -71
- angr-9.2.101/angr/analyses/decompiler/structured_codegen/base.py +0 -133
- angr-9.2.101/angr/analyses/decompiler/structured_codegen/c.py +0 -3810
- angr-9.2.101/angr/analyses/decompiler/structuring/__init__.py +0 -15
- angr-9.2.101/angr/analyses/decompiler/structuring/dream.py +0 -1224
- angr-9.2.101/angr/analyses/decompiler/structuring/phoenix.py +0 -2547
- angr-9.2.101/angr/analyses/decompiler/structuring/recursive_structurer.py +0 -186
- angr-9.2.101/angr/analyses/decompiler/structuring/structurer_base.py +0 -953
- angr-9.2.101/angr/analyses/decompiler/structuring/structurer_nodes.py +0 -413
- angr-9.2.101/angr/analyses/decompiler/utils.py +0 -786
- angr-9.2.101/angr/analyses/disassembly.py +0 -1301
- angr-9.2.101/angr/analyses/flirt.py +0 -185
- angr-9.2.101/angr/analyses/forward_analysis/forward_analysis.py +0 -526
- angr-9.2.101/angr/analyses/forward_analysis/visitors/function_graph.py +0 -86
- angr-9.2.101/angr/analyses/forward_analysis/visitors/graph.py +0 -249
- angr-9.2.101/angr/analyses/propagator/engine_ail.py +0 -1556
- angr-9.2.101/angr/analyses/propagator/outdated_definition_walker.py +0 -157
- angr-9.2.101/angr/analyses/propagator/propagator.py +0 -424
- angr-9.2.101/angr/analyses/proximity_graph.py +0 -452
- angr-9.2.101/angr/analyses/reaching_definitions/__init__.py +0 -65
- angr-9.2.101/angr/analyses/reaching_definitions/call_trace.py +0 -75
- angr-9.2.101/angr/analyses/reaching_definitions/dep_graph.py +0 -399
- angr-9.2.101/angr/analyses/reaching_definitions/engine_ail.py +0 -1166
- angr-9.2.101/angr/analyses/reaching_definitions/engine_vex.py +0 -1101
- angr-9.2.101/angr/analyses/reaching_definitions/function_handler.py +0 -586
- angr-9.2.101/angr/analyses/reaching_definitions/heap_allocator.py +0 -70
- angr-9.2.101/angr/analyses/reaching_definitions/rd_initializer.py +0 -235
- angr-9.2.101/angr/analyses/reaching_definitions/rd_state.py +0 -614
- angr-9.2.101/angr/analyses/reaching_definitions/reaching_definitions.py +0 -593
- angr-9.2.101/angr/analyses/reaching_definitions/subject.py +0 -65
- angr-9.2.101/angr/analyses/stack_pointer_tracker.py +0 -823
- angr-9.2.101/angr/analyses/typehoon/dfa.py +0 -108
- angr-9.2.101/angr/analyses/typehoon/simple_solver.py +0 -1262
- angr-9.2.101/angr/analyses/typehoon/translator.py +0 -245
- angr-9.2.101/angr/analyses/typehoon/typeconsts.py +0 -295
- angr-9.2.101/angr/analyses/typehoon/typehoon.py +0 -239
- angr-9.2.101/angr/analyses/typehoon/typevars.py +0 -564
- angr-9.2.101/angr/analyses/variable_recovery/engine_ail.py +0 -746
- angr-9.2.101/angr/analyses/variable_recovery/engine_base.py +0 -958
- angr-9.2.101/angr/analyses/variable_recovery/irsb_scanner.py +0 -132
- angr-9.2.101/angr/analyses/variable_recovery/variable_recovery.py +0 -553
- angr-9.2.101/angr/analyses/variable_recovery/variable_recovery_base.py +0 -451
- angr-9.2.101/angr/analyses/variable_recovery/variable_recovery_fast.py +0 -589
- angr-9.2.101/angr/analyses/veritesting.py +0 -636
- angr-9.2.101/angr/analyses/vfg.py +0 -1944
- angr-9.2.101/angr/analyses/xrefs.py +0 -264
- angr-9.2.101/angr/angrdb/db.py +0 -208
- angr-9.2.101/angr/angrdb/serializers/kb.py +0 -107
- angr-9.2.101/angr/angrdb/serializers/loader.py +0 -82
- angr-9.2.101/angr/angrdb/serializers/structured_code.py +0 -128
- angr-9.2.101/angr/annocfg.py +0 -321
- angr-9.2.101/angr/block.py +0 -496
- angr-9.2.101/angr/calling_conventions.py +0 -2383
- angr-9.2.101/angr/code_location.py +0 -168
- angr-9.2.101/angr/codenode.py +0 -141
- angr-9.2.101/angr/concretization_strategies/max.py +0 -26
- angr-9.2.101/angr/distributed/server.py +0 -200
- angr-9.2.101/angr/distributed/worker.py +0 -184
- angr-9.2.101/angr/engines/engine.py +0 -213
- angr-9.2.101/angr/engines/light/engine.py +0 -1441
- angr-9.2.101/angr/engines/pcode/behavior.py +0 -977
- angr-9.2.101/angr/engines/pcode/emulate.py +0 -446
- angr-9.2.101/angr/engines/pcode/engine.py +0 -256
- angr-9.2.101/angr/engines/pcode/lifter.py +0 -1422
- angr-9.2.101/angr/engines/vex/claripy/ccall.py +0 -2098
- angr-9.2.101/angr/engines/vex/claripy/datalayer.py +0 -150
- angr-9.2.101/angr/engines/vex/light/light.py +0 -556
- angr-9.2.101/angr/exploration_techniques/tracer.py +0 -1101
- angr-9.2.101/angr/factory.py +0 -388
- angr-9.2.101/angr/flirt/__init__.py +0 -126
- angr-9.2.101/angr/flirt/build_sig.py +0 -317
- angr-9.2.101/angr/keyed_region.py +0 -532
- angr-9.2.101/angr/knowledge_base/knowledge_base.py +0 -145
- angr-9.2.101/angr/knowledge_plugins/callsite_prototypes.py +0 -54
- angr-9.2.101/angr/knowledge_plugins/cfg/cfg_manager.py +0 -81
- angr-9.2.101/angr/knowledge_plugins/cfg/cfg_model.py +0 -1058
- angr-9.2.101/angr/knowledge_plugins/cfg/cfg_node.py +0 -541
- angr-9.2.101/angr/knowledge_plugins/cfg/indirect_jump.py +0 -69
- angr-9.2.101/angr/knowledge_plugins/cfg/memory_data.py +0 -157
- angr-9.2.101/angr/knowledge_plugins/custom_strings.py +0 -39
- angr-9.2.101/angr/knowledge_plugins/debug_variables.py +0 -221
- angr-9.2.101/angr/knowledge_plugins/functions/function.py +0 -1695
- angr-9.2.101/angr/knowledge_plugins/functions/function_manager.py +0 -501
- angr-9.2.101/angr/knowledge_plugins/indirect_jumps.py +0 -36
- angr-9.2.101/angr/knowledge_plugins/key_definitions/atoms.py +0 -314
- angr-9.2.101/angr/knowledge_plugins/key_definitions/definition.py +0 -217
- angr-9.2.101/angr/knowledge_plugins/key_definitions/environment.py +0 -94
- angr-9.2.101/angr/knowledge_plugins/key_definitions/heap_address.py +0 -34
- angr-9.2.101/angr/knowledge_plugins/key_definitions/key_definition_manager.py +0 -80
- angr-9.2.101/angr/knowledge_plugins/key_definitions/live_definitions.py +0 -1073
- angr-9.2.101/angr/knowledge_plugins/key_definitions/liveness.py +0 -170
- angr-9.2.101/angr/knowledge_plugins/key_definitions/rd_model.py +0 -176
- angr-9.2.101/angr/knowledge_plugins/key_definitions/uses.py +0 -180
- angr-9.2.101/angr/knowledge_plugins/patches.py +0 -129
- angr-9.2.101/angr/knowledge_plugins/propagations/prop_value.py +0 -192
- angr-9.2.101/angr/knowledge_plugins/propagations/propagation_manager.py +0 -62
- angr-9.2.101/angr/knowledge_plugins/propagations/propagation_model.py +0 -74
- angr-9.2.101/angr/knowledge_plugins/propagations/states.py +0 -1034
- angr-9.2.101/angr/knowledge_plugins/structured_code/manager.py +0 -59
- angr-9.2.101/angr/knowledge_plugins/sync/sync_controller.py +0 -329
- angr-9.2.101/angr/knowledge_plugins/variables/variable_access.py +0 -114
- angr-9.2.101/angr/knowledge_plugins/variables/variable_manager.py +0 -1174
- angr-9.2.101/angr/knowledge_plugins/xrefs/xref.py +0 -159
- angr-9.2.101/angr/knowledge_plugins/xrefs/xref_manager.py +0 -123
- angr-9.2.101/angr/misc/ansi.py +0 -47
- angr-9.2.101/angr/misc/autoimport.py +0 -89
- angr-9.2.101/angr/misc/plugins.py +0 -291
- angr-9.2.101/angr/procedures/definitions/__init__.py +0 -784
- angr-9.2.101/angr/procedures/definitions/linux_kernel.py +0 -6167
- angr-9.2.101/angr/procedures/definitions/parse_win32json.py +0 -2556
- angr-9.2.101/angr/procedures/java_jni/__init__.py +0 -475
- angr-9.2.101/angr/procedures/java_jni/array_operations.py +0 -310
- angr-9.2.101/angr/procedures/java_jni/method_calls.py +0 -365
- angr-9.2.101/angr/procedures/posix/inet_ntoa.py +0 -62
- angr-9.2.101/angr/procedures/stubs/format_parser.py +0 -677
- angr-9.2.101/angr/project.py +0 -832
- angr-9.2.101/angr/sim_manager.py +0 -971
- angr-9.2.101/angr/sim_procedure.py +0 -602
- angr-9.2.101/angr/sim_state.py +0 -1003
- angr-9.2.101/angr/sim_type.py +0 -3357
- angr-9.2.101/angr/sim_variable.py +0 -562
- angr-9.2.101/angr/simos/simos.py +0 -451
- angr-9.2.101/angr/simos/userland.py +0 -164
- angr-9.2.101/angr/state_plugins/callstack.py +0 -403
- angr-9.2.101/angr/state_plugins/history.py +0 -549
- angr-9.2.101/angr/state_plugins/solver.py +0 -1129
- angr-9.2.101/angr/storage/memory_mixins/__init__.py +0 -392
- angr-9.2.101/angr/storage/memory_mixins/actions_mixin.py +0 -71
- angr-9.2.101/angr/storage/memory_mixins/address_concretization_mixin.py +0 -390
- angr-9.2.101/angr/storage/memory_mixins/convenient_mappings_mixin.py +0 -258
- angr-9.2.101/angr/storage/memory_mixins/default_filler_mixin.py +0 -146
- angr-9.2.101/angr/storage/memory_mixins/label_merger_mixin.py +0 -31
- angr-9.2.101/angr/storage/memory_mixins/multi_value_merger_mixin.py +0 -67
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +0 -265
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +0 -749
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/cooperation.py +0 -330
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +0 -88
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/list_page.py +0 -347
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/multi_values.py +0 -289
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +0 -433
- angr-9.2.101/angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +0 -467
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py +0 -35
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +0 -42
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/region_data.py +0 -246
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +0 -125
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +0 -118
- angr-9.2.101/angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +0 -465
- angr-9.2.101/angr/storage/memory_mixins/size_resolution_mixin.py +0 -141
- angr-9.2.101/angr/storage/memory_mixins/symbolic_merger_mixin.py +0 -11
- angr-9.2.101/angr/storage/memory_mixins/top_merger_mixin.py +0 -23
- angr-9.2.101/angr/storage/memory_object.py +0 -196
- angr-9.2.101/angr/utils/algo.py +0 -32
- angr-9.2.101/angr/utils/dynamic_dictlist.py +0 -92
- angr-9.2.101/angr/utils/formatting.py +0 -124
- angr-9.2.101/angr/utils/funcid.py +0 -134
- angr-9.2.101/angr/utils/graph.py +0 -823
- angr-9.2.101/angr/utils/library.py +0 -214
- angr-9.2.101/angr/utils/mp.py +0 -63
- angr-9.2.101/angr/utils/segment_list.py +0 -559
- angr-9.2.101/angr/utils/typing.py +0 -16
- angr-9.2.101/angr.egg-info/PKG-INFO +0 -121
- angr-9.2.101/angr.egg-info/SOURCES.txt +0 -1311
- angr-9.2.101/angr.egg-info/requires.txt +0 -48
- angr-9.2.101/pyproject.toml +0 -44
- angr-9.2.101/setup.cfg +0 -85
- angr-9.2.101/tests/test_types.py +0 -329
- {angr-9.2.101 → angr-9.2.103}/LICENSE +0 -0
- {angr-9.2.101 → angr-9.2.103}/MANIFEST.in +0 -0
- {angr-9.2.101 → angr-9.2.103}/README.md +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/__main__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/backward_slice.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/binary_optimizer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/bindiff.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/boyscout.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/callee_cleanup_finder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/cfg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/cfg_arch_options.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/resolver.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg_slice_to_sink/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg_slice_to_sink/graph.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/cfg_slice_to_sink/transitions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/class_identifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/code_tagging.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/congruency_check.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/data_dep/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/data_dep/sim_act_location.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/datagraph_meta.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/ailgraph_walker.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/call_counter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/ccall_rewriters/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/empty_node_remover.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/expression_narrower.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/jumptable_entry_condition_rewriter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/div_simplifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/ite_region_converter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/mod_simplifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/multi_simplifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/rol_ror.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_simplifiers/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_simplifiers/cascading_ifs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_simplifiers/if_.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_simplifiers/ifelse.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/region_walker.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/seq_to_blocks.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/sequence_walker.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/structured_codegen/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/structured_codegen/dummy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/decompiler/structured_codegen/dwarf_import.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/disassembly_utils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/dominance_frontier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/find_objects_static.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/job_info.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/visitors/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/visitors/call_graph.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/visitors/loop.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/forward_analysis/visitors/single_node_graph.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/custom_callable.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/errors.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/func.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/atoi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/based_atoi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/fdprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/free.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/int2str.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/malloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/memcmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/memcpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/memset.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/printf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/recv_until.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/skip_calloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/skip_realloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/skip_recv_n.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/snprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/sprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strcasecmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strcmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strcpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strlen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strncmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strncpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/functions/strtol.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/identify.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/identifier/runner.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/init_finder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/loop_analysis.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/loopfinder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/engine_base.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/engine_vex.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/tmpvar_finder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/top_checker_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/values.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/propagator/vex_vars.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/reaching_definitions/external_codeloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/reassembler.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/soot_class_hierarchy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/static_hooker.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/typehoon/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/typehoon/lifter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/typehoon/variance.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/variable_recovery/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/variable_recovery/annotations.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/variable_recovery/engine_vex.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/vsa_ddg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/analyses/vtable.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/models.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/cfg_model.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/comments.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/funcs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/labels.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/variables.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/angrdb/serializers/xrefs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/blade.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/callable.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/any.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/any_named.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/controlled_data.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/eval.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/logging.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/nonzero.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/nonzero_range.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/norepeats.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/norepeats_range.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/range.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/signed_add.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/single.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/solutions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/concretization_strategies/unlimited_range.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/distributed/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/concrete.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/failure.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/hook.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/light/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/light/data.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/pcode/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/pcode/cc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/procedure.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/engine.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/exceptions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/arrayref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/base.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/binop.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/cast.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/condition.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/constants.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/instanceOf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/instancefieldref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/invoke.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/length.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/local.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/new.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/newArray.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/newMultiArray.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/paramref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/phi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/staticfieldref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/thisref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/expressions/unsupported.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/field_dispatcher.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/method_dispatcher.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/assign.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/base.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/goto.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/identity.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/if_.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/invoke.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/return_.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/switch.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/statements/throw.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/arrayref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/base.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/constants.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/instancefieldref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/local.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/paramref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/staticfieldref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/strref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/soot/values/thisref.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/successors.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/syscall.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/unicorn.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/claripy/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/claripy/irop.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/actions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/concretizers.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/dirty.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/heavy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/inspect.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/resilience.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/heavy/super_fastpath.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/lifter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/light/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/light/resilience.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/engines/vex/light/slicing.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/errors.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/bucketizer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/common.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/dfs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/director.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/driller_core.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/explorer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/lengthlimiter.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/local_loop_seer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/loop_seer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/manual_mergepoint.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/memory_watcher.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/oppologist.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/slicecutor.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/spiller.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/spiller_db.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/stochastic.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/suggestions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/symbion.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/tech_builder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/threading.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/timeout.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/unique.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/exploration_techniques/veritesting.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/graph_utils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_base/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/cfg/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/comments.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/data.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/functions/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/functions/function_parser.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/functions/soot_function.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/key_definitions/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/key_definitions/constants.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/key_definitions/tag.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/key_definitions/undefined.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/key_definitions/unknown_size.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/labels.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/plugin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/propagations/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/structured_code/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/sync/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/types.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/variables/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/xrefs/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/knowledge_plugins/xrefs/xref_types.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/bug_report.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/hookset.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/import_hooks.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/loggers.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/picklable_lock.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/range.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/testing.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/ux.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/misc/weakpatch.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/advapi32/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/_terminate.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/allocate.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/deallocate.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/fdwait.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/random.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/receive.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/cgc/transmit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/cgc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/glibc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/gnulib.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/libstdcpp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/linux_loader.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/msvcr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/parse_syscalls_from_local_system.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/types_win32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_clfs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_fltmgr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_fwpkclnt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_fwpuclnt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_gdi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_hal.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_ksecdd.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_ndis.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_ntoskrnl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_offreg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_pshed.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_secur32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/wdk_vhfum.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_aclui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_activeds.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_advapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_advpack.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_amsi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-appmodel-runtime-l1-1-6.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-apiquery-l2-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-backgroundtask-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-comm-l1-1-2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-enclave-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-errorhandling-l1-1-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-featurestaging-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-file-fromapp-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-handle-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-ioring-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-marshal-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-5.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-6.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-7.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-memory-l1-1-8.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-path-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-psm-appnotify-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-realtime-l1-1-2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-slapi-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-state-helpers-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-synch-l1-2-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-sysinfo-l1-2-6.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-util-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-error-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-registration-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-robuffer-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-roparameterizediid-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-winrt-string-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-core-wow64-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-devices-query-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-dx-d3dkmt-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-deviceinformation-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-expandedresources-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-gaming-tcui-l1-1-4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-mm-misc-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-net-isolation-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-security-base-l1-2-2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-security-isolatedcontainer-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-3.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-service-core-l1-1-5.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-shcore-scaling-l1-1-2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-shcore-stream-winrt-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_api-ms-win-wsl-api-l1-1-0.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_apphelp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_authz.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_avicap32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_avifil32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_avrt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bcp47mrm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bcrypt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bcryptprimitives.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bluetoothapis.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bthprops.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_bthprops_cpl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cabinet.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_certadm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_certpoleng.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cfgmgr32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_chakra.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cldapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_clfsw32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_clusapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_comctl32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_comdlg32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_compstui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_computecore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_computenetwork.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_computestorage.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_comsvcs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_coremessaging.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_credui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_crypt32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cryptnet.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cryptui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cryptxml.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_cscapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d2d1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3d10.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3d10_1.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3d11.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3d12.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3d9.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3dcompiler_47.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_d3dcsx.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_davclnt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dbgeng.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dbghelp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dbgmodel.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dciman32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dcomp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ddraw.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_deviceaccess.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dflayout.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dhcpcsvc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dhcpcsvc6.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dhcpsapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_diagnosticdataquery.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dinput8.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_directml.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dmprocessxmlfiltered.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dnsapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_drt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_drtprov.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_drttransport.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dsound.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dsparse.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dsprop.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dssec.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dsuiext.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dwmapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dwrite.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dxcompiler.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dxcore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dxgi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_dxva2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_eappcfg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_eappprxy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_efswrt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_elscore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_esent.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_evr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_faultrep.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_fhsvcctl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_firewallapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_fltlib.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_fontsub.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_forceinline.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_fwpuclnt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_fxsutility.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_gdi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_gdiplus.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_glu32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_gpedit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_hhctrl_ocx.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_hid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_hlink.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_hrtfapo.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_httpapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_icm32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_icmui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_icu.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ieframe.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_imagehlp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_imgutil.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_imm32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_infocardapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_inkobjcore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_iphlpapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_iscsidsc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_isolatedwindowsenvironmentutils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_kernel32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_kernelbase.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_keycredmgr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ksproxy_ax.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ksuser.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ktmw32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_licenseprotection.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_loadperf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_magnification.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mdmlocalmanagement.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mdmregistration.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfcore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfplat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfplay.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfreadwrite.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfsensorgroup.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mfsrcsnk.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mgmtapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mmdevapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mpr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mprapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mqrt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mrmsupport.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msacm32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msajapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mscms.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mscoree.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msctfmonitor.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msdelta.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msdmo.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msdrm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msimg32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mspatcha.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mspatchc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msports.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msrating.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mssign32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mstask.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_msvfw32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mswsock.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_mtxdm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ncrypt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ndfapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_netapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_netsh.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_netshell.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_newdev.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ninput.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_normaliz.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ntdll.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ntdllk.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ntdsapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ntlanman.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_odbc32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_odbcbcp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ole32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_oleacc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_oleaut32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_oledlg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ondemandconnroutehelper.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_opengl32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_opmxbox.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_p2p.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_p2pgraph.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_pdh.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_peerdist.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_powrprof.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_prntvpt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_projectedfslib.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_propsys.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_psapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_quartz.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_query.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_qwave.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rasapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rasdlg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_resutils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rometadata.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rpcns4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rpcproxy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rpcrt4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rstrtmgr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rtm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rtutils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_rtworkq.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sas.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_scarddlg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_schannel.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sechost.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_secur32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sensapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sensorsutilsv2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_setupapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sfc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_shdocvw.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_shell32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_shlwapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_slc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_slcext.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_slwga.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_snmpapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_spoolss.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_srclient.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_srpapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sspicli.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_sti.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_t2embed.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_tapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_tbs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_tdh.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_tokenbinding.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_traffic.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_txfw32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ualapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_uiautomationcore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_urlmon.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_user32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_userenv.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_usp10.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_uxtheme.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_verifier.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_version.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_vertdll.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_virtdisk.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_vmdevicehost.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_vmsavedstatedumpprovider.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_vssapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wcmapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wdsbp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wdsclientapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wdsmc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wdspxe.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wdstptc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_webauthn.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_webservices.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_websocket.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wecapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wevtapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winbio.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windows_ai_machinelearning.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windows_data_pdf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windows_media_mediacontrol.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windows_networking.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windows_ui_xaml.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_windowscodecs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winfax.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winhttp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winhvemulation.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winhvplatform.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wininet.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winml.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winmm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winscard.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winspool.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winspool_drv.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wintrust.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_winusb.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wlanapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wlanui.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wldap32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wldp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wmvcore.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wnvapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wofutil.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_ws2_32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wscapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wsclient.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wsdapi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wsmsvc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wsnmp32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_wtsapi32.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xaudio2_8.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xinput1_4.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xinputuap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xmllite.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xolehlp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/definitions/win32_xpsprint.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__ctype_b_loc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__ctype_tolower_loc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__ctype_toupper_loc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__errno_location.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__libc_init.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/__libc_start_main.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/dynamic_loading.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/scanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/glibc/sscanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/gnulib/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/gnulib/xalloc_die.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/gnulib/xstrtol_fatal.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java/unconstrained.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_io/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_io/read.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_io/write.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/class_and_interface_operations.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/field_access.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/global_and_local_refs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/not_implemented.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/object_operations.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/string_operations.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_jni/version_information.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/character.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/double.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/exit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/getsimplename.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/integer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/load_library.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/math.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/string.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/stringbuilder.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_lang/system.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/collection.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/iterator.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/list.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/map.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/random.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/java_util/scanner_nextline.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/abort.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/access.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/atoi.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/atol.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/calloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/closelog.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/err.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/error.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/exit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fclose.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/feof.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fflush.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fgetc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fgets.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fopen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fputc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fputs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fread.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/free.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fscanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fseek.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/ftell.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/fwrite.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/getchar.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/getdelim.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/getegid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/geteuid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/getgid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/gets.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/getuid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/malloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/memcmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/memcpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/memset.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/openlog.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/perror.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/printf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/putchar.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/puts.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/rand.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/realloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/rewind.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/scanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/setbuf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/setvbuf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/snprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/sprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/srand.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/sscanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/stpcpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strcat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strchr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strcmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strcpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strlen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strncat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strncmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strncpy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strnlen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strstr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strtol.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/strtoul.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/system.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/time.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/tmpnam.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/tolower.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/toupper.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/ungetc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/vsnprintf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libc/wchar.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/_unwind_resume.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/std____throw_bad_alloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/std____throw_bad_cast.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/std____throw_length_error.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/std____throw_logic_error.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/libstdcpp/std__terminate.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/access.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/arch_prctl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/arm_user_helpers.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/brk.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/cwd.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/fstat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/fstat64.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/futex.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/getegid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/geteuid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/getgid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/getpid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/getrlimit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/gettid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/getuid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/iovec.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/lseek.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/mmap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/mprotect.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/munmap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/openat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/set_tid_address.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/sigaction.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/sigprocmask.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/stat.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/sysinfo.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/tgkill.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/time.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/uid.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/uname.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/unlink.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_kernel/vsyscall.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_loader/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_loader/_dl_initial_error_catch_tsd.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_loader/_dl_rtld_lock.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_loader/sim_loader.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/linux_loader/tls.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/msvcr/__getmainargs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/msvcr/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/msvcr/_initterm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/msvcr/fmode.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/ntdll/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/ntdll/exceptions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/accept.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/bind.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/bzero.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/chroot.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/close.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/closedir.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/dup.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/fcntl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/fdopen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/fileno.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/fork.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/getenv.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/gethostbyname.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/getpass.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/getsockopt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/htonl.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/htons.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/listen.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/mmap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/open.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/opendir.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/poll.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/pread64.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/pthread.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/pwrite64.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/read.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/readdir.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/recv.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/recvfrom.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/select.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/send.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/setsockopt.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/sigaction.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/sim_time.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/sleep.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/socket.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/strcasecmp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/strdup.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/strtok_r.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/syslog.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/tz.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/unlink.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/usleep.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/posix/write.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/procedure_dict.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/CallReturn.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/NoReturnUnconstrained.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/Nop.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/PathTerminator.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/Redirect.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/ReturnChar.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/ReturnUnconstrained.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/UnresolvableCallTarget.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/UnresolvableJumpTarget.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/UserHook.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/b64_decode.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/caller.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/crazy_scanf.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/stubs/syscall_stub.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/testing/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/testing/manyargs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/testing/retreg.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/tracer/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/tracer/random.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/tracer/receive.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/tracer/transmit.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/uclibc/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/uclibc/__uClibc_main.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/EncodePointer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/ExitProcess.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetCommandLine.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetCurrentProcessId.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetCurrentThreadId.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetLastInputInfo.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetModuleHandle.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/GetProcessAffinityMask.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/InterlockedExchange.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/IsProcessorFeaturePresent.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/VirtualAlloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/VirtualProtect.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/critical_section.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/dynamic_loading.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/file_handles.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/gethostbyname.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/heap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/is_bad_ptr.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/local_storage.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/mutex.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/sim_time.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32/system_paths.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32_kernel/ExAllocatePool.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32_kernel/ExFreePoolWithTag.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win32_kernel/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win_user32/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win_user32/chars.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win_user32/keyboard.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/procedures/win_user32/messagebox.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/cfg_pb2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/function_pb2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/primitives_pb2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/variables_pb2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/protos/xrefs_pb2.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/py.typed +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/serializable.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/service.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/sim_options.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/sim_state_options.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/cgc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/javavm.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/linux.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/snimmuc_nxp.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/simos/windows.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/slicer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_hierarchy.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/cgc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/concrete.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/debug_variables.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/filesystem.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/gdb.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/globals.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/heap_base.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/heap_brk.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/heap_freelist.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/heap_libc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/heap_ptmalloc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/heap/utils.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/inspect.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/javavm_classloader.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/jni_references.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/libc.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/light_registers.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/log.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/loop_data.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/plugin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/posix.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/preconstrainer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/scratch.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/sim_action.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/sim_action_object.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/sim_event.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/symbolizer.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/trace_additions.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/uc_manager.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/unicorn_engine.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/state_plugins/view.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/file.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/__init__.pyi +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/bvv_conversion_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/clouseau_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/conditional_store_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/dirty_addrs_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/hex_dumper_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/javavm_memory/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/javavm_memory/javavm_memory_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/keyvalue_memory/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/name_resolution_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/pages/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/privileged_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/regioned_memory/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/simple_interface_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/simplification_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/slotted_memory.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/smart_find_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/underconstrained_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/memory_mixins/unwrapper_mixin.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/storage/pcap.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/tablespecs.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/__init__.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/constants.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/cowdict.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/enums_conv.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/env.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/lazy_import.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/loader.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/utils/timing.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr/vaults.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr.egg-info/dependency_links.txt +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr.egg-info/entry_points.txt +0 -0
- {angr-9.2.101 → angr-9.2.103}/angr.egg-info/top_level.txt +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/Makefile +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/Makefile-win +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/angr_native.def +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/log.c +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/log.h +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/sim_unicorn.cpp +0 -0
- {angr-9.2.101 → angr-9.2.103}/native/sim_unicorn.hpp +0 -0
- {angr-9.2.101 → angr-9.2.103}/setup.py +0 -0
- {angr-9.2.101 → angr-9.2.103}/tests/test_calling_conventions.py +0 -0
angr-9.2.103/PKG-INFO
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: angr
|
|
3
|
+
Version: 9.2.103
|
|
4
|
+
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
|
+
Home-page: https://github.com/angr/angr
|
|
6
|
+
License: BSD-2-Clause
|
|
7
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: CppHeaderParser
|
|
17
|
+
Requires-Dist: GitPython
|
|
18
|
+
Requires-Dist: ailment==9.2.103
|
|
19
|
+
Requires-Dist: archinfo==9.2.103
|
|
20
|
+
Requires-Dist: cachetools
|
|
21
|
+
Requires-Dist: capstone==5.0.0.post1
|
|
22
|
+
Requires-Dist: cffi>=1.14.0
|
|
23
|
+
Requires-Dist: claripy==9.2.103
|
|
24
|
+
Requires-Dist: cle==9.2.103
|
|
25
|
+
Requires-Dist: dpkt
|
|
26
|
+
Requires-Dist: itanium-demangler
|
|
27
|
+
Requires-Dist: mulpyplexer
|
|
28
|
+
Requires-Dist: nampa
|
|
29
|
+
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
30
|
+
Requires-Dist: protobuf>=3.19.0
|
|
31
|
+
Requires-Dist: psutil
|
|
32
|
+
Requires-Dist: pycparser>=2.18
|
|
33
|
+
Requires-Dist: pyformlang
|
|
34
|
+
Requires-Dist: pyvex==9.2.103
|
|
35
|
+
Requires-Dist: rich>=13.1.0
|
|
36
|
+
Requires-Dist: rpyc
|
|
37
|
+
Requires-Dist: sortedcontainers
|
|
38
|
+
Requires-Dist: sympy
|
|
39
|
+
Requires-Dist: unicorn==2.0.1.post1
|
|
40
|
+
Requires-Dist: unique-log-filter
|
|
41
|
+
Requires-Dist: colorama; platform_system == "Windows"
|
|
42
|
+
Provides-Extra: angrdb
|
|
43
|
+
Requires-Dist: sqlalchemy; extra == "angrdb"
|
|
44
|
+
Provides-Extra: docs
|
|
45
|
+
Requires-Dist: furo; extra == "docs"
|
|
46
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
47
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
48
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
|
|
49
|
+
Provides-Extra: pcode
|
|
50
|
+
Requires-Dist: pypcode~=2.1.0; extra == "pcode"
|
|
51
|
+
Provides-Extra: testing
|
|
52
|
+
Requires-Dist: keystone-engine; extra == "testing"
|
|
53
|
+
Requires-Dist: pypcode~=2.1.0; extra == "testing"
|
|
54
|
+
Requires-Dist: pytest; extra == "testing"
|
|
55
|
+
Requires-Dist: pytest-split; extra == "testing"
|
|
56
|
+
Requires-Dist: pytest-xdist; extra == "testing"
|
|
57
|
+
Requires-Dist: sqlalchemy; extra == "testing"
|
|
58
|
+
|
|
59
|
+
# angr
|
|
60
|
+
|
|
61
|
+
[](https://pypi.python.org/pypi/angr/)
|
|
62
|
+
[](https://pypi.python.org/pypi/angr/)
|
|
63
|
+
[](https://pypistats.org/packages/angr)
|
|
64
|
+
[](https://github.com/angr/angr/blob/master/LICENSE)
|
|
65
|
+
|
|
66
|
+
angr is a platform-agnostic binary analysis framework.
|
|
67
|
+
It is brought to you by [the Computer Security Lab at UC Santa Barbara](https://seclab.cs.ucsb.edu), [SEFCOM at Arizona State University](https://sefcom.asu.edu), their associated CTF team, [Shellphish](https://shellphish.net), the open source community, and **[@rhelmot](https://github.com/rhelmot)**.
|
|
68
|
+
|
|
69
|
+
## Project Links
|
|
70
|
+
Homepage: https://angr.io
|
|
71
|
+
|
|
72
|
+
Project repository: https://github.com/angr/angr
|
|
73
|
+
|
|
74
|
+
Documentation: https://docs.angr.io
|
|
75
|
+
|
|
76
|
+
API Documentation: https://api.angr.io/en/latest/
|
|
77
|
+
|
|
78
|
+
## What is angr?
|
|
79
|
+
|
|
80
|
+
angr is a suite of Python 3 libraries that let you load a binary and do a lot of cool things to it:
|
|
81
|
+
|
|
82
|
+
- Disassembly and intermediate-representation lifting
|
|
83
|
+
- Program instrumentation
|
|
84
|
+
- Symbolic execution
|
|
85
|
+
- Control-flow analysis
|
|
86
|
+
- Data-dependency analysis
|
|
87
|
+
- Value-set analysis (VSA)
|
|
88
|
+
- Decompilation
|
|
89
|
+
|
|
90
|
+
The most common angr operation is loading a binary: `p = angr.Project('/bin/bash')` If you do this in an enhanced REPL like IPython, you can use tab-autocomplete to browse the [top-level-accessible methods](https://docs.angr.io/docs/toplevel) and their docstrings.
|
|
91
|
+
|
|
92
|
+
The short version of "how to install angr" is `mkvirtualenv --python=$(which python3) angr && python -m pip install angr`.
|
|
93
|
+
|
|
94
|
+
## Example
|
|
95
|
+
|
|
96
|
+
angr does a lot of binary analysis stuff.
|
|
97
|
+
To get you started, here's a simple example of using symbolic execution to get a flag in a CTF challenge.
|
|
98
|
+
|
|
99
|
+
```python
|
|
100
|
+
import angr
|
|
101
|
+
|
|
102
|
+
project = angr.Project("angr-doc/examples/defcamp_r100/r100", auto_load_libs=False)
|
|
103
|
+
|
|
104
|
+
@project.hook(0x400844)
|
|
105
|
+
def print_flag(state):
|
|
106
|
+
print("FLAG SHOULD BE:", state.posix.dumps(0))
|
|
107
|
+
project.terminate_execution()
|
|
108
|
+
|
|
109
|
+
project.execute()
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
# Quick Start
|
|
113
|
+
|
|
114
|
+
- [Install Instructions](https://docs.angr.io/introductory-errata/install)
|
|
115
|
+
- Documentation as [HTML](https://docs.angr.io/) and sources in the angr [Github repository](https://github.com/angr/angr/tree/master/docs)
|
|
116
|
+
- Dive right in: [top-level-accessible methods](https://docs.angr.io/core-concepts/toplevel)
|
|
117
|
+
- [Examples using angr to solve CTF challenges](https://docs.angr.io/examples).
|
|
118
|
+
- [API Reference](https://angr.io/api-doc/)
|
|
119
|
+
- [awesome-angr repo](https://github.com/degrigis/awesome-angr)
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# pylint: disable=wildcard-import
|
|
2
|
+
# pylint: disable=wrong-import-position
|
|
3
|
+
|
|
4
|
+
__version__ = "9.2.103"
|
|
5
|
+
|
|
6
|
+
if bytes is str:
|
|
7
|
+
raise Exception(
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
=-=-=-=-=-=-=-=-=-=-=-=-= WELCOME TO THE FUTURE! =-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
11
|
+
|
|
12
|
+
angr has transitioned to python 3. Due to the small size of the team behind it,
|
|
13
|
+
we can't reasonably maintain compatibility between both python 2 and python 3.
|
|
14
|
+
If you want to continue using the most recent version of angr (you definitely
|
|
15
|
+
want that, trust us) you should upgrade to python 3. It's like getting your
|
|
16
|
+
vaccinations. It hurts a little bit initially but in the end it's worth it.
|
|
17
|
+
|
|
18
|
+
For more information, see here: https://docs.angr.io/appendix/migration
|
|
19
|
+
|
|
20
|
+
Good luck!
|
|
21
|
+
"""
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
from .utils.formatting import setup_terminal
|
|
25
|
+
|
|
26
|
+
setup_terminal()
|
|
27
|
+
del setup_terminal
|
|
28
|
+
|
|
29
|
+
# let's set up some bootstrap logging
|
|
30
|
+
import logging
|
|
31
|
+
|
|
32
|
+
logging.getLogger("angr").addHandler(logging.NullHandler())
|
|
33
|
+
from .misc.loggers import Loggers
|
|
34
|
+
|
|
35
|
+
loggers = Loggers()
|
|
36
|
+
del Loggers
|
|
37
|
+
del logging
|
|
38
|
+
|
|
39
|
+
# import hook: pkg_resources is too slow to import, but it is used by some other packages that angr depends on. while
|
|
40
|
+
# we upstream our fixes, we replace it with a light-weight solution.
|
|
41
|
+
from .misc.import_hooks import import_fake_pkg_resources
|
|
42
|
+
|
|
43
|
+
import_fake_pkg_resources(force=False)
|
|
44
|
+
|
|
45
|
+
# this must happen first, prior to initializing analyses
|
|
46
|
+
from .sim_procedure import SimProcedure
|
|
47
|
+
from .procedures import SIM_PROCEDURES, SimProcedures, SIM_LIBRARIES, SIM_TYPE_COLLECTIONS
|
|
48
|
+
|
|
49
|
+
from . import sim_options
|
|
50
|
+
|
|
51
|
+
options = sim_options # alias
|
|
52
|
+
|
|
53
|
+
# enums
|
|
54
|
+
from .state_plugins.inspect import BP_BEFORE, BP_AFTER, BP_BOTH, BP_IPDB, BP_IPYTHON
|
|
55
|
+
|
|
56
|
+
# other stuff
|
|
57
|
+
from .state_plugins.inspect import BP
|
|
58
|
+
from .state_plugins import SimStatePlugin
|
|
59
|
+
|
|
60
|
+
from .project import Project, load_shellcode
|
|
61
|
+
from .errors import *
|
|
62
|
+
from .blade import Blade
|
|
63
|
+
from .simos import SimOS
|
|
64
|
+
from .block import Block
|
|
65
|
+
from .sim_manager import SimulationManager
|
|
66
|
+
from .analyses import Analysis, register_analysis
|
|
67
|
+
from . import analyses
|
|
68
|
+
from . import knowledge_plugins
|
|
69
|
+
from . import exploration_techniques
|
|
70
|
+
from .exploration_techniques import ExplorationTechnique
|
|
71
|
+
from . import sim_type as types
|
|
72
|
+
from .state_hierarchy import StateHierarchy
|
|
73
|
+
|
|
74
|
+
from .sim_state import SimState
|
|
75
|
+
from . import engines
|
|
76
|
+
from .calling_conventions import default_cc, DEFAULT_CC, SYSCALL_CC, PointerWrapper, SimCC
|
|
77
|
+
from .storage.file import (
|
|
78
|
+
SimFileBase,
|
|
79
|
+
SimFile,
|
|
80
|
+
SimPackets,
|
|
81
|
+
SimFileStream,
|
|
82
|
+
SimPacketsStream,
|
|
83
|
+
SimFileDescriptor,
|
|
84
|
+
SimFileDescriptorDuplex,
|
|
85
|
+
)
|
|
86
|
+
from .state_plugins.filesystem import SimMount, SimHostFilesystem
|
|
87
|
+
from .state_plugins.heap import SimHeapBrk, SimHeapPTMalloc, PTChunk
|
|
88
|
+
from . import concretization_strategies
|
|
89
|
+
from .distributed import Server
|
|
90
|
+
from .knowledge_base import KnowledgeBase
|
|
91
|
+
from .procedures.definitions import load_external_definitions
|
|
92
|
+
|
|
93
|
+
# for compatibility reasons
|
|
94
|
+
from . import sim_manager as manager
|
|
95
|
+
|
|
96
|
+
# now that we have everything loaded, re-grab the list of loggers
|
|
97
|
+
loggers.load_all_loggers()
|
|
98
|
+
|
|
99
|
+
load_external_definitions()
|
|
100
|
+
|
|
101
|
+
__all__ = (
|
|
102
|
+
"SimProcedure",
|
|
103
|
+
"SIM_PROCEDURES",
|
|
104
|
+
"SIM_LIBRARIES",
|
|
105
|
+
"SIM_TYPE_COLLECTIONS",
|
|
106
|
+
"sim_options",
|
|
107
|
+
"options",
|
|
108
|
+
"BP_BEFORE",
|
|
109
|
+
"BP_AFTER",
|
|
110
|
+
"BP_BOTH",
|
|
111
|
+
"BP_IPDB",
|
|
112
|
+
"BP_IPYTHON",
|
|
113
|
+
"BP",
|
|
114
|
+
"SimStatePlugin",
|
|
115
|
+
"Project",
|
|
116
|
+
"load_shellcode",
|
|
117
|
+
"Blade",
|
|
118
|
+
"SimOS",
|
|
119
|
+
"Block",
|
|
120
|
+
"SimulationManager",
|
|
121
|
+
"Analysis",
|
|
122
|
+
"register_analysis",
|
|
123
|
+
"analyses",
|
|
124
|
+
"knowledge_plugins",
|
|
125
|
+
"exploration_techniques",
|
|
126
|
+
"ExplorationTechnique",
|
|
127
|
+
"types",
|
|
128
|
+
"StateHierarchy",
|
|
129
|
+
"SimState",
|
|
130
|
+
"engines",
|
|
131
|
+
"DEFAULT_CC",
|
|
132
|
+
"default_cc",
|
|
133
|
+
"SYSCALL_CC",
|
|
134
|
+
"PointerWrapper",
|
|
135
|
+
"SimCC",
|
|
136
|
+
"SimFileBase",
|
|
137
|
+
"SimFile",
|
|
138
|
+
"SimPackets",
|
|
139
|
+
"SimFileStream",
|
|
140
|
+
"SimPacketsStream",
|
|
141
|
+
"SimFileDescriptor",
|
|
142
|
+
"SimFileDescriptorDuplex",
|
|
143
|
+
"SimMount",
|
|
144
|
+
"SimHostFilesystem",
|
|
145
|
+
"SimHeapBrk",
|
|
146
|
+
"SimHeapPTMalloc",
|
|
147
|
+
"PTChunk",
|
|
148
|
+
"concretization_strategies",
|
|
149
|
+
"Server",
|
|
150
|
+
"manager",
|
|
151
|
+
"SimProcedures",
|
|
152
|
+
"KnowledgeBase",
|
|
153
|
+
)
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
# ruff: noqa: F401
|
|
2
|
+
import functools
|
|
3
|
+
import sys
|
|
4
|
+
import contextlib
|
|
5
|
+
from collections import defaultdict
|
|
6
|
+
from inspect import Signature
|
|
7
|
+
from typing import TYPE_CHECKING, TypeVar, Type, Generic, Optional
|
|
8
|
+
from collections.abc import Callable
|
|
9
|
+
|
|
10
|
+
import logging
|
|
11
|
+
import time
|
|
12
|
+
import typing
|
|
13
|
+
|
|
14
|
+
from rich import progress
|
|
15
|
+
|
|
16
|
+
from ..misc.plugins import PluginVendor, VendorPreset
|
|
17
|
+
from ..misc.ux import deprecated
|
|
18
|
+
|
|
19
|
+
if TYPE_CHECKING:
|
|
20
|
+
from ..knowledge_base import KnowledgeBase
|
|
21
|
+
from ..project import Project
|
|
22
|
+
from typing_extensions import ParamSpec
|
|
23
|
+
from .identifier import Identifier
|
|
24
|
+
from .callee_cleanup_finder import CalleeCleanupFinder
|
|
25
|
+
from .vsa_ddg import VSA_DDG
|
|
26
|
+
from .cdg import CDG
|
|
27
|
+
from .bindiff import BinDiff
|
|
28
|
+
from .cfg import CFGEmulated
|
|
29
|
+
from .cfg import CFBlanket
|
|
30
|
+
from .cfg import CFG
|
|
31
|
+
from .cfg import CFGFast
|
|
32
|
+
from .static_hooker import StaticHooker
|
|
33
|
+
from .ddg import DDG
|
|
34
|
+
from .congruency_check import CongruencyCheck
|
|
35
|
+
from .reassembler import Reassembler
|
|
36
|
+
from .backward_slice import BackwardSlice
|
|
37
|
+
from .binary_optimizer import BinaryOptimizer
|
|
38
|
+
from .vfg import VFG
|
|
39
|
+
from .loopfinder import LoopFinder
|
|
40
|
+
from .disassembly import Disassembly
|
|
41
|
+
from .veritesting import Veritesting
|
|
42
|
+
from .code_tagging import CodeTagging
|
|
43
|
+
from .boyscout import BoyScout
|
|
44
|
+
from .variable_recovery import VariableRecoveryFast
|
|
45
|
+
from .variable_recovery import VariableRecovery
|
|
46
|
+
from .reaching_definitions import ReachingDefinitionsAnalysis
|
|
47
|
+
from .complete_calling_conventions import CompleteCallingConventionsAnalysis
|
|
48
|
+
from .decompiler.clinic import Clinic
|
|
49
|
+
from .propagator import PropagatorAnalysis
|
|
50
|
+
from .calling_convention import CallingConventionAnalysis
|
|
51
|
+
from .decompiler.decompiler import Decompiler
|
|
52
|
+
from .xrefs import XRefsAnalysis
|
|
53
|
+
|
|
54
|
+
AnalysisParams = ParamSpec("AnalysisParams")
|
|
55
|
+
|
|
56
|
+
l = logging.getLogger(name=__name__)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
class AnalysisLogEntry:
|
|
60
|
+
def __init__(self, message, exc_info=False):
|
|
61
|
+
if exc_info:
|
|
62
|
+
(e_type, value, traceback) = sys.exc_info()
|
|
63
|
+
self.exc_type = e_type
|
|
64
|
+
self.exc_value = value
|
|
65
|
+
self.exc_traceback = traceback
|
|
66
|
+
else:
|
|
67
|
+
self.exc_type = None
|
|
68
|
+
self.exc_value = None
|
|
69
|
+
self.exc_traceback = None
|
|
70
|
+
|
|
71
|
+
self.message = message
|
|
72
|
+
|
|
73
|
+
def __getstate__(self):
|
|
74
|
+
return (
|
|
75
|
+
str(self.__dict__.get("exc_type")),
|
|
76
|
+
str(self.__dict__.get("exc_value")),
|
|
77
|
+
str(self.__dict__.get("exc_traceback")),
|
|
78
|
+
self.message,
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
def __setstate__(self, s):
|
|
82
|
+
self.exc_type, self.exc_value, self.exc_traceback, self.message = s
|
|
83
|
+
|
|
84
|
+
def __repr__(self):
|
|
85
|
+
if self.exc_type is None:
|
|
86
|
+
msg_str = repr(self.message)
|
|
87
|
+
if len(msg_str) > 70:
|
|
88
|
+
msg_str = msg_str[:66] + "..."
|
|
89
|
+
if msg_str[0] in ('"', "'"):
|
|
90
|
+
msg_str += msg_str[0]
|
|
91
|
+
return "<AnalysisLogEntry %s>" % msg_str
|
|
92
|
+
else:
|
|
93
|
+
msg_str = repr(self.message)
|
|
94
|
+
if len(msg_str) > 40:
|
|
95
|
+
msg_str = msg_str[:36] + "..."
|
|
96
|
+
if msg_str[0] in ('"', "'"):
|
|
97
|
+
msg_str += msg_str[0]
|
|
98
|
+
return f"<AnalysisLogEntry {msg_str} with {self.exc_type.__name__}: {self.exc_value}>"
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
A = TypeVar("A", bound="Analysis")
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
class AnalysesHub(PluginVendor[A]):
|
|
105
|
+
"""
|
|
106
|
+
This class contains functions for all the registered and runnable analyses,
|
|
107
|
+
"""
|
|
108
|
+
|
|
109
|
+
def __init__(self, project):
|
|
110
|
+
super().__init__()
|
|
111
|
+
self.project = project
|
|
112
|
+
|
|
113
|
+
@deprecated()
|
|
114
|
+
def reload_analyses(self): # pylint: disable=no-self-use
|
|
115
|
+
return
|
|
116
|
+
|
|
117
|
+
def _init_plugin(self, plugin_cls: type[A]) -> "AnalysisFactory[A]":
|
|
118
|
+
return AnalysisFactory(self.project, plugin_cls)
|
|
119
|
+
|
|
120
|
+
def __getstate__(self):
|
|
121
|
+
s = super().__getstate__()
|
|
122
|
+
return (s, self.project)
|
|
123
|
+
|
|
124
|
+
def __setstate__(self, sd):
|
|
125
|
+
s, self.project = sd
|
|
126
|
+
super().__setstate__(s)
|
|
127
|
+
|
|
128
|
+
def __getitem__(self, plugin_cls: type[A]) -> "AnalysisFactory[A]":
|
|
129
|
+
return AnalysisFactory(self.project, plugin_cls)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class KnownAnalysesPlugin(typing.Protocol):
|
|
133
|
+
Identifier: "Type[Identifier]"
|
|
134
|
+
CalleeCleanupFinder: "Type[CalleeCleanupFinder]"
|
|
135
|
+
VSA_DDG: "Type[VSA_DDG]"
|
|
136
|
+
CDG: "Type[CDG]"
|
|
137
|
+
BinDiff: "Type[BinDiff]"
|
|
138
|
+
CFGEmulated: "Type[CFGEmulated]"
|
|
139
|
+
CFB: "Type[CFBlanket]"
|
|
140
|
+
CFBlanket: "Type[CFBlanket]"
|
|
141
|
+
CFG: "Type[CFG]"
|
|
142
|
+
CFGFast: "Type[CFGFast]"
|
|
143
|
+
StaticHooker: "Type[StaticHooker]"
|
|
144
|
+
DDG: "Type[DDG]"
|
|
145
|
+
CongruencyCheck: "Type[CongruencyCheck]"
|
|
146
|
+
Reassembler: "Type[Reassembler]"
|
|
147
|
+
BackwardSlice: "Type[BackwardSlice]"
|
|
148
|
+
BinaryOptimizer: "Type[BinaryOptimizer]"
|
|
149
|
+
VFG: "Type[VFG]"
|
|
150
|
+
LoopFinder: "Type[LoopFinder]"
|
|
151
|
+
Disassembly: "Type[Disassembly]"
|
|
152
|
+
Veritesting: "Type[Veritesting]"
|
|
153
|
+
CodeTagging: "Type[CodeTagging]"
|
|
154
|
+
BoyScout: "Type[BoyScout]"
|
|
155
|
+
VariableRecoveryFast: "Type[VariableRecoveryFast]"
|
|
156
|
+
VariableRecovery: "Type[VariableRecovery]"
|
|
157
|
+
ReachingDefinitions: "Type[ReachingDefinitionsAnalysis]"
|
|
158
|
+
CompleteCallingConventions: "Type[CompleteCallingConventionsAnalysis]"
|
|
159
|
+
Clinic: "Type[Clinic]"
|
|
160
|
+
Propagator: "Type[PropagatorAnalysis]"
|
|
161
|
+
CallingConvention: "Type[CallingConventionAnalysis]"
|
|
162
|
+
Decompiler: "Type[Decompiler]"
|
|
163
|
+
XRefs: "Type[XRefsAnalysis]"
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
class AnalysesHubWithDefault(AnalysesHub, KnownAnalysesPlugin):
|
|
167
|
+
"""
|
|
168
|
+
This class has type-hinting for all built-in analyses plugin
|
|
169
|
+
"""
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
class AnalysisFactory(Generic[A]):
|
|
173
|
+
def __init__(self, project: "Project", analysis_cls: type[A]):
|
|
174
|
+
self._project = project
|
|
175
|
+
self._analysis_cls = analysis_cls
|
|
176
|
+
self.__doc__ = ""
|
|
177
|
+
self.__doc__ += analysis_cls.__doc__ or ""
|
|
178
|
+
self.__doc__ += analysis_cls.__init__.__doc__ or ""
|
|
179
|
+
self.__call__.__func__.__signature__ = Signature.from_callable(analysis_cls.__init__)
|
|
180
|
+
|
|
181
|
+
def prep(
|
|
182
|
+
self,
|
|
183
|
+
fail_fast=False,
|
|
184
|
+
kb: Optional["KnowledgeBase"] = None,
|
|
185
|
+
progress_callback: Callable | None = None,
|
|
186
|
+
show_progressbar: bool = False,
|
|
187
|
+
) -> type[A]:
|
|
188
|
+
@functools.wraps(self._analysis_cls.__init__)
|
|
189
|
+
def wrapper(*args, **kwargs):
|
|
190
|
+
oself = object.__new__(self._analysis_cls)
|
|
191
|
+
oself.named_errors = defaultdict(list)
|
|
192
|
+
oself.errors = []
|
|
193
|
+
oself.log = []
|
|
194
|
+
|
|
195
|
+
oself._fail_fast = fail_fast
|
|
196
|
+
oself._name = self._analysis_cls.__name__
|
|
197
|
+
oself.project = self._project
|
|
198
|
+
oself.kb = kb or self._project.kb
|
|
199
|
+
oself._progress_callback = progress_callback
|
|
200
|
+
|
|
201
|
+
oself._show_progressbar = show_progressbar
|
|
202
|
+
oself.__init__(*args, **kwargs)
|
|
203
|
+
return oself
|
|
204
|
+
|
|
205
|
+
return wrapper # type: ignore
|
|
206
|
+
|
|
207
|
+
def __call__(self, *args, **kwargs) -> A:
|
|
208
|
+
fail_fast = kwargs.pop("fail_fast", False)
|
|
209
|
+
kb = kwargs.pop("kb", self._project.kb)
|
|
210
|
+
progress_callback = kwargs.pop("progress_callback", None)
|
|
211
|
+
show_progressbar = kwargs.pop("show_progressbar", False)
|
|
212
|
+
|
|
213
|
+
w = self.prep(
|
|
214
|
+
fail_fast=fail_fast, kb=kb, progress_callback=progress_callback, show_progressbar=show_progressbar
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
r = w(*args, **kwargs)
|
|
218
|
+
# clean up so that it's always pickleable
|
|
219
|
+
r._progressbar = None
|
|
220
|
+
return r
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
class Analysis:
|
|
224
|
+
"""
|
|
225
|
+
This class represents an analysis on the program.
|
|
226
|
+
|
|
227
|
+
:ivar project: The project for this analysis.
|
|
228
|
+
:type project: angr.Project
|
|
229
|
+
:ivar KnowledgeBase kb: The knowledgebase object.
|
|
230
|
+
:ivar _progress_callback: A callback function for receiving the progress of this analysis. It only takes
|
|
231
|
+
one argument, which is a float number from 0.0 to 100.0 indicating the current
|
|
232
|
+
progress.
|
|
233
|
+
:ivar bool _show_progressbar: If a progressbar should be shown during the analysis. It's independent from
|
|
234
|
+
_progress_callback.
|
|
235
|
+
:ivar progress.Progress _progressbar: The progress bar object.
|
|
236
|
+
"""
|
|
237
|
+
|
|
238
|
+
project: "Project"
|
|
239
|
+
kb: "KnowledgeBase"
|
|
240
|
+
_fail_fast: bool
|
|
241
|
+
_name: str
|
|
242
|
+
errors = []
|
|
243
|
+
named_errors = defaultdict(list)
|
|
244
|
+
_progress_callback = None
|
|
245
|
+
_show_progressbar = False
|
|
246
|
+
_progressbar = None
|
|
247
|
+
_task = None
|
|
248
|
+
|
|
249
|
+
_PROGRESS_WIDGETS = [
|
|
250
|
+
progress.TaskProgressColumn(),
|
|
251
|
+
progress.BarColumn(),
|
|
252
|
+
progress.TextColumn("Elapsed Time:"),
|
|
253
|
+
progress.TimeElapsedColumn(),
|
|
254
|
+
progress.TextColumn("Time:"),
|
|
255
|
+
progress.TimeRemainingColumn(),
|
|
256
|
+
progress.TextColumn("{task.description}"),
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
@contextlib.contextmanager
|
|
260
|
+
def _resilience(self, name=None, exception=Exception):
|
|
261
|
+
try:
|
|
262
|
+
yield
|
|
263
|
+
except exception: # pylint:disable=broad-except
|
|
264
|
+
if self._fail_fast:
|
|
265
|
+
raise
|
|
266
|
+
else:
|
|
267
|
+
error = AnalysisLogEntry("exception occurred", exc_info=True)
|
|
268
|
+
l.error("Caught and logged %s with resilience: %s", error.exc_type.__name__, error.exc_value)
|
|
269
|
+
if name is None:
|
|
270
|
+
self.errors.append(error)
|
|
271
|
+
else:
|
|
272
|
+
self.named_errors[name].append(error)
|
|
273
|
+
|
|
274
|
+
def _initialize_progressbar(self):
|
|
275
|
+
"""
|
|
276
|
+
Initialize the progressbar.
|
|
277
|
+
:return: None
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
self._progressbar = progress.Progress(*self._PROGRESS_WIDGETS)
|
|
281
|
+
self._task = self._progressbar.add_task(total=100, description="")
|
|
282
|
+
|
|
283
|
+
self._progressbar.start()
|
|
284
|
+
|
|
285
|
+
def _update_progress(self, percentage, text=None, **kwargs):
|
|
286
|
+
"""
|
|
287
|
+
Update the progress with a percentage, including updating the progressbar as well as calling the progress
|
|
288
|
+
callback.
|
|
289
|
+
|
|
290
|
+
:param float percentage: Percentage of the progressbar. from 0.0 to 100.0.
|
|
291
|
+
:param kwargs: Other parameters that will be passed to the progress_callback handler.
|
|
292
|
+
:return: None
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
if self._show_progressbar:
|
|
296
|
+
if self._progressbar is None:
|
|
297
|
+
self._initialize_progressbar()
|
|
298
|
+
|
|
299
|
+
self._progressbar.update(self._task, completed=percentage)
|
|
300
|
+
|
|
301
|
+
if text is not None and self._progressbar:
|
|
302
|
+
self._progressbar.update(self._task, description=text)
|
|
303
|
+
|
|
304
|
+
if self._progress_callback is not None:
|
|
305
|
+
self._progress_callback(percentage, text=text, **kwargs) # pylint:disable=not-callable
|
|
306
|
+
|
|
307
|
+
def _finish_progress(self):
|
|
308
|
+
"""
|
|
309
|
+
Mark the progressbar as finished.
|
|
310
|
+
:return: None
|
|
311
|
+
"""
|
|
312
|
+
|
|
313
|
+
if self._show_progressbar:
|
|
314
|
+
if self._progressbar is None:
|
|
315
|
+
self._initialize_progressbar()
|
|
316
|
+
if self._progressbar is not None:
|
|
317
|
+
self._progressbar.update(self._task, completed=100)
|
|
318
|
+
self._progressbar.stop()
|
|
319
|
+
self._progressbar = None
|
|
320
|
+
|
|
321
|
+
if self._progress_callback is not None:
|
|
322
|
+
self._progress_callback(100.0) # pylint:disable=not-callable
|
|
323
|
+
|
|
324
|
+
@staticmethod
|
|
325
|
+
def _release_gil(ctr, freq, sleep_time=0.001):
|
|
326
|
+
"""
|
|
327
|
+
Periodically calls time.sleep() and releases the GIL so other threads (like, GUI threads) have a much better
|
|
328
|
+
chance to be scheduled, and other critical components (like the GUI) can be kept responsiveness.
|
|
329
|
+
|
|
330
|
+
This is, of course, a hack before we move all computational intensive tasks to pure C++ implementations.
|
|
331
|
+
|
|
332
|
+
:param int ctr: A number provided by the caller.
|
|
333
|
+
:param int freq: How frequently time.sleep() should be called. time.sleep() is called when ctr % freq == 0.
|
|
334
|
+
:param sleep_time: Number (or fraction) of seconds to sleep.
|
|
335
|
+
:return: None
|
|
336
|
+
"""
|
|
337
|
+
|
|
338
|
+
if ctr != 0 and ctr % freq == 0:
|
|
339
|
+
time.sleep(sleep_time)
|
|
340
|
+
|
|
341
|
+
def __getstate__(self):
|
|
342
|
+
d = dict(self.__dict__)
|
|
343
|
+
if "_progressbar" in d:
|
|
344
|
+
del d["_progressbar"]
|
|
345
|
+
if "_progress_callback" in d:
|
|
346
|
+
del d["_progress_callback"]
|
|
347
|
+
if "_statusbar" in d:
|
|
348
|
+
del d["_statusbar"]
|
|
349
|
+
return d
|
|
350
|
+
|
|
351
|
+
def __setstate__(self, state):
|
|
352
|
+
self.__dict__.update(state)
|
|
353
|
+
|
|
354
|
+
def __repr__(self):
|
|
355
|
+
return f"<{self._name} Analysis Result at {id(self):#x}>"
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
default_analyses = VendorPreset()
|
|
359
|
+
AnalysesHub.register_preset("default", default_analyses)
|