angr 9.2.152__py3-none-win_amd64.whl → 9.2.154__py3-none-win_amd64.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.

Files changed (32) hide show
  1. angr/__init__.py +1 -1
  2. angr/analyses/analysis.py +3 -3
  3. angr/analyses/calling_convention/fact_collector.py +8 -14
  4. angr/analyses/cfg/cfg_base.py +1 -1
  5. angr/analyses/cfg/cfg_fast.py +40 -1
  6. angr/analyses/decompiler/ail_simplifier.py +0 -1
  7. angr/analyses/decompiler/callsite_maker.py +17 -17
  8. angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py +210 -1
  9. angr/analyses/decompiler/clinic.py +51 -13
  10. angr/analyses/decompiler/decompilation_cache.py +1 -1
  11. angr/analyses/decompiler/region_identifier.py +171 -119
  12. angr/analyses/decompiler/ssailification/ssailification.py +1 -1
  13. angr/analyses/decompiler/structured_codegen/c.py +15 -15
  14. angr/analyses/decompiler/structuring/phoenix.py +28 -0
  15. angr/analyses/decompiler/structuring/structurer_nodes.py +11 -0
  16. angr/analyses/reaching_definitions/function_handler.py +13 -19
  17. angr/analyses/smc.py +3 -1
  18. angr/analyses/stack_pointer_tracker.py +7 -1
  19. angr/analyses/typehoon/simple_solver.py +143 -81
  20. angr/analyses/typehoon/typehoon.py +2 -1
  21. angr/analyses/variable_recovery/engine_ail.py +14 -25
  22. angr/analyses/variable_recovery/engine_base.py +1 -1
  23. angr/knowledge_plugins/functions/function.py +10 -4
  24. angr/lib/angr_native.dll +0 -0
  25. angr/sim_type.py +11 -70
  26. angr/utils/types.py +93 -1
  27. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/METADATA +6 -6
  28. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/RECORD +32 -32
  29. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/WHEEL +1 -1
  30. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/entry_points.txt +0 -0
  31. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/licenses/LICENSE +0 -0
  32. {angr-9.2.152.dist-info → angr-9.2.154.dist-info}/top_level.txt +0 -0
angr/utils/types.py CHANGED
@@ -1,6 +1,23 @@
1
1
  from __future__ import annotations
2
+ from typing import TYPE_CHECKING
3
+ from collections import OrderedDict
2
4
 
3
- from angr.sim_type import TypeRef, SimType, SimTypePointer, SimTypeArray, SimTypeFixedSizeArray
5
+ from angr.sim_type import (
6
+ TypeRef,
7
+ SimType,
8
+ SimTypePointer,
9
+ SimTypeArray,
10
+ SimTypeFixedSizeArray,
11
+ SimTypeRef,
12
+ SimStruct,
13
+ SimUnion,
14
+ SimTypeFunction,
15
+ )
16
+ from angr.errors import AngrMissingTypeError
17
+ from angr import SIM_TYPE_COLLECTIONS, SIM_LIBRARIES
18
+
19
+ if TYPE_CHECKING:
20
+ from angr.procedures.definitions import SimTypeCollection
4
21
 
5
22
 
6
23
  def unpack_typeref(ty):
@@ -57,3 +74,78 @@ def squash_array_reference(ty):
57
74
  if array_of:
58
75
  return SimTypePointer(array_of)
59
76
  return ty
