angr 9.2.101__py3-none-macosx_10_9_x86_64.whl → 9.2.102__py3-none-macosx_10_9_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/knowledge_plugins/variables/variable_manager.py +18 -1
- angr/lib/angr_native.dylib +0 -0
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/METADATA +8 -8
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/RECORD +9 -9
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/LICENSE +0 -0
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/WHEEL +0 -0
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/entry_points.txt +0 -0
- {angr-9.2.101.dist-info → angr-9.2.102.dist-info}/top_level.txt +0 -0
angr/__init__.py
CHANGED
|
@@ -207,7 +207,9 @@ class VariableManagerInternal(Serializable):
|
|
|
207
207
|
unified_stack_variables = []
|
|
208
208
|
unified_memory_variables = []
|
|
209
209
|
|
|
210
|
+
unified_variable_idents: Set[str] = set()
|
|
210
211
|
for variable in self._unified_variables:
|
|
212
|
+
unified_variable_idents.add(variable.ident)
|
|
211
213
|
if isinstance(variable, SimRegisterVariable):
|
|
212
214
|
unified_register_variables.append(variable.serialize_to_cmessage())
|
|
213
215
|
elif isinstance(variable, SimStackVariable):
|
|
@@ -223,6 +225,14 @@ class VariableManagerInternal(Serializable):
|
|
|
223
225
|
|
|
224
226
|
relations = []
|
|
225
227
|
for variable, unified in self._variables_to_unified_variables.items():
|
|
228
|
+
if unified.ident not in unified_variable_idents:
|
|
229
|
+
l.error(
|
|
230
|
+
"The unified variable %s is missing from the unified variables of function %#x. Please "
|
|
231
|
+
"report it on GitHub.",
|
|
232
|
+
unified.ident,
|
|
233
|
+
self.func_addr,
|
|
234
|
+
)
|
|
235
|
+
continue
|
|
226
236
|
relation = variables_pb2.Var2Unified()
|
|
227
237
|
relation.var_ident = variable.ident
|
|
228
238
|
relation.unified_var_ident = unified.ident
|
|
@@ -311,7 +321,14 @@ class VariableManagerInternal(Serializable):
|
|
|
311
321
|
|
|
312
322
|
for var2unified in cmsg.var2unified:
|
|
313
323
|
variable = variable_by_ident[var2unified.var_ident]
|
|
314
|
-
unified = unified_variable_by_ident
|
|
324
|
+
unified = unified_variable_by_ident.get(var2unified.unified_var_ident, None)
|
|
325
|
+
if unified is None:
|
|
326
|
+
l.warning(
|
|
327
|
+
"Unified variable %s is not found in unified_variable_by_ident.", var2unified.unified_var_ident
|
|
328
|
+
)
|
|
329
|
+
# as a stop gap, we make the variable unify to itself
|
|
330
|
+
model._variables_to_unified_variables[variable] = variable
|
|
331
|
+
continue
|
|
315
332
|
model._variables_to_unified_variables[variable] = unified
|
|
316
333
|
|
|
317
334
|
for phi2var in cmsg.phi2var:
|
angr/lib/angr_native.dylib
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.102
|
|
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
|
|
@@ -17,13 +17,13 @@ Description-Content-Type: text/markdown
|
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: CppHeaderParser
|
|
19
19
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: ailment ==9.2.
|
|
21
|
-
Requires-Dist: archinfo ==9.2.
|
|
20
|
+
Requires-Dist: ailment ==9.2.102
|
|
21
|
+
Requires-Dist: archinfo ==9.2.102
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone ==5.0.0.post1
|
|
24
24
|
Requires-Dist: cffi >=1.14.0
|
|
25
|
-
Requires-Dist: claripy ==9.2.
|
|
26
|
-
Requires-Dist: cle ==9.2.
|
|
25
|
+
Requires-Dist: claripy ==9.2.102
|
|
26
|
+
Requires-Dist: cle ==9.2.102
|
|
27
27
|
Requires-Dist: dpkt
|
|
28
28
|
Requires-Dist: itanium-demangler
|
|
29
29
|
Requires-Dist: mulpyplexer
|
|
@@ -33,7 +33,7 @@ Requires-Dist: protobuf >=3.19.0
|
|
|
33
33
|
Requires-Dist: psutil
|
|
34
34
|
Requires-Dist: pycparser >=2.18
|
|
35
35
|
Requires-Dist: pyformlang
|
|
36
|
-
Requires-Dist: pyvex ==9.2.
|
|
36
|
+
Requires-Dist: pyvex ==9.2.102
|
|
37
37
|
Requires-Dist: rich >=13.1.0
|
|
38
38
|
Requires-Dist: rpyc
|
|
39
39
|
Requires-Dist: sortedcontainers
|
|
@@ -49,10 +49,10 @@ Requires-Dist: myst-parser ; extra == 'docs'
|
|
|
49
49
|
Requires-Dist: sphinx ; extra == 'docs'
|
|
50
50
|
Requires-Dist: sphinx-autodoc-typehints ; extra == 'docs'
|
|
51
51
|
Provides-Extra: pcode
|
|
52
|
-
Requires-Dist: pypcode ~=2.0 ; extra == 'pcode'
|
|
52
|
+
Requires-Dist: pypcode ~=2.0.0 ; extra == 'pcode'
|
|
53
53
|
Provides-Extra: testing
|
|
54
54
|
Requires-Dist: keystone-engine ; extra == 'testing'
|
|
55
|
-
Requires-Dist: pypcode ~=2.0 ; extra == 'testing'
|
|
55
|
+
Requires-Dist: pypcode ~=2.0.0 ; extra == 'testing'
|
|
56
56
|
Requires-Dist: pytest ; extra == 'testing'
|
|
57
57
|
Requires-Dist: pytest-split ; extra == 'testing'
|
|
58
58
|
Requires-Dist: pytest-xdist ; extra == 'testing'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=AUOGmfUfMizk7QJKCYvZkbX6UH8TKbi5R-6xlmJWG8A,3993
|
|
2
2
|
angr/__main__.py,sha256=kaO56Te6h73SM94BVtASF00q5QbBbC3eBs9poVc9sVI,1887
|
|
3
3
|
angr/annocfg.py,sha256=dK5JAdN4Ig_jgxTBZeZXwk3kAS4-IQUvE6T02GBZTDQ,10818
|
|
4
4
|
angr/blade.py,sha256=B8QXVQ93jz1YCIlb-dZLeBqYmVFdMXI5GleP1Wnxjrw,15519
|
|
@@ -480,12 +480,12 @@ angr/knowledge_plugins/sync/__init__.py,sha256=RN3y0UhYax-GdPyAhondMXEBuWIu-enHj
|
|
|
480
480
|
angr/knowledge_plugins/sync/sync_controller.py,sha256=Len-odz6vq6ZhGsRxKH6dSRvjxUnca88XQbtdjdP6Us,9276
|
|
481
481
|
angr/knowledge_plugins/variables/__init__.py,sha256=tmh_2i0X6Y41TkEgxHRQ4y-kVEGZnlDIpJZ_wUkCISI,60
|
|
482
482
|
angr/knowledge_plugins/variables/variable_access.py,sha256=CtstTsBph7RCGoWTFsiaPLDMuXjKQAoQ8lgwVMESisA,3751
|
|
483
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
483
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=DiJoq6cnGnyEAoC8HmzsvesCLRkPRopOiugHZBfY-mc,46435
|
|
484
484
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=-5A2h048WTRu6Et7q7bqlc-AyBXNuJ9AF9nE9zc3M4I,94
|
|
485
485
|
angr/knowledge_plugins/xrefs/xref.py,sha256=w4wjDFl4xtJYOtJplp9s1AIX3wI1RE71po3ufh1M4aY,4963
|
|
486
486
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=OLHEmgwGbFYWhm6oMgglPQ8Fe7rAvKicFeyQoGqSylc,4009
|
|
487
487
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=VR3xLQQ-gUg25oX0OL3BJHyQRlZh2A8syBac9ZMS9n4,271
|
|
488
|
-
angr/lib/angr_native.dylib,sha256=
|
|
488
|
+
angr/lib/angr_native.dylib,sha256=lhNrF4pQw21IH9HlRvreDrO9eSAAIfY1z723e5cGSdA,18589760
|
|
489
489
|
angr/misc/__init__.py,sha256=Ct-Q6-c-Frdz5Ihkqmou3j_1jyJi8WJXlQxs-gPQg0Y,237
|
|
490
490
|
angr/misc/ansi.py,sha256=TKrx7d_MViChHh5RBR2VLufNrujTUioJWsZS5ugk8k4,807
|
|
491
491
|
angr/misc/autoimport.py,sha256=K64D53xl3xUqBulXAyaypzqYRBjjm4HDn6TlJsBouKw,3426
|
|
@@ -1289,9 +1289,9 @@ angr/utils/mp.py,sha256=EPeBml7i1HNOg9OFvj-hoqaGJzKD4fKyM-mHWIaJ3Ko,1825
|
|
|
1289
1289
|
angr/utils/segment_list.py,sha256=lhGy16YKKaD-F0JtWmjJ6a2RFcdTrKcLfPE9ILRVtCs,20431
|
|
1290
1290
|
angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
|
|
1291
1291
|
angr/utils/typing.py,sha256=_I4dzZSh1_uRKQ3PpjXseA_CaJH6ru2yAxjICkJhfmI,417
|
|
1292
|
-
angr-9.2.
|
|
1293
|
-
angr-9.2.
|
|
1294
|
-
angr-9.2.
|
|
1295
|
-
angr-9.2.
|
|
1296
|
-
angr-9.2.
|
|
1297
|
-
angr-9.2.
|
|
1292
|
+
angr-9.2.102.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1293
|
+
angr-9.2.102.dist-info/METADATA,sha256=qKc4s8v5mQulTYWMZtjaysnzAY9RDJaLmX5Pi5PGFTw,4806
|
|
1294
|
+
angr-9.2.102.dist-info/WHEEL,sha256=YBuZgLbEquNCbbbQPlLFm_OOe1fPwf91V3LBhwgnks4,107
|
|
1295
|
+
angr-9.2.102.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1296
|
+
angr-9.2.102.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1297
|
+
angr-9.2.102.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|