angr 9.2.179__cp310-abi3-macosx_10_12_x86_64.whl → 9.2.180__cp310-abi3-macosx_10_12_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/ailment/converter_vex.py +35 -4
- angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py +2 -2
- angr/analyses/decompiler/ssailification/rewriting.py +1 -1
- angr/rustylib.abi3.so +0 -0
- angr/unicornlib.dylib +0 -0
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/METADATA +5 -5
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/RECORD +12 -12
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/WHEEL +0 -0
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/entry_points.txt +0 -0
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/licenses/LICENSE +0 -0
- {angr-9.2.179.dist-info → angr-9.2.180.dist-info}/top_level.txt +0 -0
angr/__init__.py
CHANGED
angr/ailment/converter_vex.py
CHANGED
|
@@ -55,7 +55,13 @@ class VEXExprConverter(Converter):
|
|
|
55
55
|
except UnsupportedIROpError:
|
|
56
56
|
log.warning("VEXExprConverter: Unsupported IROp %s.", expr.op)
|
|
57
57
|
return DirtyExpression(
|
|
58
|
-
manager.next_atom(),
|
|
58
|
+
manager.next_atom(),
|
|
59
|
+
f"unsupported_{expr.op}",
|
|
60
|
+
[],
|
|
61
|
+
bits=expr.result_size(manager.tyenv),
|
|
62
|
+
ins_addr=manager.ins_addr,
|
|
63
|
+
vex_block_addr=manager.block_addr,
|
|
64
|
+
vex_stmt_idx=manager.vex_stmt_idx,
|
|
59
65
|
)
|
|
60
66
|
|
|
61
67
|
log.warning("VEXExprConverter: Unsupported VEX expression of type %s.", type(expr))
|
|
@@ -64,7 +70,15 @@ class VEXExprConverter(Converter):
|
|
|
64
70
|
except ValueError:
|
|
65
71
|
# e.g., "ValueError: Type Ity_INVALID does not have size"
|
|
66
72
|
bits = 0
|
|
67
|
-
return DirtyExpression(
|
|
73
|
+
return DirtyExpression(
|
|
74
|
+
manager.next_atom(),
|
|
75
|
+
f"unsupported_{type(expr)!s}",
|
|
76
|
+
[],
|
|
77
|
+
bits=bits,
|
|
78
|
+
ins_addr=manager.ins_addr,
|
|
79
|
+
vex_block_addr=manager.block_addr,
|
|
80
|
+
vex_stmt_idx=manager.vex_stmt_idx,
|
|
81
|
+
)
|
|
68
82
|
|
|
69
83
|
@staticmethod
|
|
70
84
|
def convert_list(exprs, manager):
|
|
@@ -479,8 +493,22 @@ class VEXStmtConverter(Converter):
|
|
|
479
493
|
try:
|
|
480
494
|
func = STATEMENT_MAPPINGS[type(stmt)]
|
|
481
495
|
except KeyError:
|
|
482
|
-
dirty = DirtyExpression(
|
|
483
|
-
|
|
496
|
+
dirty = DirtyExpression(
|
|
497
|
+
manager.next_atom(),
|
|
498
|
+
str(stmt),
|
|
499
|
+
[],
|
|
500
|
+
bits=0,
|
|
501
|
+
ins_addr=manager.ins_addr,
|
|
502
|
+
vex_block_addr=manager.block_addr,
|
|
503
|
+
vex_stmt_idx=manager.vex_stmt_idx,
|
|
504
|
+
)
|
|
505
|
+
return DirtyStatement(
|
|
506
|
+
idx,
|
|
507
|
+
dirty,
|
|
508
|
+
ins_addr=manager.ins_addr,
|
|
509
|
+
vex_block_addr=manager.block_addr,
|
|
510
|
+
vex_stmt_idx=manager.vex_stmt_idx,
|
|
511
|
+
)
|
|
484
512
|
|
|
485
513
|
return func(idx, stmt, manager)
|
|
486
514
|
|
|
@@ -631,6 +659,9 @@ class VEXStmtConverter(Converter):
|
|
|
631
659
|
maddr=maddr,
|
|
632
660
|
msize=stmt.mSize,
|
|
633
661
|
bits=bits,
|
|
662
|
+
ins_addr=manager.ins_addr,
|
|
663
|
+
vex_block_addr=manager.block_addr,
|
|
664
|
+
vex_stmt_idx=manager.vex_stmt_idx,
|
|
634
665
|
)
|
|
635
666
|
|
|
636
667
|
if stmt.tmp == 0xFFFFFFFF:
|
|
@@ -133,7 +133,7 @@ class CASIntrinsics(PeepholeOptimizationMultiStmtBase):
|
|
|
133
133
|
ins_addr=cas_stmt.ins_addr,
|
|
134
134
|
)
|
|
135
135
|
|
|
136
|
-
assignment_dst = cas_stmt.
|
|
136
|
+
assignment_dst = cas_stmt.old_lo
|
|
137
137
|
stmt = Assignment(cas_stmt.idx, assignment_dst, call_expr, **cas_stmt.tags) # type:ignore
|
|
138
138
|
return [stmt]
|
|
139
139
|
|
|
@@ -155,7 +155,7 @@ class CASIntrinsics(PeepholeOptimizationMultiStmtBase):
|
|
|
155
155
|
bits=cas_stmt.bits,
|
|
156
156
|
ins_addr=cas_stmt.ins_addr,
|
|
157
157
|
)
|
|
158
|
-
assignment_dst = cas_stmt.
|
|
158
|
+
assignment_dst = cas_stmt.old_lo
|
|
159
159
|
stmt = Assignment(cas_stmt.idx, assignment_dst, call_expr, **cas_stmt.tags) # type:ignore
|
|
160
160
|
return [stmt, next_stmt]
|
|
161
161
|
|
|
@@ -188,7 +188,7 @@ class RewritingAnalysis(ForwardAnalysis[RewritingState, ailment.Block, object, o
|
|
|
188
188
|
def _reg_predicate(self, node_: Block, *, reg_offset: int, reg_size: int) -> tuple[bool, Any]:
|
|
189
189
|
out_state: RewritingState = (
|
|
190
190
|
self.head_controlled_loop_outstates[(node_.addr, node_.idx)]
|
|
191
|
-
if is_head_controlled_loop_block(node_)
|
|
191
|
+
if is_head_controlled_loop_block(node_) and (node_.addr, node_.idx) in self.head_controlled_loop_outstates
|
|
192
192
|
else self.out_states[(node_.addr, node_.idx)]
|
|
193
193
|
)
|
|
194
194
|
if reg_offset in out_state.registers and reg_size in out_state.registers[reg_offset]:
|
angr/rustylib.abi3.so
CHANGED
|
Binary file
|
angr/unicornlib.dylib
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.180
|
|
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/
|
|
@@ -16,12 +16,12 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: cxxheaderparser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: archinfo==9.2.180
|
|
20
20
|
Requires-Dist: cachetools
|
|
21
21
|
Requires-Dist: capstone==5.0.3
|
|
22
22
|
Requires-Dist: cffi>=1.14.0
|
|
23
|
-
Requires-Dist: claripy==9.2.
|
|
24
|
-
Requires-Dist: cle==9.2.
|
|
23
|
+
Requires-Dist: claripy==9.2.180
|
|
24
|
+
Requires-Dist: cle==9.2.180
|
|
25
25
|
Requires-Dist: msgspec
|
|
26
26
|
Requires-Dist: mulpyplexer
|
|
27
27
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
@@ -31,7 +31,7 @@ Requires-Dist: pycparser>=2.18
|
|
|
31
31
|
Requires-Dist: pydemumble
|
|
32
32
|
Requires-Dist: pyformlang
|
|
33
33
|
Requires-Dist: pypcode<4.0,>=3.2.1
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.180
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
angr-9.2.
|
|
2
|
-
angr-9.2.
|
|
3
|
-
angr-9.2.
|
|
4
|
-
angr-9.2.
|
|
5
|
-
angr-9.2.
|
|
6
|
-
angr-9.2.
|
|
1
|
+
angr-9.2.180.dist-info/RECORD,,
|
|
2
|
+
angr-9.2.180.dist-info/WHEEL,sha256=wTy_3c4XcOAcqIE15cpeRqeJHiJiSBH-pmU5VVW1EO8,137
|
|
3
|
+
angr-9.2.180.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
4
|
+
angr-9.2.180.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
5
|
+
angr-9.2.180.dist-info/METADATA,sha256=FrAAYo2drnFnR8J3PO9dqr21gCdCMF1lc5NSMAwVOsc,4445
|
|
6
|
+
angr-9.2.180.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
7
7
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
8
|
-
angr/unicornlib.dylib,sha256=
|
|
8
|
+
angr/unicornlib.dylib,sha256=XD40MRGV3vqkz2LO-U8yStGieVatX6Fu3nz7rTeKk3s,264656
|
|
9
9
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
10
10
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
11
11
|
angr/sim_type.py,sha256=8AJjzu_hp4GvgXogz8KnLiPXSnxBGUy-D3G8w4wEicQ,144714
|
|
12
12
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
13
13
|
angr/emulator.py,sha256=aZXi8-jQ_9uelN2zvlecR2ZYXPey4PHyju6yVJIWDAk,4708
|
|
14
|
-
angr/rustylib.abi3.so,sha256=
|
|
14
|
+
angr/rustylib.abi3.so,sha256=aJ6AvYmhjgyrtyBZfWJyVCrAIbVeMohkWZ_knGWus4I,5235576
|
|
15
15
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
16
16
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
18
18
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
19
19
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
20
|
-
angr/__init__.py,sha256=
|
|
20
|
+
angr/__init__.py,sha256=N3ua9-w9Q01-Id9XrkKAweYGX66vX0iiOx_JPukGv8Q,9246
|
|
21
21
|
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
22
22
|
angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
23
23
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
@@ -690,7 +690,7 @@ angr/procedures/win32_kernel/ExFreePoolWithTag.py,sha256=ok_CG6yILlPGZzg-VvBxWMX
|
|
|
690
690
|
angr/procedures/java_io/write.py,sha256=zYTD5OYySQEfj4Z8t54AEoM1gUR5AXdeCa6AmNabwXk,662
|
|
691
691
|
angr/procedures/java_io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
692
692
|
angr/procedures/java_io/read.py,sha256=PWQjyUErAHcoL5JYG4IhSqeRc5s30IeHM2mpsWdBqgI,384
|
|
693
|
-
angr/ailment/converter_vex.py,sha256=
|
|
693
|
+
angr/ailment/converter_vex.py,sha256=PSZvU83HCtRpVax87QUJXWiAshuZ02pNjyU9TbyJ8iU,29091
|
|
694
694
|
angr/ailment/converter_common.py,sha256=6MxxI3PRZBlFlIP2uZhQAa8vDvJr0nMDd-QnTbPLn6o,180
|
|
695
695
|
angr/ailment/tagged_object.py,sha256=48xIMC5WKebEpA12Zq6dQz3evvKxT3ULEu2cPdw9w-Y,1566
|
|
696
696
|
angr/ailment/statement.py,sha256=3JEhg-JDRrNjaeHFgO-liEIrZRW6v5sIsOqcGHiuM3A,30472
|
|
@@ -1235,7 +1235,7 @@ angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7
|
|
|
1235
1235
|
angr/analyses/decompiler/structured_codegen/c.py,sha256=fgkU26x8sNFZij1h7GTkFGlQYG6oKn5L9tFBVQa8j0c,152371
|
|
1236
1236
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
1237
1237
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=mb5d5iQO1N2wMl7QySvfHemXM-e0yQBhjtlmnLsVSgE,5134
|
|
1238
|
-
angr/analyses/decompiler/ssailification/rewriting.py,sha256=
|
|
1238
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=opMP9ONIx-cQ26PSyXO_NR9MTM_LaH-MObFk8C2uXto,15143
|
|
1239
1239
|
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=MdmNKWN2LVQ9fH7O-E4yNn5oXUS2p2u1qHM_OayPJ-k,11466
|
|
1240
1240
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=rvFatMUpQQMbENCsPoPogAbBv0AAaCDcKiNvh6GOVeQ,4027
|
|
1241
1241
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
@@ -1271,7 +1271,7 @@ angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=kPWajH8__ap-
|
|
|
1271
1271
|
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=OkKG5u5EONaQ5IOO87ZF04Y3Xsha3dzgNJsSJ1C6cHE,32822
|
|
1272
1272
|
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=2Tb4zGnFA5hZH8oI6t1hoRstGDmOBsOoQxf6fU5Ct7A,1105
|
|
1273
1273
|
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=8gPWhFTcezgO7pZ_v0pxR7pweds4_GrrY82ur6Nrlf8,4796
|
|
1274
|
-
angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py,sha256=
|
|
1274
|
+
angr/analyses/decompiler/peephole_optimizations/cas_intrinsics.py,sha256=xfLNvquH6x_-NtEHJpbBJBPTIcBQW6-JpDmcHeuRTxA,7957
|
|
1275
1275
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=V5Vm1zUGjsauyOYXbUgDfZEgmChLbY8wnvmcRbfdMk0,1278
|
|
1276
1276
|
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=vLXt0ekjRep4SgaNq1wyxVkBTzOMTa03d3rgkjUOcUg,995
|
|
1277
1277
|
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=fXV_a58W2X30KCanYeSHdZ2yPcfDlyZq_OkYNMkglrg,6420
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|