77
+
78
+
79
+ def dereference_simtype(
80
+ t: SimType, type_collections: list[SimTypeCollection], memo: dict[str, SimType] | None = None
81
+ ) -> SimType:
82
+ if memo is None:
83
+ memo = {}
84
+
85
+ if isinstance(t, SimTypeRef):
86
+ real_type = None
87
+
88
+ if t.name in memo:
89
+ return memo[t.name]
90
+
91
+ if type_collections and t.name is not None:
92
+ for tc in type_collections:
93
+ try:
94
+ real_type = tc.get(t.name)
95
+ break
96
+ except AngrMissingTypeError:
97
+ continue
98
+ if real_type is None:
99
+ raise AngrMissingTypeError(f"Missing type {t.name}")
100
+ return dereference_simtype(real_type, type_collections, memo=memo)
101
+
102
+ # the following code prepares a real_type SimType object that will be returned at the end of this method
103
+ if isinstance(t, SimStruct):
104
+ if t.name in memo:
105
+ return memo[t.name]
106
+
107
+ real_type = t.copy()
108
+ if not t.anonymous:
109
+ memo[t.name] = real_type
110
+ fields = OrderedDict((k, dereference_simtype(v, type_collections, memo=memo)) for k, v in t.fields.items())
111
+ real_type.fields = fields
112
+ elif isinstance(t, SimTypePointer):
113
+ real_pts_to = dereference_simtype(t.pts_to, type_collections, memo=memo)
114
+ real_type = t.copy()
115
+ real_type.pts_to = real_pts_to
116
+ elif isinstance(t, SimTypeArray):
117
+ real_elem_type = dereference_simtype(t.elem_type, type_collections, memo=memo)
118
+ real_type = t.copy()
119
+ real_type.elem_type = real_elem_type
120
+ elif isinstance(t, SimUnion):
121
+ real_members = {k: dereference_simtype(v, type_collections, memo=memo) for k, v in t.members.items()}
122
+ real_type = t.copy()
123
+ real_type.members = real_members
124
+ elif isinstance(t, SimTypeFunction):
125
+ real_args = [dereference_simtype(arg, type_collections, memo=memo) for arg in t.args]
126
+ real_return_type = (
127
+ dereference_simtype(t.returnty, type_collections, memo=memo) if t.returnty is not None else None
128
+ )
129
+ real_type = t.copy()
130
+ real_type.args = tuple(real_args)
131
+ real_type.returnty = real_return_type
132
+ else:
133
+ return t
134
+
135
+ if t._arch is not None:
136
+ real_type = real_type.with_arch(t._arch)
137
+ return real_type
138
+
139
+
140
+ def dereference_simtype_by_lib(t: SimType, libname: str) -> SimType:
141
+ if libname not in SIM_LIBRARIES:
142
+ return t
143
+
144
+ type_collections = []
145
+ for prototype_lib in SIM_LIBRARIES[libname]:
146
+ if prototype_lib.type_collection_names:
147
+ for typelib_name in prototype_lib.type_collection_names:
148
+ type_collections.append(SIM_TYPE_COLLECTIONS[typelib_name])
149
+ if type_collections:
150
+ return dereference_simtype(t, type_collections)
151
+ return t
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: angr
3
- Version: 9.2.152
3
+ Version: 9.2.154
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
  License: BSD-2-Clause
6
6
  Project-URL: Homepage, https://angr.io/
@@ -17,13 +17,13 @@ Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
18
  Requires-Dist: cxxheaderparser
19
19
  Requires-Dist: GitPython
20
- Requires-Dist: ailment==9.2.152
21
- Requires-Dist: archinfo==9.2.152
20
+ Requires-Dist: ailment==9.2.154
21
+ Requires-Dist: archinfo==9.2.154
22
22
  Requires-Dist: cachetools
23
23
  Requires-Dist: capstone==5.0.3
24
24
  Requires-Dist: cffi>=1.14.0
25
- Requires-Dist: claripy==9.2.152
26
- Requires-Dist: cle==9.2.152
25
+ Requires-Dist: claripy==9.2.154
26
+ Requires-Dist: cle==9.2.154
27
27
  Requires-Dist: mulpyplexer
28
28
  Requires-Dist: networkx!=2.8.1,>=2.0
29
29
  Requires-Dist: protobuf>=5.28.2
@@ -31,7 +31,7 @@ Requires-Dist: psutil
31
31
  Requires-Dist: pycparser>=2.18
32
32
  Requires-Dist: pydemumble
33
33
  Requires-Dist: pyformlang
34
- Requires-Dist: pyvex==9.2.152
34
+ Requires-Dist: pyvex==9.2.154
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=I7kOb1_OagvgZ0ckx5c3aCv2LU7e2Xm4vSrXEYT4tQE,9153
1
+ angr/__init__.py,sha256=ymy37RpyLK6hJkrMuf00QEHrqD_rpCvaVPjOR0Pvc7w,9153
2
2
  angr/__main__.py,sha256=AK9V6uPZ58UuTKmmiH_Kgn5pG9AvjnmJCPOku69A-WU,4993
3
3
  angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
4
4
  angr/blade.py,sha256=NhesOPloKJC1DQJRv_HBT18X7oNxK16JwAfNz2Lc1o0,15384
@@ -20,14 +20,14 @@ angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
20
20
  angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
21
21
  angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
22
22
  angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
