angr 9.2.123__py3-none-manylinux2014_aarch64.whl → 9.2.125__py3-none-manylinux2014_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/__init__.py +9 -1
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +11 -8
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +2 -2
- angr/analyses/codecave.py +77 -0
- angr/analyses/decompiler/ail_simplifier.py +16 -19
- angr/analyses/decompiler/callsite_maker.py +8 -7
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +24 -2
- angr/analyses/decompiler/clinic.py +58 -2
- angr/analyses/decompiler/condition_processor.py +10 -3
- angr/analyses/decompiler/decompilation_cache.py +2 -0
- angr/analyses/decompiler/decompiler.py +54 -8
- angr/analyses/decompiler/dephication/graph_vvar_mapping.py +10 -2
- angr/analyses/decompiler/dephication/rewriting_engine.py +64 -1
- angr/analyses/decompiler/expression_narrower.py +5 -1
- angr/analyses/decompiler/optimization_passes/__init__.py +3 -0
- angr/analyses/decompiler/optimization_passes/div_simplifier.py +4 -1
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +13 -0
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +23 -4
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +3 -1
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +8 -5
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +10 -5
- angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +18 -7
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +6 -0
- angr/analyses/decompiler/optimization_passes/tag_slicer.py +41 -0
- angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +2 -2
- angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +8 -2
- angr/analyses/decompiler/region_identifier.py +36 -0
- angr/analyses/decompiler/region_simplifiers/loop.py +2 -8
- angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +9 -3
- angr/analyses/decompiler/ssailification/rewriting.py +5 -2
- angr/analyses/decompiler/ssailification/rewriting_engine.py +151 -25
- angr/analyses/decompiler/ssailification/rewriting_state.py +1 -0
- angr/analyses/decompiler/ssailification/ssailification.py +17 -9
- angr/analyses/decompiler/ssailification/traversal.py +3 -1
- angr/analyses/decompiler/ssailification/traversal_engine.py +35 -8
- angr/analyses/decompiler/ssailification/traversal_state.py +1 -0
- angr/analyses/decompiler/structured_codegen/c.py +42 -4
- angr/analyses/decompiler/structuring/phoenix.py +3 -0
- angr/analyses/patchfinder.py +137 -0
- angr/analyses/pathfinder.py +282 -0
- angr/analyses/propagator/engine_ail.py +10 -3
- angr/analyses/reaching_definitions/engine_ail.py +10 -15
- angr/analyses/s_propagator.py +16 -9
- angr/analyses/s_reaching_definitions/s_rda_view.py +127 -63
- angr/analyses/smc.py +159 -0
- angr/analyses/variable_recovery/engine_ail.py +14 -0
- angr/analyses/variable_recovery/engine_base.py +11 -0
- angr/angrdb/models.py +1 -2
- angr/engines/light/engine.py +12 -0
- angr/engines/vex/heavy/heavy.py +2 -0
- angr/exploration_techniques/spiller_db.py +1 -2
- angr/knowledge_plugins/__init__.py +2 -0
- angr/knowledge_plugins/decompilation.py +45 -0
- angr/knowledge_plugins/functions/function.py +4 -0
- angr/knowledge_plugins/functions/function_manager.py +18 -9
- angr/knowledge_plugins/functions/function_parser.py +1 -1
- angr/knowledge_plugins/functions/soot_function.py +1 -0
- angr/knowledge_plugins/key_definitions/atoms.py +8 -0
- angr/misc/ux.py +2 -2
- angr/procedures/definitions/parse_win32json.py +2 -1
- angr/project.py +17 -1
- angr/state_plugins/history.py +6 -4
- angr/storage/memory_mixins/actions_mixin.py +7 -7
- angr/storage/memory_mixins/address_concretization_mixin.py +5 -5
- angr/storage/memory_mixins/bvv_conversion_mixin.py +1 -1
- angr/storage/memory_mixins/clouseau_mixin.py +3 -3
- angr/storage/memory_mixins/conditional_store_mixin.py +3 -3
- angr/storage/memory_mixins/default_filler_mixin.py +3 -3
- angr/storage/memory_mixins/memory_mixin.py +45 -34
- angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +15 -14
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +27 -16
- angr/storage/memory_mixins/paged_memory/pages/cooperation.py +18 -9
- angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +5 -5
- angr/storage/memory_mixins/paged_memory/pages/multi_values.py +89 -55
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +16 -25
- angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +11 -9
- angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +23 -7
- angr/storage/memory_mixins/paged_memory/privileged_mixin.py +1 -1
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +9 -7
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +9 -9
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +1 -0
- angr/storage/memory_mixins/simple_interface_mixin.py +2 -2
- angr/storage/memory_mixins/simplification_mixin.py +2 -2
- angr/storage/memory_mixins/size_resolution_mixin.py +1 -1
- angr/storage/memory_mixins/slotted_memory.py +3 -3
- angr/storage/memory_mixins/smart_find_mixin.py +1 -0
- angr/storage/memory_mixins/underconstrained_mixin.py +5 -5
- angr/storage/memory_mixins/unwrapper_mixin.py +4 -4
- angr/storage/memory_object.py +4 -3
- angr/utils/bits.py +4 -0
- angr/utils/constants.py +1 -1
- angr/utils/graph.py +15 -0
- angr/utils/tagged_interval_map.py +112 -0
- angr/vaults.py +2 -2
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/METADATA +6 -6
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/RECORD +103 -96
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/WHEEL +1 -1
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/LICENSE +0 -0
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/entry_points.txt +0 -0
- {angr-9.2.123.dist-info → angr-9.2.125.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.125
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
Home-page: https://github.com/angr/angr
|
|
6
6
|
License: BSD-2-Clause
|
|
@@ -16,13 +16,13 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: CppHeaderParser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: ailment==9.2.125
|
|
20
|
+
Requires-Dist: archinfo==9.2.125
|
|
21
21
|
Requires-Dist: cachetools
|
|
22
22
|
Requires-Dist: capstone==5.0.3
|
|
23
23
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
24
|
+
Requires-Dist: claripy==9.2.125
|
|
25
|
+
Requires-Dist: cle==9.2.125
|
|
26
26
|
Requires-Dist: itanium-demangler
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: nampa
|
|
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=5.28.2
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: pycparser>=2.18
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.125
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=ab5YAbhAR88Lsps_7vgmcRJcuo3Db9vUr2t8f7jR7P8,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=5fiS9TPt5r1_8g_qSfD2XkETlBdm5MTClBIQKqhm040,10624
|
|
4
4
|
angr/blade.py,sha256=GpbEumxMsb_6qD7TbtfZuW2CMzV7W1iwqYzQWYlXnxM,15394
|
|
@@ -12,7 +12,7 @@ angr/factory.py,sha256=YMieuzZk70g96BcqgUT0vZxemDlQh0WvjzoxZgduZj0,17453
|
|
|
12
12
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
angr/keyed_region.py,sha256=bi4xQYh3Is4t5LuFykgVDaaPpko0s4kEmDUEsGsJuPM,17992
|
|
14
14
|
angr/knowledge_base.py,sha256=rpQTkiIKpbjkJTaIaPf-L7ylwiGeM95VTGnUsTg9pOs,4538
|
|
15
|
-
angr/project.py,sha256=
|
|
15
|
+
angr/project.py,sha256=TQUXF1qyKpYjAs0gY2abwwhSwxLj67IeHlwQC-9ylcY,37535
|
|
16
16
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
17
17
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
18
18
|
angr/sim_manager.py,sha256=mrmtD9CZR3w6BwYhbmRLfObBh3Gtz5goBOy4_rWSqfQ,39406
|
|
@@ -25,8 +25,8 @@ angr/sim_variable.py,sha256=oN0EIj8Y7vpdZgX0Hp8OMix40EvAvFBmNSH2KkgtAPM,16404
|
|
|
25
25
|
angr/slicer.py,sha256=74ujgNMKcEIHM8lqal69Cbls07yCxpxvi-jUYeScfaU,10668
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
27
27
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
28
|
-
angr/vaults.py,sha256=
|
|
29
|
-
angr/analyses/__init__.py,sha256=
|
|
28
|
+
angr/vaults.py,sha256=v_RBKEGN2wkyOoskC_akKSlawcRtMicukKh1O1hxrJk,9719
|
|
29
|
+
angr/analyses/__init__.py,sha256=H8PBIRQoIY3RPRYSdYMA21WGy0Hlka6uoVLsRwFoCLs,3326
|
|
30
30
|
angr/analyses/analysis.py,sha256=ggR1xFe0HSpLhkqiJtmzm8qmS5H-7xZDwhYf4IyBNf8,14551
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=pLMeo7Y2niifNmtfIzMbQDlRy_w5GbKi1sYa0XVhPBA,27228
|
|
32
32
|
angr/analyses/binary_optimizer.py,sha256=JqKfOXx5FiWsYdQ6JMWYivfB2AiNl2Pw8Utk8kPEVrk,26186
|
|
@@ -37,6 +37,7 @@ angr/analyses/calling_convention.py,sha256=rXBOiLcS4QLt58dKAHPGTFCX9wrx7t998rI4E
|
|
|
37
37
|
angr/analyses/cdg.py,sha256=oPgHV4MVpGkfRUE0ZiaghBSkgTsr6tkG1IK4f_GtOBA,6230
|
|
38
38
|
angr/analyses/class_identifier.py,sha256=bytFQ0c7KuQhbYPPJDkhtV0ZU_Xo8_9KLZxHe9TtyMs,3010
|
|
39
39
|
angr/analyses/code_tagging.py,sha256=Gj7Ms24RnmhC9OD57gw7R6_c-pLfqSug-LVUMw_JmXE,3510
|
|
40
|
+
angr/analyses/codecave.py,sha256=k_dDhMN4wcq2bs5VrwpOv96OowQ7AbZSs6j5Z6YbIpk,2209
|
|
40
41
|
angr/analyses/complete_calling_conventions.py,sha256=rwsVfq0TUOx-YW2RtbeXajAreBEfs9QDyQAE51PnEfo,18279
|
|
41
42
|
angr/analyses/congruency_check.py,sha256=SRlUKJaylCQydWsb4AGG8LUGuh5RwI8ksKZL6jf-4P8,16166
|
|
42
43
|
angr/analyses/datagraph_meta.py,sha256=PnxBQSFDAeZHfUnAaAJO2s89oSBn1AM5e_0ljMURMRM,3418
|
|
@@ -49,10 +50,13 @@ angr/analyses/flirt.py,sha256=cly_6Xodsgmf5gEagYBH5HXdjhKaY2HwyUW7porEzU8,7798
|
|
|
49
50
|
angr/analyses/init_finder.py,sha256=HC9bGZA4VxbafTMbofSWgJW7ZFPXJzZUu0pU0n9XQvQ,8531
|
|
50
51
|
angr/analyses/loop_analysis.py,sha256=ssrXeNsMNNwjARKy5VF34ymUfCvqCNYGLp_m-5zvAyU,9311
|
|
51
52
|
angr/analyses/loopfinder.py,sha256=C9Vo-Lv4a0SL7xbfzlWt9nFbv6tOjaEHgY1cW3M2Nyg,7035
|
|
53
|
+
angr/analyses/patchfinder.py,sha256=i0TJmBwNlFKJYpG04YpU6yFBdZlNAuzj3VwM28jfnW0,5045
|
|
54
|
+
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
52
55
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
53
56
|
angr/analyses/reassembler.py,sha256=y41XIGWqCVvwFlE3uACEMFLR-vByKkOazC405UPCOpM,98524
|
|
54
57
|
angr/analyses/s_liveness.py,sha256=YI-N62--Wo8B4yB5lvUi4mFBNqxwRxYq-p3zXR4qFNs,5213
|
|
55
|
-
angr/analyses/s_propagator.py,sha256=
|
|
58
|
+
angr/analyses/s_propagator.py,sha256=vmOnkwrBQTvh3WJbAXY7R4imAW_AKzYoeRM311oXVsA,11311
|
|
59
|
+
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
56
60
|
angr/analyses/soot_class_hierarchy.py,sha256=AtvXMAlz6CVvfbtkPY4ghouH_1mNnPg9s9jFhZwWvEw,8741
|
|
57
61
|
angr/analyses/stack_pointer_tracker.py,sha256=5NZf4muUFIJX-F605n5LMw8ihA648-FA4Bm5mAcsHBE,31379
|
|
58
62
|
angr/analyses/static_hooker.py,sha256=lSVOZWiLl3fArz41fEbPMPvdsmlo40BeOeaVmeDxFow,1765
|
|
@@ -77,8 +81,8 @@ angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=AIA6YeWlzBAOwhd
|
|
|
77
81
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=xD-iVlOmYljEwubiff5tNPvdEl7aQhzMQWWjA7l2C_s,5277
|
|
78
82
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=v555keK0pfM451YzWbIC0pMG1pQu1wCme1moWaMPqGo,1541
|
|
79
83
|
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=PjBF1a_tnaj1_vTQJgUd-ALM_oCX9mpBrfQBIOaJ6nk,101797
|
|
80
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=
|
|
81
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=
|
|
84
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
85
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
82
86
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=ppqn5vYGOD8HknweabD7NWgZmoBgjkOC6m9t-XD46T0,992
|
|
83
87
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
84
88
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=ddM_NmkLJNiU8fo-gxaA-iyrNX4CLoRYEtgjeuQbj_Q,2921
|
|
@@ -92,32 +96,32 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=QN_m2yDyOWnRHg1l4n6dKD
|
|
|
92
96
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
93
97
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
94
98
|
angr/analyses/decompiler/__init__.py,sha256=JAHy5toHIzNxlRnht8geYexKueYhhCGHs7GM4E11AN4,1162
|
|
95
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
99
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=F47aJt_0BIowrmT4CDhJ0uarnbvb-WUxnn_nOQYhRN8,71814
|
|
96
100
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
97
101
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
98
102
|
angr/analyses/decompiler/block_similarity.py,sha256=ISMoOm-TGJ_1wD2i_4m8IYTletgnP66gReQESJnfvS0,6873
|
|
99
103
|
angr/analyses/decompiler/block_simplifier.py,sha256=_WYyfFW8bJ_-RkrudJIlDdHh9fc6_aHkuwzW9gylY-k,13922
|
|
100
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
101
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
102
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
103
|
-
angr/analyses/decompiler/decompilation_cache.py,sha256=
|
|
104
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=BcXjx58pC5GyveGdyLIICMhC9pzG4uKcVak5OkR_iIU,18491
|
|
105
|
+
angr/analyses/decompiler/clinic.py,sha256=kfZL_GYcvR4elDWUonriepfbvSQtVq40xAWNF-03yOs,105984
|
|
106
|
+
angr/analyses/decompiler/condition_processor.py,sha256=mBJrBnCP3Y3JkJXzihaJwGgelbWmLl561FjD49yevVU,51155
|
|
107
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=dnlY0w4-ViAFz_M1qCjXbGNOLiMlDG8hJW6z2x-VKEs,1230
|
|
104
108
|
angr/analyses/decompiler/decompilation_options.py,sha256=QWUGnfQ0FUekGs_I6X-ZKvAvL39VX2hFRcZrlXd72fY,7957
|
|
105
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
109
|
+
angr/analyses/decompiler/decompiler.py,sha256=8lt7IzmR53aBiPl_C0B-dvhaeGQXTSppDF4pXuG-Vms,26713
|
|
106
110
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
107
|
-
angr/analyses/decompiler/expression_narrower.py,sha256=
|
|
111
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=TvkqtgNI9aDsquqyNFH5kXLW04rP_J940GFhrGopxP4,10343
|
|
108
112
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
109
113
|
angr/analyses/decompiler/graph_region.py,sha256=PqXOqxOtk8haGNB7zlPzvXgkE0JdeGCIpLIUSeKswo8,16661
|
|
110
114
|
angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1LGX31o3_Cz1Z5wRyMIl8,1173
|
|
111
115
|
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
112
116
|
angr/analyses/decompiler/redundant_label_remover.py,sha256=J9hpP3C_P08v84FjVU0q5Rmj5M1N9q3HKWSWsA2u7Yg,5879
|
|
113
|
-
angr/analyses/decompiler/region_identifier.py,sha256=
|
|
117
|
+
angr/analyses/decompiler/region_identifier.py,sha256=FUynH4k09y5NiTdor8PLiPFviDcdWpzwz0xa9fRocJs,47293
|
|
114
118
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
115
119
|
angr/analyses/decompiler/return_maker.py,sha256=mCJdEcnU8P5sld5B-b5e2YLilct98gJa7VWAMXT2wIY,2502
|
|
116
120
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
117
121
|
angr/analyses/decompiler/sequence_walker.py,sha256=ODDPnChZ3Li0JyIXDR41JW9zvCsfPF5JvGYDL52wAYI,9375
|
|
118
122
|
angr/analyses/decompiler/utils.py,sha256=ldej1mpMKsWYgENa5qG4VTeoCrID-9JudTaaFLTQEco,30456
|
|
119
123
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=pTCBcuro4f8bnK7N6D48Y7Dh-2QwyzgVY33LlUBHcZE,137
|
|
120
|
-
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=
|
|
124
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=5yFpxu2U9ySRGx0F5NOOgHKpYlZ57Bswe-uIOTc-du4,23422
|
|
121
125
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=8UyvC5BfQmYWJ_WPn7Vrt3c6YlEr0PdSzd8sPOvwlds,496
|
|
122
126
|
angr/analyses/decompiler/counters/__init__.py,sha256=IkNt9hIc8UMTxv72r0NNUiXYSLWROWQyxe7Vn0UNiGE,480
|
|
123
127
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
@@ -128,10 +132,10 @@ angr/analyses/decompiler/dephication/__init__.py,sha256=0Ufg3SSL7VkKBn-sfMZg2XRA
|
|
|
128
132
|
angr/analyses/decompiler/dephication/dephication_base.py,sha256=UToP1wF9814qxzJpQcqGljYlOkYA7mwvLveGn41089o,3132
|
|
129
133
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
130
134
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=R0rlwYL0Cnt1UPjdEJZG4kEvruKPr8I1hfhTMTZnBxA,3405
|
|
131
|
-
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=
|
|
132
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
135
|
+
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=KeZ6VIQAB-Jy4bGUychFCKyinK3rKwy8E9_25ImlKhQ,13724
|
|
136
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=3KUIxwUmfTZj2Jm1mB98J5vMkHqy4LLPYTrLzZfLbBA,10442
|
|
133
137
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=q29kS8lOs_-mxgJMtQvoZdw6l3q2lUDeXcTcGienIrY,4343
|
|
134
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
138
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=ZKaTvPqNAL6ratVB1V_rz6NRczCLaknZDd9rzRzPzpg,4271
|
|
135
139
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
136
140
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
137
141
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
@@ -139,26 +143,27 @@ angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=ApFU3WFWd2em
|
|
|
139
143
|
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=D0M5-RosTsHQC4cnPmsByhC-szOpykLN-XCuJ06GAos,13117
|
|
140
144
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
141
145
|
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=xa8I8GqGybGqQY_5bljBYb69Nke0r1q3Rt9rAs38aIQ,2365
|
|
142
|
-
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=
|
|
146
|
+
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=Cju0NE3fo_ZC65M3Jl_Y67uK9I8XWEjOFuJonAd1jRM,17458
|
|
143
147
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=Wxx1vNKJ6uX8vgQXf6iXbb0wpj4r1g50G8vO0PdD4lg,11168
|
|
144
148
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
145
149
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=ULonaiVMx2g7bflZrfoEgjrW7yQJDsfdieTdV7kfGug,4031
|
|
146
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
150
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=9ZLqWNZyZsNkYFJlZgHIh8cBbt0lBFGdjMcStAlSrVE,19390
|
|
147
151
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
148
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=zTplo_VsSfY6WR_F4SIwHFvAySUo3USDntnniD23i-A,13201
|
|
149
153
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=1Yto_EBmmB5FkwZzaAO7S0MEvbQNEknFbbq-nUU0Eao,38818
|
|
150
154
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=papR480h-t_wEWMEdu6UTmc33lPSy_MOmiMgidPGnxc,3115
|
|
151
155
|
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=sIp2YISvafpyFzn8sgGMfohJsARiS3JFX_Y3IUXD_vo,10119
|
|
152
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
156
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=Ot9iYGqHK_5TZM8cU8IUaUazDH8LJjf1EcG4Av0Udv8,21382
|
|
153
157
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=tc4FruEl0sFpm1DUu9g8gWlueRm0t9rhfHsdUrVplBo,7932
|
|
154
158
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
155
159
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
157
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=
|
|
158
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256
|
|
160
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=7QO_sJBR8WgjRxD8PXwxu0NeoCQchNJNClcwMzEmOsU,24921
|
|
161
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=ICDYwQJt5E2OVasdqn42jzbjwUXhSj6Plh3Y1iUHpAQ,2178
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
159
163
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=cEbZ5jyYbRiBJSzVJbnqssUY5MzirXXgzvzpxllY_Zk,14343
|
|
160
|
-
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=
|
|
161
|
-
angr/analyses/decompiler/optimization_passes/
|
|
164
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=pxb0jyDQ5BXkjzzo4JiHEA1NZeKVmp0G5Pd-T5_UIa8,4758
|
|
165
|
+
angr/analyses/decompiler/optimization_passes/tag_slicer.py,sha256=8_gmoeYgDD1Hb8Rpqcb-01_B4897peDF-J6KA5PjQT8,1176
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=cpbsP6_ilZDu2M_jX8TEnwVrsQXljHEjSMw25HyK6PM,12806
|
|
162
167
|
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=6NxaX2oT6BMkevb8xt9vlS3Jl-CmSK59F0FVab68B48,3088
|
|
163
168
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
164
169
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=nLu-s4wn6b3z6MlItwCH1kWpeAc4C-fP3MNN3WRCSuo,21666
|
|
@@ -183,8 +188,8 @@ angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=UTkF5sYZcC45tXt9
|
|
|
183
188
|
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=4ERanmpCQq06B6RE-AO_-jgPloyP9Jg5wcUja9iA_gI,2652
|
|
184
189
|
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=xZ129l0U5hoPXtczxZFUfZL59V7d0u2amQTO4phIpQU,1409
|
|
185
190
|
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=h3m9FIxsMpElPE3ecFfa0vnzuxwG5oJLNEqvLuMpMgI,1062
|
|
186
|
-
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=
|
|
187
|
-
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=
|
|
191
|
+
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KTxUUlK74T1bcuufBRgexhDA8M_TAG_2Nqi7e2lZJg,7469
|
|
192
|
+
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=5ThmIgu38Un_N5AltnQtcTnoEnOT45HRu6NehB3rG5M,1713
|
|
188
193
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
189
194
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
190
195
|
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=T2dA5fhkNj-Y4NSVwz4N54jyVolMK6X963eESKqX0Ow,10594
|
|
@@ -194,7 +199,7 @@ angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,
|
|
|
194
199
|
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=Ji4AtQnbBjIXKc3jwlF-eYMYdWZ6gvffUBfUGVlte04,6777
|
|
195
200
|
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=xmfB1dnSvzxFzi2W5qv-ehQdD4u0HS9ECC-WEwoTb68,1985
|
|
196
201
|
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=7R_rVBIbk-tFUYU8LMJI2RCtLJuvUMOhUL1jqE9D4u8,1135
|
|
197
|
-
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=
|
|
202
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=ut3wAJxwWTW4i4uglNEXrONG5PzNUniBGtUUZ9vmWe4,1815
|
|
198
203
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
199
204
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=ex6S-SaoIsHum5gTKFqvdx2f2Q46K_LJV-HSDR33-p4,1026
|
|
200
205
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
@@ -225,27 +230,27 @@ angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=EGHbx4qB7bPyo
|
|
|
225
230
|
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=HKAh1m8WryAR2WMGjmFIvO6DOYymlA7sKRnKfbyJfvk,6100
|
|
226
231
|
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=rLH5csZCB5-cCsWJh2SdvWLVqgGfnfi7YqQlE7M328I,4406
|
|
227
232
|
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
228
|
-
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=
|
|
233
|
+
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=uKieYMvygDt8GhK1b_EjHTP064I1FTEZd6HIEntB0K8,6315
|
|
229
234
|
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=LY7TH54eCZOqKW67b0OVfS_-35rRoHPhazdyB8Ng4vE,600
|
|
230
235
|
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=ByEbrHPAn0fA333QUi08IXRPEEaxymwDeEDK1FWAljE,8316
|
|
231
|
-
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
236
|
+
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=lsTKhU6aljpXPSz-K9qDhgySuB2FsGrF9j7buWqiYr0,24980
|
|
232
237
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
233
238
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
234
|
-
angr/analyses/decompiler/ssailification/rewriting.py,sha256=
|
|
235
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
236
|
-
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=
|
|
237
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
238
|
-
angr/analyses/decompiler/ssailification/traversal.py,sha256=
|
|
239
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
240
|
-
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=
|
|
239
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=Ee4BZSFCjgv4q24ARNzUkbuZIXa6KbiPf_WM0kz3d64,12152
|
|
240
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=Zc5lAgjSlD0hntCk_GBhnMQ0lMI1NEl2IlAlXwenhmc,27003
|
|
241
|
+
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
242
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=bTMTwS4auYQCnY9cNwqbgdYksFym0Iro5e7qRIDmlME,8711
|
|
243
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=Er6XFmgwmpTf6W8vg9vZupO5MDvsE2y4wONYIYYXzAQ,2949
|
|
244
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=YBsWyuXyt_3q1yTnxqVaU6vL2nM3okUb9vkSGdHvJj8,5307
|
|
245
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=_AsCnLiI2HFdM6WrPyAudhc0X4aU_PziznbOgmzpDzQ,1313
|
|
241
246
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=unzkTPhZbpjf5J3GWg1iAFkW17aHFHzuByZCMKE4onQ,633
|
|
242
247
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=9Zfp2d8Oqp6TAgLJyu7v214YDBtdy3Qx8rs801wIsv0,3796
|
|
243
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
248
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=ry6_o-aClSstQXIblbk1Oq-nYBX1ZF02qsKw72o-XQs,138204
|
|
244
249
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
245
250
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=Lf4DKgDs17ohKH8UmCrnJI1BVmPrx2oIb3zXvJ7qc4U,6819
|
|
246
251
|
angr/analyses/decompiler/structuring/__init__.py,sha256=u2SGBezMdqQF_2ixo8wr66vCMedAMY-cSjQyq2m-nR8,711
|
|
247
252
|
angr/analyses/decompiler/structuring/dream.py,sha256=mPNNsNvNb-LoDcoU_HjUejRytIFY_ZyCAbK4tNq_5lM,48254
|
|
248
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
253
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=uJ6V7DMoc7DOH2b_NfnuRPvyKvB31eUIUOmuWmC7Sz4,120632
|
|
249
254
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=HRUpZiD8xlpJjHWL8WHORakuBw_ip7h8K9ichyLX1j8,7075
|
|
250
255
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
251
256
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=ql8HoTn9SG6snNmgEx1xQVeIHAlvdkASQpDwNR04YKw,41547
|
|
@@ -290,7 +295,7 @@ angr/analyses/identifier/functions/strncmp.py,sha256=CXoeiJmlEUSGW48SFkpcJoN3ZeC
|
|
|
290
295
|
angr/analyses/identifier/functions/strncpy.py,sha256=y1w7A9255j91TGKVuJLXj67lADci16EzVqQWzJAkTHo,2046
|
|
291
296
|
angr/analyses/identifier/functions/strtol.py,sha256=e_XbqYSa-s3CjDcPJkSaVnDjnTp2Z3ian67BXMxkrnE,2437
|
|
292
297
|
angr/analyses/propagator/__init__.py,sha256=lxvNUfUJYOPqO8se8Nej_NNCObLt90QFIrZhzgt5a_o,114
|
|
293
|
-
angr/analyses/propagator/engine_ail.py,sha256=
|
|
298
|
+
angr/analyses/propagator/engine_ail.py,sha256=suaYW7MzCsAN3cK_iO-i9iUGFlAbHemBreI_WgNJiCQ,68566
|
|
294
299
|
angr/analyses/propagator/engine_base.py,sha256=Q6AS10TxVTCvMf5nx2XcNuAbbe9F3TNaWYIN_uZWznY,1759
|
|
295
300
|
angr/analyses/propagator/engine_vex.py,sha256=GOO4LL_7-hyLrYlTVh39M91PbgRnscKgFVzJs5KePJ4,12735
|
|
296
301
|
angr/analyses/propagator/outdated_definition_walker.py,sha256=Ru53mz41_cUounWPQyFpBa8eUKQJnbkP_BycyG97fWw,6772
|
|
@@ -302,7 +307,7 @@ angr/analyses/propagator/vex_vars.py,sha256=-wtTnlTfSdqENVjwWi6bvGdf9bYb_n1ccsvg
|
|
|
302
307
|
angr/analyses/reaching_definitions/__init__.py,sha256=2vDM6WG6fTTw0rDO8xKJ457mGRGgqG7alxSemwEutJk,2000
|
|
303
308
|
angr/analyses/reaching_definitions/call_trace.py,sha256=KA9Pk3tC78RGi-86NBlmGEZAmrQBi6QHNHoKHzcUTio,2172
|
|
304
309
|
angr/analyses/reaching_definitions/dep_graph.py,sha256=vPDIDQDKVJR5zBWr-0D9WREpCc0BW0_Pem1kKpIRHDw,15903
|
|
305
|
-
angr/analyses/reaching_definitions/engine_ail.py,sha256=
|
|
310
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=coaXa7oVmaHAqJdsxXDCYQ271hwrLyWgLvgN7aSKtxg,45051
|
|
306
311
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=m_YRPb7wzgHd_YWaMFLDMYUHgPeNow44J1HGG587gaY,43099
|
|
307
312
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
308
313
|
angr/analyses/reaching_definitions/function_handler.py,sha256=-LVRNIDvrFzFEThewfRtfpd0-8vcXL5nOVk-_RX5hiY,28134
|
|
@@ -318,7 +323,7 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qUV
|
|
|
318
323
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
319
324
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
320
325
|
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=XBrKqy6Ky9aHqTiWiaJPMQTM4aZT9aF9OKOtiylybUM,5009
|
|
321
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
326
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=6mTtDtbBt2-C25O5ITv27oyejy5j2FNURSkBiYbMO98,11645
|
|
322
327
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=GSt-yp59h4saWx9DeL4Rp-9SaZ87hnuMD2m1pTdL3iQ,7072
|
|
323
328
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
324
329
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
@@ -331,8 +336,8 @@ angr/analyses/typehoon/typevars.py,sha256=F7CBFVplF_xy1gsUkUXnxEhBVeceXb-VvnYwnt
|
|
|
331
336
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
332
337
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
333
338
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
334
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
335
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
339
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=oOlvhYyU9FkAcWcpRE9G_simBdDMrsCEyZRasr9TzlI,28546
|
|
340
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=PKPz2OOmEYUNKiiXHZIS1LA3jBG03d-TwfdGaHfKu3Q,50374
|
|
336
341
|
angr/analyses/variable_recovery/engine_vex.py,sha256=iC9FB_wYLxJAdTsOQ8QBtIN_SXKnIDrW8eNGZgv-0-Q,18835
|
|
337
342
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=HlH_Hd6z5i3MTBHRoWq1k4tGudz8PewiM76hYv8d3ZQ,4913
|
|
338
343
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=pBXY1fb3jR2pDpLMtOjL8rH_tkjyvatObW12gYb-r1g,21742
|
|
@@ -340,7 +345,7 @@ angr/analyses/variable_recovery/variable_recovery_base.py,sha256=_WX6Qa6HIFUJkZn
|
|
|
340
345
|
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=7MG8qzgnCJlYyqhZLSQfjpq0022T4825PrWWrCKspnQ,25516
|
|
341
346
|
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
342
347
|
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
343
|
-
angr/angrdb/models.py,sha256=
|
|
348
|
+
angr/angrdb/models.py,sha256=_DTDAV6S7bEuNER8qiHrlo27fRgBRcv_HCfH7to1ZxE,4747
|
|
344
349
|
angr/angrdb/serializers/__init__.py,sha256=Gu2B79cp2wwXx4l_S5ITc4QcqyK5YnoG-zEG253JUZY,184
|
|
345
350
|
angr/angrdb/serializers/cfg_model.py,sha256=Uxy1VDKAy_50dMXUykpEsl_zp3ko5ETuKNPRAd3Xsek,1314
|
|
346
351
|
angr/angrdb/serializers/comments.py,sha256=oHlwu9weMpFJrVBo19Ud1OB-XtpUPrdH9MWZy7QnQ40,1578
|
|
@@ -381,7 +386,7 @@ angr/engines/syscall.py,sha256=HPAygXTIb8e4_j2DBS4LCCaAz9DNyji5mucfoYck_Dc,2162
|
|
|
381
386
|
angr/engines/unicorn.py,sha256=8ggDUXdEQl1EMiY-Tp4CnyzzMK0zZrkGObLvBwPU9uU,24496
|
|
382
387
|
angr/engines/light/__init__.py,sha256=3arK8vMsnu6TRxa1_sVWBfD7fRDHFL5kBbl9q-ui9Zw,435
|
|
383
388
|
angr/engines/light/data.py,sha256=W4g-RZcLyhqXMiyrQBhNYaf8a3NIemq4iQpbPsl_Cdg,21243
|
|
384
|
-
angr/engines/light/engine.py,sha256=
|
|
389
|
+
angr/engines/light/engine.py,sha256=wJiS2i5TMN4cuHXZbJhJvT3MjcOlhGX8OHI1hEQuBiY,46031
|
|
385
390
|
angr/engines/pcode/__init__.py,sha256=aoEeroPopUOmSplbB9XMz9ke9LXO6jtFMmI_e8X4i28,195
|
|
386
391
|
angr/engines/pcode/behavior.py,sha256=UZHWTPyRnWN28i8I6o6YgnsIa4CaN_yP36fyNu45heg,29406
|
|
387
392
|
angr/engines/pcode/cc.py,sha256=vPT7FA2tmlPUVA2ptHDNVqhAZEuZZaJYajBEIctXH54,3180
|
|
@@ -443,7 +448,7 @@ angr/engines/vex/heavy/__init__.py,sha256=VLvDao7Drp2stJnRfznKM04IFYi7rjfdRWVJ09
|
|
|
443
448
|
angr/engines/vex/heavy/actions.py,sha256=n8LDymfj6qHAd6evzoyZmHkSN8MlVjZHfgREATC-bek,8663
|
|
444
449
|
angr/engines/vex/heavy/concretizers.py,sha256=2xQYLXmugpJWIUjUrMnall2ewX05kTdOYLWjediaf6Q,14433
|
|
445
450
|
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
446
|
-
angr/engines/vex/heavy/heavy.py,sha256
|
|
451
|
+
angr/engines/vex/heavy/heavy.py,sha256=-WAb64Lmd5DFDz3RdKLd--p6ryuAOel1CP1BsP5Gsb4,16145
|
|
447
452
|
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
448
453
|
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
449
454
|
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
@@ -466,7 +471,7 @@ angr/exploration_techniques/memory_watcher.py,sha256=qHkI6xO5VRzumK6eSjPX-BklFKm
|
|
|
466
471
|
angr/exploration_techniques/oppologist.py,sha256=0rpPxGWuXkMN2igZf7KYQxxzK5gC11YpFRAvjAxmbT0,3522
|
|
467
472
|
angr/exploration_techniques/slicecutor.py,sha256=_AtPqupncNHFVspkCeZWtj-wY1Ta67bgmV19PDjNxjE,5164
|
|
468
473
|
angr/exploration_techniques/spiller.py,sha256=_zXSr2EiT3ZrHPLkRXeNtUcfRuXheZuGauz5zQ5qaPU,9413
|
|
469
|
-
angr/exploration_techniques/spiller_db.py,sha256=
|
|
474
|
+
angr/exploration_techniques/spiller_db.py,sha256=ccbjeAtlgD23tMt8gGbJL9r8Tc4aOJi3Rjn6hg70dnY,811
|
|
470
475
|
angr/exploration_techniques/stochastic.py,sha256=ZHVNKLsMXLaVLu00IQkYSCDqp5imXAwuu9CwW4lOuZo,2032
|
|
471
476
|
angr/exploration_techniques/stub_stasher.py,sha256=c27ebdEJsUjz1ZFYs300edcm415ALNbDZHi_q-QCaLU,494
|
|
472
477
|
angr/exploration_techniques/suggestions.py,sha256=hgaCrymRMzKG9J0o4S4ovJmJy2dUu_MnWWpeYg3yIEw,7006
|
|
@@ -479,12 +484,13 @@ angr/exploration_techniques/unique.py,sha256=uA-BynLkUw9V1QJGdVGHDMmH020I5LWH8xd
|
|
|
479
484
|
angr/exploration_techniques/veritesting.py,sha256=XmMuNcvV3lxbAyjtuFdgB8pfGiAtvfGxRPbr1MZrDBc,1388
|
|
480
485
|
angr/flirt/__init__.py,sha256=O6Qo4OKaEkpq1kxluphTNauGjBH2WS5AuX91xlToyzA,4403
|
|
481
486
|
angr/flirt/build_sig.py,sha256=3vQl6gZWWcF2HRgTQzFP6G3st8q2vpPHzRa3GfwkBnY,10036
|
|
482
|
-
angr/knowledge_plugins/__init__.py,sha256=
|
|
487
|
+
angr/knowledge_plugins/__init__.py,sha256=03TMAHhh9o7KyFhyfKBt9FAJJ_02GslLiWQIvhCKpvY,1177
|
|
483
488
|
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
484
489
|
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
485
490
|
angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipYKJgGH9vxLLA,1037
|
|
486
491
|
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
487
492
|
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
493
|
+
angr/knowledge_plugins/decompilation.py,sha256=izceZ5UEhnF7q5EO0D1Hd7_LLKk1QHXfdv4g4kIbFS4,1346
|
|
488
494
|
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
489
495
|
angr/knowledge_plugins/labels.py,sha256=H9_as9RFSKmth-Dxwq-iibXo007ayvS7nFGnYtnN8jE,3146
|
|
490
496
|
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
@@ -498,12 +504,12 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=zP7TwJpTOvJc6HNzPvBSGlDuTji5GHLKhB
|
|
|
498
504
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=CogCSY0Do18qD_bsT_0ucb9a7R0_qlal2HUp_YKWTMA,2074
|
|
499
505
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=V0q4EBxvZ5xa40u0ZYekS3iRx4M6IDuK4j6-3NEeaRg,5097
|
|
500
506
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
501
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
502
|
-
angr/knowledge_plugins/functions/function_manager.py,sha256=
|
|
503
|
-
angr/knowledge_plugins/functions/function_parser.py,sha256=
|
|
504
|
-
angr/knowledge_plugins/functions/soot_function.py,sha256=
|
|
507
|
+
angr/knowledge_plugins/functions/function.py,sha256=2SbWI5xOco5lypTM6c5bp3VmKose9FDO26TGEINM0KE,67400
|
|
508
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=R-VtbkN3-l1-U4Wk4XHC8lGZo7DpXbEDE7Ok986YYYI,19594
|
|
509
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=L0ZB9_GZ0zqj5crD4f9TYTRUMmjqdk7owHmQ8GjIebM,11824
|
|
510
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=kAEzniVHa2FOjb2qlLElXtbbgAeeUkor7iQIFyJuoYY,5005
|
|
505
511
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=fVWRMdY8j2mUWwBKlgcmtnNDGS8WF1UbKjfb6xpeCM8,432
|
|
506
|
-
angr/knowledge_plugins/key_definitions/atoms.py,sha256=
|
|
512
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=0Tzu3YQatyft6PG5K2sGnn38d41fOmrRhXU51TjpoFk,11069
|
|
507
513
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=i-44XCfMyS2pK8AwW2rL0prhtxvsWB64E9pm4eDSUcY,673
|
|
508
514
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=XQaOFmDX3RpR3KpkOZQjo0RvlZ24aB3lZwssv9zAl8o,8574
|
|
509
515
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
@@ -539,7 +545,7 @@ angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1
|
|
|
539
545
|
angr/misc/plugins.py,sha256=1NzhTd0rSY9oPElCeMGMZXLHEclOWVIEgdq0JvxpUMc,9385
|
|
540
546
|
angr/misc/telemetry.py,sha256=a4IQuBfZvwdjQseVBEG_Np05U-8HRM_NOUAMnQ3_DJg,1217
|
|
541
547
|
angr/misc/testing.py,sha256=b3CWR7bv38RP-IjGKKjZmvCLyYvvSNPSdZu5MgniJ50,626
|
|
542
|
-
angr/misc/ux.py,sha256=
|
|
548
|
+
angr/misc/ux.py,sha256=3iU1tDj4_pZZ_FEouoD8S1frjOGjY9w5gF1sqjOqnXY,742
|
|
543
549
|
angr/procedures/__init__.py,sha256=GPf6JNRtnIKHIRR4r_qv2T13VrwlV5EV77fWpusAK2w,263
|
|
544
550
|
angr/procedures/procedure_dict.py,sha256=dx6tkG4zatE7XS63r5yi_3TXG3T_RCD2LvBSDzDdC-I,1906
|
|
545
551
|
angr/procedures/advapi32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -560,7 +566,7 @@ angr/procedures/definitions/linux_kernel.py,sha256=6um0rDrSiglpbic3OPblsfQ7oVn5r
|
|
|
560
566
|
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
561
567
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
562
568
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=lON1hncNDZrblzUM5W7CF5GA2bOQe5jIPSfkEfBhzE0,1829
|
|
563
|
-
angr/procedures/definitions/parse_win32json.py,sha256=
|
|
569
|
+
angr/procedures/definitions/parse_win32json.py,sha256=9Pp_mx4b6aJmBmoe1m8A2J5I8Xc1qsoNvPWhJQ9pq4U,110485
|
|
564
570
|
angr/procedures/definitions/types_win32.py,sha256=Iv1JT_JwzhfUpnxcKMgAwSw_huuwhi_rKkD7NMO8sow,9998099
|
|
565
571
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=dC8j-gGlKujHqmTaVvMhgUjvTPEEJ3oZ2h1MODBK7a8,1450
|
|
566
572
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=ay_JhCAB5sn6mKm_l7wjfi7PTqLdKQmHoDNwgdGl5dA,992
|
|
@@ -1229,7 +1235,7 @@ angr/state_plugins/debug_variables.py,sha256=LR-lsjnn6FVrEr8RCVkhA_gyeeh1jiHC92u
|
|
|
1229
1235
|
angr/state_plugins/filesystem.py,sha256=qkM2zCfcrSBjt-g3RO1VYbjHPNRSdvsNRQR_M47pqFU,15765
|
|
1230
1236
|
angr/state_plugins/gdb.py,sha256=ntTEM8AD6PgwGuQffXyosKDKE1ja_AeO4PEFY_qQZiY,5174
|
|
1231
1237
|
angr/state_plugins/globals.py,sha256=IEqdnwW15T61XEaLxt4tO6AF9527uQYquKz_u5aIpi4,1594
|
|
1232
|
-
angr/state_plugins/history.py,sha256=
|
|
1238
|
+
angr/state_plugins/history.py,sha256=tusyuRcgLPACquxrMi07zZaZLorWqjxCtwC_5NnnajI,19233
|
|
1233
1239
|
angr/state_plugins/inspect.py,sha256=DqP5b59IHVtbPORpCNDG1fYZmgSPLiuUp5gdp5OIfyw,11352
|
|
1234
1240
|
angr/state_plugins/javavm_classloader.py,sha256=QOkvHSVnoiaEKX6HK520viBemFpxXBcaXeC_csLSmhY,5589
|
|
1235
1241
|
angr/state_plugins/jni_references.py,sha256=d8ZYjBbB56kQMBrftXvSQKCD_8P-4oZgxTxHR5Yq7Pg,3439
|
|
@@ -1259,63 +1265,63 @@ angr/state_plugins/heap/heap_ptmalloc.py,sha256=isriAHefkPwdqdkVWLzTivNYsibvhEXv
|
|
|
1259
1265
|
angr/state_plugins/heap/utils.py,sha256=GnVCryZeTWiFvYYq1xTOd59A46wvqMygSRS5z6wUuwM,830
|
|
1260
1266
|
angr/storage/__init__.py,sha256=VxLrsF_UhChqNiwnUAyTa7bstc7yd1uYnHzt54m5qUk,294
|
|
1261
1267
|
angr/storage/file.py,sha256=6gNxcp6b9XOVTa9iNi1JQwYZr3M4K9Xwa6HQKNlFPxU,48092
|
|
1262
|
-
angr/storage/memory_object.py,sha256=
|
|
1268
|
+
angr/storage/memory_object.py,sha256=1uL3r5Nw4Lni1s9D29s4mv3KSbqzqsnp2SuOjjonngE,6242
|
|
1263
1269
|
angr/storage/memory_mixins/__init__.py,sha256=f3zMGSnjtE4QpI8lDvYOv4e82-fHUa4LQh83ubmrnQI,8597
|
|
1264
1270
|
angr/storage/memory_mixins/__init__.pyi,sha256=937j60XMozvVAkjhMS7eORFTRnze8KDbRUo2gWiVt6c,1865
|
|
1265
|
-
angr/storage/memory_mixins/actions_mixin.py,sha256=
|
|
1266
|
-
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=
|
|
1267
|
-
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=
|
|
1268
|
-
angr/storage/memory_mixins/clouseau_mixin.py,sha256=
|
|
1269
|
-
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=
|
|
1271
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=L9FlA0oyQ3gvEENfs5nvHhCYBeuKeyk_TyBh5sgiF64,3493
|
|
1272
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=XtX-JgLtmV-_G4Mn8RBD6J1VH1qmSTcEsk-cbjz2l_Y,16553
|
|
1273
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=_uTB8-nu3mm789Y_dmiBgouKcOaW37iptKXASD455og,2888
|
|
1274
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=uEP0dh_s3kwzwnAY7Rf_lqj8hmFfnguuzz_ghr9EEkw,5581
|
|
1275
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=OekCAvHcwnzUbRN5OTzlWL-H_x0gaFr-iB6xUdjDeVc,1025
|
|
1270
1276
|
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=gLmp7bPvXRLGWFEHWuyAHQ1BdI5K9-47JhgdYyX2978,10290
|
|
1271
|
-
angr/storage/memory_mixins/default_filler_mixin.py,sha256=
|
|
1277
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=wbpMjzzchmLVyBByb0mDAu8WEyEWxwgP0hyi7sUoURQ,6014
|
|
1272
1278
|
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=qAS2QKTimhZMZ-m9QSMi9DgFQeNMmISj7S8VS-3m9hI,391
|
|
1273
1279
|
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBitcIPv-RBpcPhvFk718,3678
|
|
1274
1280
|
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=o5dat1GN646v_icb5ToeTFk8_ruywtj_QPfpdVrdDO4,15464
|
|
1275
1281
|
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=tqjpvMaGyXeKIPTO669qMhKgFwQac2h53AvpRASi3fM,1195
|
|
1276
1282
|
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
1277
|
-
angr/storage/memory_mixins/memory_mixin.py,sha256=
|
|
1283
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=ccvxbjLMO98C-PPlRCtTKDrB53eWtq2VAkhSkcADOiM,6474
|
|
1278
1284
|
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
1279
1285
|
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=xlpK_Dwhxey1_ipyutUzywdUUS2M0YbUXsjEjH93rsQ,3399
|
|
1280
|
-
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=
|
|
1281
|
-
angr/storage/memory_mixins/simplification_mixin.py,sha256=
|
|
1282
|
-
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=
|
|
1283
|
-
angr/storage/memory_mixins/slotted_memory.py,sha256=
|
|
1284
|
-
angr/storage/memory_mixins/smart_find_mixin.py,sha256=
|
|
1286
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=isJ3_vuElWtLTW7MxweHs5WJOuawr1LmLlS7-yakWd4,2576
|
|
1287
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=ajjiQ4ulbVQ1WgygR7WuM7vrOzsFGa4D-11R7ipmr1c,594
|
|
1288
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=7LwcgsuJpwPlQ8LzX5q0bZj2PTkLs_cngrd3lDiHd2s,5728
|
|
1289
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=ualfyGbaBqb0hjfde_YomZYT-6U_und_wj7KV_z8wKY,4966
|
|
1290
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=bYGZCtd9OOJqs5fbBUSQgBjVgLQokT7BBT4PYpZc1eo,5725
|
|
1285
1291
|
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=3YirCfFTWcdYwmfM0X5yJMiJ2s80a75Ha43WNnhTwnA,501
|
|
1286
1292
|
angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhwwf4tmI4mWlxS0zVYBM,721
|
|
1287
|
-
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=
|
|
1288
|
-
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=
|
|
1293
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=ipMIH7Te1F4yXpXtvpOhSN_0hfYcesm3MQ63d-WKuFY,2641
|
|
1294
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=SDSVg1w9xQVGktBBh8_e9UZqEnz2-Qadd--ePBDqsvE,1112
|
|
1289
1295
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1290
|
-
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=
|
|
1291
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1296
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=JXGbywe5hLJF74yokUTyQo92fwPZ3ayvyLIqqFPSFxY,10550
|
|
1297
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=JF17l3VGCCRI79khjZpbguGsWasQt32SZu7Xj8wm6HQ,29487
|
|
1292
1298
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1293
|
-
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=
|
|
1299
|
+
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=1j2xIfr9n0JztbsY0w9PfDr-N0HUVAb1m8Y-Sv2hdDM,1579
|
|
1294
1300
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
1295
1301
|
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=J_9a9OmfklxLGRrzkuYc3_gTfFnsFru9IQMfYTYNdbA,1744
|
|
1296
|
-
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=
|
|
1302
|
+
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=1-gi9LooOPxYGzwPuLwzRcPANLSg5Ad-eB5YV1DsoyY,13242
|
|
1297
1303
|
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=PZnWHtzOWeekHQ--JgGXPn5AGDqYS40LvpkwP9I-w7A,3037
|
|
1298
|
-
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=
|
|
1304
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
1299
1305
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=uqxaCFMqo0XlMQGN-iqUYm_IqMTOXOnnp_vCtWL4Yug,14413
|
|
1300
|
-
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=
|
|
1301
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=
|
|
1302
|
-
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=
|
|
1306
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=a6M-lgeAgYUQkebLrJsK2y_Z5bckP5qNADf3Z5c1GBk,13018
|
|
1307
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=eBgOZR4g4J0xmAMPjGABmiymhSRk_lvTTczN_kbSa1o,16939
|
|
1308
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
1303
1309
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
1304
|
-
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=
|
|
1310
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=dy7K6QdYFKkAKcBLd24rB3K-eL8frPvIggyO3q7Mi38,20369
|
|
1305
1311
|
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=IDqg70J_-ueYoIdZAEa6DAsXEC1Sy7VKuT-eC8lgi-8,577
|
|
1306
1312
|
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
1307
1313
|
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=5Vvgi3aiqxidClEfOoa1qTyHcMuyv3tnrKaPdeoXjCE,857
|
|
1308
1314
|
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=wcvhmzDyuPqmHYFkawr-no6J8d9t1Rhlz1Iu27ae3-E,201
|
|
1309
1315
|
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=4dvk4OVqudKV6DcIh7Z0O3J7HUSvMNhn53Ghi7g6Nf8,9177
|
|
1310
|
-
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=
|
|
1316
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=zk_nLTyXbFvlCRnqxr1rAs_WbCmv1wTE2W8M2ZerPcs,7834
|
|
1311
1317
|
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=Sa_UmOMho3_6P4WG_c989zfU8ucO4oNgnfLAnKEOuU4,4946
|
|
1312
|
-
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=
|
|
1313
|
-
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=
|
|
1318
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=D1iSkeTPMdduLBNo7A9FNjeyeL9tIO0aY_yiWddHyvI,17820
|
|
1319
|
+
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=tWyiNrMxmGv-OSSkJq1ZvGUiZg2JUIeETcYa_EULIcs,2173
|
|
1314
1320
|
angr/utils/__init__.py,sha256=knkVHIwNqvlu-QgvPorAscSpyPWogzfZwP5OnYmLbmk,1159
|
|
1315
1321
|
angr/utils/ail.py,sha256=8_FloZ6cP89D2Nfc_2wCPcuVv7ny-aP-OKS3syCSMLk,1054
|
|
1316
1322
|
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1317
|
-
angr/utils/bits.py,sha256
|
|
1318
|
-
angr/utils/constants.py,sha256=
|
|
1323
|
+
angr/utils/bits.py,sha256=ut-9JR2Ks3fiC9aGae_UfYZBKHCADuhPHmPwPYPDwwg,357
|
|
1324
|
+
angr/utils/constants.py,sha256=ZnK6Ed-1U_8yaw-7ZaCLSM0-z7bSuKPg715bBrquxKE,257
|
|
1319
1325
|
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1320
1326
|
angr/utils/dynamic_dictlist.py,sha256=n-HlT1H8yk4KowLTJ6II5ioJr5qn66DW3t4hhesx1Vs,3048
|
|
1321
1327
|
angr/utils/endness.py,sha256=wBcek3rwRQCYdMVFOV5h5q16Ahgjn2x_zZdPeZQEui0,501
|
|
@@ -1323,20 +1329,21 @@ angr/utils/enums_conv.py,sha256=dQqZwspTq8tR5auBEnbpigk9CLkYqduAFgfBsOXqPms,2129
|
|
|
1323
1329
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1324
1330
|
angr/utils/formatting.py,sha256=6szFjm3RtlD3G_csDmRgEB8JFNGC3GfZC8YdGYa1ZHg,4242
|
|
1325
1331
|
angr/utils/funcid.py,sha256=dSGbKUWpTzy48374lJqHyRefJ6K7B7jRVhYHmpGmD3I,5256
|
|
1326
|
-
angr/utils/graph.py,sha256=
|
|
1332
|
+
angr/utils/graph.py,sha256=Sjm1rV1OWInzHVGcyecerNhHRn3eqqQhEjcEhrFLK8M,30489
|
|
1327
1333
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1328
1334
|
angr/utils/library.py,sha256=29153tRKqamfxwpmG4bOpv5hMenX94MNxZ0lqmV8Sqo,7140
|
|
1329
1335
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
1330
1336
|
angr/utils/mp.py,sha256=y6Q0nDOykRZvcQ805DZpcJHQTGN-gqFi0eERGNhb3C0,1903
|
|
1331
1337
|
angr/utils/orderedset.py,sha256=K5PKeDqy4xUeq47k7SdZ7E3K9M1AMXJ9-veTOo5DQIE,1978
|
|
1332
1338
|
angr/utils/segment_list.py,sha256=ayUMIeaFp61AhTuxsf_go4XoXRqGi8cxTeP0OyuhEk4,20369
|
|
1339
|
+
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1333
1340
|
angr/utils/timing.py,sha256=ELuRPzdRSHzOATgtAzTFByMlVr021ypMrsvtpopreLg,1481
|
|
1334
1341
|
angr/utils/ssa/__init__.py,sha256=Z7yXY0xe4X-T4bfdK0YtL9ZFnYF-JhQuJ16ZW-wpSZI,7886
|
|
1335
1342
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1336
1343
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1337
|
-
angr-9.2.
|
|
1338
|
-
angr-9.2.
|
|
1339
|
-
angr-9.2.
|
|
1340
|
-
angr-9.2.
|
|
1341
|
-
angr-9.2.
|
|
1342
|
-
angr-9.2.
|
|
1344
|
+
angr-9.2.125.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1345
|
+
angr-9.2.125.dist-info/METADATA,sha256=pCK4HHhK_lykw4HyvQgNg7ZbjPYJ9gk0r9b5fHe-9vo,4762
|
|
1346
|
+
angr-9.2.125.dist-info/WHEEL,sha256=y1GJ_VupNstuhRFAPvC_BhjKroEPf9HGDivUNmV_9Ls,109
|
|
1347
|
+
angr-9.2.125.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1348
|
+
angr-9.2.125.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1349
|
+
angr-9.2.125.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|