23
- angr/sim_type.py,sha256=Q4fiYpordW0ewqBGh5W25weOwwx-mOIUP85GikQ8iS8,136778
23
+ angr/sim_type.py,sha256=M3Jn3RWYRFnq152pwBFcfPXc9XEyAKqMzkvDgUUG6fU,134454
24
24
  angr/sim_variable.py,sha256=tRQXTCE8GO9V_fjC_umiWOm9rY7JLBjq_zrwKptz20g,16625
25
25
  angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
26
26
  angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
27
27
  angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
28
28
  angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
29
29
  angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
30
- angr/analyses/analysis.py,sha256=GxbQ5MSXcLRXsEWeUA1dnFclmt5yitVRC1NdLjNraIk,14852
30
+ angr/analyses/analysis.py,sha256=vXjgq9LlBhROX-QH-V3Y5DZAM7T5r1Qvv5mXjNF9dtw,14909
31
31
  angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
32
32
  angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
33
33
  angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
@@ -54,9 +54,9 @@ angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3
54
54
  angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
55
55
  angr/analyses/s_liveness.py,sha256=K4soSrcQE9pIn7Yf2Lb3LZEu1ymuQVpWzOqLKunFDGQ,7974
56
56
  angr/analyses/s_propagator.py,sha256=4MUmjo1aozCT-UeN9IMYlxtMjCoTM6hWwYaYTTjwvCQ,24904
57
- angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
57
+ angr/analyses/smc.py,sha256=UyVaTBms0KI9jRUBhbnz1s6ez_K_oRy4qoPsvxwnoQY,5177
58
58
  angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
59
- angr/analyses/stack_pointer_tracker.py,sha256=XcqCwqurI8x-N4mU_yfQWwIQNkj3fTtXYkUvw2PFIzw,37821
59
+ angr/analyses/stack_pointer_tracker.py,sha256=M75GLS_YsnjjKwZ8_AZftG8l27Z45fPYwiid2rksTJM,38151
60
60
  angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
61
61
  angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
62
62
  angr/analyses/vfg.py,sha256=04X_mup9P82bkQIXMju3_DBPPJB1TytA_7RR9uAu3tU,72868
@@ -65,15 +65,15 @@ angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
65
65
  angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
66
66
  angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
67
67
  angr/analyses/calling_convention/calling_convention.py,sha256=4QeL92Ec05cVArhunJc43rCgZD3ScHaasOmCmFfsOpU,46601
68
- angr/analyses/calling_convention/fact_collector.py,sha256=dIQGPHHFDNGgAcx6w4cGmjsdxKEZyu_JFBc8tsk2kWw,28885
68
+ angr/analyses/calling_convention/fact_collector.py,sha256=SCdNm-6qfgj-SRnbtPpzzkZBS0nH0Ik3zPn5wLG6-7Y,28480
69
69
  angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
70
70
  angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
71
71
  angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
72
72
  angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
73
73
  angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
74
- angr/analyses/cfg/cfg_base.py,sha256=o4uG2ob88DdVcDvA9sdjDUo7GPKt9ERXJEgWnKiWDdA,123440
74
+ angr/analyses/cfg/cfg_base.py,sha256=VEsUvo4ySnvMvrphcJjAhCHfh7BX9jmY7KrHc2U_Hgc,123441
75
75
  angr/analyses/cfg/cfg_emulated.py,sha256=wL0ABJMZ8EwKbNjrpE_eqCkZpHDt4y6lmoQOmAIcJMQ,148235
76
- angr/analyses/cfg/cfg_fast.py,sha256=1aQtubXAXkw3tCfxRjUD2BXSlRH1obMbmaDQvs9qrzo,228422
76
+ angr/analyses/cfg/cfg_fast.py,sha256=vhu-6aPdIaltstPhhtWOpJBCR_M-iB6-5NH-Krh7cUo,231031
77
77
  angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
78
78
  angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
79
79
  angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
@@ -101,15 +101,15 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
101
101
  angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
102
102
  angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
103
103
  angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
104
- angr/analyses/decompiler/ail_simplifier.py,sha256=BWMyuu_Y9ZKTtbykOo3xe7A8M3z9twXbc_2DUfNx7qo,79900
104
+ angr/analyses/decompiler/ail_simplifier.py,sha256=x6B5ex0eoZgH80yLmMZbXViZKYZI1NU77cibN30qpfs,79886
105
105
  angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
106
106
  angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
107
107
  angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
108
108
  angr/analyses/decompiler/block_simplifier.py,sha256=Di5UXgBIXp0pa3_ubHY4k9vj927xAFR3oCUZ16Q3WvE,14229
109
- angr/analyses/decompiler/callsite_maker.py,sha256=ZjtLdxDCLS0WPqOik9bCek2LyuAtQNYA4V-yqGLeENo,23032
110
- angr/analyses/decompiler/clinic.py,sha256=GyRoxuRtsQDv6uzvTYJXZ-GYGOFa5etFTa03UzSuvTE,144399
109
+ angr/analyses/decompiler/callsite_maker.py,sha256=UKrRCzts2eIc-6tyWsZdrJ6S925cieal9MAz34jNwTo,23140
110
+ angr/analyses/decompiler/clinic.py,sha256=Qq99SIJJF7SHgO_LIG3JBI_F8bbPTPCbmYuYHFsNZqk,146070
111
111
  angr/analyses/decompiler/condition_processor.py,sha256=61VDwVA1e-oKsv0N8kvh3c5QOdQixrkBZcm3RLuw7KU,52679
112
- angr/analyses/decompiler/decompilation_cache.py,sha256=oNkeyrEXhyinrN7-fKeDEuGP6I_oAclGjRS4Aa36FoE,1488
112
+ angr/analyses/decompiler/decompilation_cache.py,sha256=gAZtyXs-eoFj3680bTrJVAZcIoaPsFK0kayu30NYLb4,1509
113
113
  angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
114
114
  angr/analyses/decompiler/decompiler.py,sha256=qbYhdYbWxkbyHYf3D4py7ehXvsOUbXWgz7aCtTXixRE,29828
115
115
  angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
@@ -120,7 +120,7 @@ angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1
120
120
  angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
121
121
  angr/analyses/decompiler/label_collector.py,sha256=JLaGuSZu-DdJMBTYOPt4QpWJ6UigOpsC5bgNANrSao4,798
122
122
  angr/analyses/decompiler/redundant_label_remover.py,sha256=J9hpP3C_P08v84FjVU0q5Rmj5M1N9q3HKWSWsA2u7Yg,5879
123
- angr/analyses/decompiler/region_identifier.py,sha256=iZ3bTHWwf3wRaxD3Z3nUZtqUkUj8at1rGSFNpDRMvWg,49473
123
+ angr/analyses/decompiler/region_identifier.py,sha256=YsJp16bHNOEvhHYu0Dw1tAorm2eM84DsxF4Ilwh5htw,51184
124
124
  angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
125
125
  angr/analyses/decompiler/return_maker.py,sha256=pKn9_y5VXqTeJnD5uzLLd9sH_Dp_9wkPcWPiJPTV-7A,2550
126
126
  angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
@@ -130,7 +130,7 @@ angr/analyses/decompiler/utils.py,sha256=li5ijfTZpkRvDFh0zvLj90jyoBLDIgDapc9suc5
130
130
  angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
131
131
  angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=2kw0H-QNTt03xEm_CKIx-WwXuh7JVMeNDlENdHvXxDU,24953
132
132
  angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6U1Bp4nonNeEf05z_qhrpHBcyJw_4,496
133
- angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=3osgrQXaq4ArvnJNOChvzaNtovahEjfEl7igPddh-0c,2499
133
+ angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=tZBHtcY0ifSNcamQS0TfUfEb9ERBS5qJjaMPlzxe5Jg,11494
134
134
  angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
135
135
  angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
136
136
  angr/analyses/decompiler/counters/call_counter.py,sha256=9zGhDElg-74EFL0ZVF7XaxDNzwWaSs5Vd2BDKthdFGU,1407
@@ -258,22 +258,22 @@ angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQR
258
258
  angr/analyses/decompiler/ssailification/rewriting.py,sha256=JW_StoLWuDs2LGyG8XjRUbzvQl7-7s2B8j1GKVaYoDo,15045
259
259
  angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=WpgymMtZPYBPnyHZwzrcGrLHZ1juX0-NgPfPLOH937M,40905
260
260
  angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
261
- angr/analyses/decompiler/ssailification/ssailification.py,sha256=GC8ue6Ywxtv0xG1XmxRUZz1HFpc19iOGk05yAsXRNvw,11035
261
+ angr/analyses/decompiler/ssailification/ssailification.py,sha256=Iszu52nKSupnNA5usRDhPPyJHFSvQsFJ5kU15n0V2Jw,11083
262
262
  angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
263
263
  angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=oXTf4Z3Q2vPSGAlAPxsSKrqqDVJ3vRcg6LpNK0qJ51k,11419
264
264
  angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
265
265
  angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
266
266
  angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
267
- angr/analyses/decompiler/structured_codegen/c.py,sha256=IWOsy9St6_jd9fkNb4c4GVIpFZxtY6LJe7u2ngUpJ34,147855
267
+ angr/analyses/decompiler/structured_codegen/c.py,sha256=q4hYqQrqgi8-xA3SE4IYG4RsfrRreiVQdpwFgOvqEhY,147827
268
268
  angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
269
269
  angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
270
270
  angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
271
271
  angr/analyses/decompiler/structuring/dream.py,sha256=WOvtyQ0ZRABfF2bSQz1kcB_X3KHCL4x3QrJA6YNbgUc,48720
272
- angr/analyses/decompiler/structuring/phoenix.py,sha256=4GmQno5KlL4h8A6SPWsf_5QTGbXHw3_8BVcoJRNLDKw,138321
272
+ angr/analyses/decompiler/structuring/phoenix.py,sha256=ADOKtMMI8yvfUaAnEJ__sPf9Z4kHq8qfNvwsmz-qb3M,139638
273
273
  angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
274
274
  angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
275
275
  angr/analyses/decompiler/structuring/structurer_base.py,sha256=3TBpv5gE7CfUrRd1TihDDqMVUJnMstO6v6PXJYAOlpA,47399
276
- angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
276
+ angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=5V5UEpFgyN4kZUqyDltiwtqxbcA8nS5hwLv5XSVH-ek,12711
277
277
  angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
278
278
  angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
279
279
  angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=pyWZgSUyHQ2bnD9Kt3P8fDVwH1QsYrtf2UQJKHVyzVo,2210
@@ -345,7 +345,7 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquq
345
345
  angr/analyses/reaching_definitions/engine_ail.py,sha256=7w3I1mWwvk1FxPTbPS-UCR9Mdbn_YJ_Ltyvbo4Mx5hU,46623
346
346
  angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
347
347
  angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
- angr/analyses/reaching_definitions/function_handler.py,sha256=ZwtBHoAAocYIIUYVjg51sG7ejdmTnXrQzbYlUgkDKXA,29105
348
+ angr/analyses/reaching_definitions/function_handler.py,sha256=Xi3ZqxShzBx77CsncJKPHjBAXX3-F-akU3XwpNvaunU,29135
349
349
  angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
350
350
  angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
351
351
  angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
@@ -363,10 +363,10 @@ angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=_SooCn9qpw
363
363
  angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
364
364
  angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
365
365
  angr/analyses/typehoon/lifter.py,sha256=hxYJmM_A0Kl6YgY7NyWBtA3ieaY49Ey3ESCHC61lMys,4000
366
- angr/analyses/typehoon/simple_solver.py,sha256=w1qiSIFYWsQMqyayMzDRNZKH6xRnDdXyCi08dA_eCoI,54842
366
+ angr/analyses/typehoon/simple_solver.py,sha256=QMHPHz6veiu6xp9BeeTTumi5ispgjCnNo_IP8ESiFE0,57495
367
367
  angr/analyses/typehoon/translator.py,sha256=_UE1JC4KNDXXl4plula9OApK1ee07z9BFdX9HKa5uqw,10568
368
368
  angr/analyses/typehoon/typeconsts.py,sha256=jQEVziyt3LnctrSrCtbUSPi-0tjl8DKoLMFfaOEG3lI,7939
369
- angr/analyses/typehoon/typehoon.py,sha256=gi1DMDbqP8TkpxNiNoaTKPGW01Hy_2iPJS-gedeWagY,12110
369
+ angr/analyses/typehoon/typehoon.py,sha256=IXC_a2N7hsq8wwUrx_UITzmjTApMZWVGYxYBtS3PBL8,12152
370
370
  angr/analyses/typehoon/typevars.py,sha256=cvbeeEDapb0LgGgtgUVpbhAcfuaylk7vEiwCqPxvtQo,16332
371
371
  angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
372
372
  angr/analyses/unpacker/__init__.py,sha256=tBXwDMFKN0Hp8YP0DK-c6deo0Muc_LNopvoKKbzp3Tc,190
@@ -374,8 +374,8 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
374
374
  angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
375
375
  angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
376
376
  angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
377
- angr/analyses/variable_recovery/engine_ail.py,sha256=7kGaMVV_h4UAholuJYXazSk0a6CXk3p9H2cd8kQJ7wI,33991
378
- angr/analyses/variable_recovery/engine_base.py,sha256=HFv-grnBD8ubSfDykn3-mLegVwn6T0SgCE3F7sgOxs8,52348
377
+ angr/analyses/variable_recovery/engine_ail.py,sha256=6G-Py2kOvdEIXMA_LBa8S-ns2gLgRiGWrA3lmaaDGcA,33392
378
+ angr/analyses/variable_recovery/engine_base.py,sha256=nTvTYiUiVXJKwDd9Va_KWv1EYLceIQJ6Fnhv4nTIIws,52404
379
379
  angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
380
380
  angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
381
381
  angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
@@ -542,7 +542,7 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
542
542
  angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
543
543
  angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
544
544
  angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
545
- angr/knowledge_plugins/functions/function.py,sha256=SGQ3DnGJF0ps3P4mV_ohnMjdwmVVeAwNuxyPfwLAu00,70456
545
+ angr/knowledge_plugins/functions/function.py,sha256=vzpTLise4KKkLkQwq9LRYZ4NUkioh-zZphwBIG74euY,70770
546
546
  angr/knowledge_plugins/functions/function_manager.py,sha256=YWp9Hc-Rx9iYChJ3hFv9Tjat-6ZUidv1xsSZLQ2tL9Q,20469
547
547
  angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
548
548
  angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
@@ -572,7 +572,7 @@ angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyC
572
572
  angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
573
573
  angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
574
574
  angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
575
- angr/lib/angr_native.dll,sha256=wUx_pnkKLbai0t3pIzwMCMvOy8kWlEyBlQ0GxUZ84DI,786432
575
+ angr/lib/angr_native.dll,sha256=WMP8N20efvUlcCvuHcWig77Yy54GxEAdgrIa0x2Es1c,786432
576
576
  angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
577
577
  angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
578
578
  angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
@@ -1380,13 +1380,13 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
1380
1380
  angr/utils/segment_list.py,sha256=DulfCDdNETMehseRey64FkjmORQvoSyVd9eRZ4sQ7tw,21065
1381
1381
  angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
1382
1382
  angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
1383
- angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
1383
+ angr/utils/types.py,sha256=688trvR0_j93sfeRgFT1npcmjNGSx99m_IPe9Xyy9WY,4967
1384
1384
  angr/utils/ssa/__init__.py,sha256=ZUPoK7Y1k-7vQkvoYUYPMdjfGh4oC6W3VbWzV_udZHg,14020
1385
1385
  angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
1386
1386
  angr/utils/ssa/vvar_uses_collector.py,sha256=O2aNZeM5DL8qatyhYuMhgbYGFp6Onm2yr9pKq1wRjA0,1347
1387
- angr-9.2.152.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
1388
- angr-9.2.152.dist-info/METADATA,sha256=556gj-ZsMs-vtRqqyHNUjP3mvC586trYO24-4_4lev8,5033
1389
- angr-9.2.152.dist-info/WHEEL,sha256=jcBIzWeetTfKWoqh1t37_3WRou9luDyd3A1574l0jA4,97
1390
- angr-9.2.152.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1391
- angr-9.2.152.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
1392
- angr-9.2.152.dist-info/RECORD,,
1387
+ angr-9.2.154.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
1388
+ angr-9.2.154.dist-info/METADATA,sha256=RT0xn8p_s0XNCBwHuHMdb1IQ9ivocdZezc6MSHdqAAw,5033
1389
+ angr-9.2.154.dist-info/WHEEL,sha256=NksL3MEVxGzZIk3JFq-Onsaky3opSuETMvlFyzpKtnA,97
1390
+ angr-9.2.154.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
1391
+ angr-9.2.154.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
1392
+ angr-9.2.154.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.0)
2
+ Generator: setuptools (80.3.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-win_amd64
5
5