angr 9.2.142__py3-none-manylinux2014_x86_64.whl → 9.2.144__py3-none-manylinux2014_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/analyses/calling_convention/calling_convention.py +22 -10
- angr/analyses/calling_convention/fact_collector.py +72 -14
- angr/analyses/cfg/cfg_base.py +7 -2
- angr/analyses/cfg/cfg_emulated.py +13 -4
- angr/analyses/cfg/cfg_fast.py +21 -60
- angr/analyses/cfg/indirect_jump_resolvers/__init__.py +2 -0
- angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +12 -1
- angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py +107 -0
- angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +2 -1
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +6 -102
- angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py +92 -0
- angr/analyses/complete_calling_conventions.py +18 -5
- angr/analyses/decompiler/ail_simplifier.py +95 -65
- angr/analyses/decompiler/clinic.py +162 -68
- angr/analyses/decompiler/decompiler.py +4 -4
- angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +1 -1
- angr/analyses/decompiler/optimization_passes/condition_constprop.py +49 -14
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +8 -0
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +5 -5
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +5 -0
- angr/analyses/decompiler/peephole_optimizations/__init__.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py +37 -0
- angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py +15 -1
- angr/analyses/decompiler/sequence_walker.py +8 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +2 -0
- angr/analyses/decompiler/ssailification/ssailification.py +10 -2
- angr/analyses/decompiler/ssailification/traversal_engine.py +17 -2
- angr/analyses/decompiler/structured_codegen/c.py +25 -4
- angr/analyses/decompiler/utils.py +13 -0
- angr/analyses/disassembly.py +3 -3
- angr/analyses/fcp/fcp.py +1 -4
- angr/analyses/s_propagator.py +40 -29
- angr/analyses/s_reaching_definitions/s_rda_model.py +45 -36
- angr/analyses/s_reaching_definitions/s_rda_view.py +6 -3
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +41 -42
- angr/analyses/typehoon/dfa.py +13 -3
- angr/analyses/typehoon/typehoon.py +60 -18
- angr/analyses/typehoon/typevars.py +11 -7
- angr/analyses/variable_recovery/engine_ail.py +19 -23
- angr/analyses/variable_recovery/engine_base.py +26 -30
- angr/analyses/variable_recovery/variable_recovery_fast.py +17 -21
- angr/calling_conventions.py +18 -8
- angr/knowledge_plugins/functions/function.py +29 -15
- angr/knowledge_plugins/key_definitions/constants.py +2 -2
- angr/knowledge_plugins/key_definitions/liveness.py +4 -4
- angr/lib/angr_native.so +0 -0
- angr/procedures/definitions/linux_kernel.py +5 -0
- angr/state_plugins/unicorn_engine.py +24 -8
- angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +1 -2
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +2 -2
- angr/utils/doms.py +40 -33
- angr/utils/graph.py +26 -20
- angr/utils/ssa/__init__.py +21 -14
- angr/utils/ssa/vvar_uses_collector.py +2 -2
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/METADATA +11 -8
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/RECORD +61 -58
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/WHEEL +1 -1
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/LICENSE +0 -0
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/entry_points.txt +0 -0
- {angr-9.2.142.dist-info → angr-9.2.144.dist-info}/top_level.txt +0 -0
angr/utils/ssa/__init__.py
CHANGED
|
@@ -79,41 +79,42 @@ def get_reg_offset_base(reg_offset, arch, size=None, resilient=True):
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
def get_vvar_deflocs(
|
|
82
|
-
blocks, phi_vvars: dict[
|
|
83
|
-
) -> dict[VirtualVariable, CodeLocation]:
|
|
84
|
-
vvar_to_loc: dict[VirtualVariable, CodeLocation] = {}
|
|
85
|
-
|
|
82
|
+
blocks, phi_vvars: dict[int, set[int]] | None = None
|
|
83
|
+
) -> dict[int, tuple[VirtualVariable, CodeLocation]]:
|
|
84
|
+
vvar_to_loc: dict[int, tuple[VirtualVariable, CodeLocation]] = {}
|
|
86
85
|
for block in blocks:
|
|
87
86
|
for stmt_idx, stmt in enumerate(block.statements):
|
|
88
87
|
if isinstance(stmt, Assignment) and isinstance(stmt.dst, VirtualVariable):
|
|
89
|
-
vvar_to_loc[stmt.dst] =
|
|
88
|
+
vvar_to_loc[stmt.dst.varid] = stmt.dst, CodeLocation(
|
|
89
|
+
block.addr, stmt_idx, ins_addr=stmt.ins_addr, block_idx=block.idx
|
|
90
|
+
)
|
|
90
91
|
if phi_vvars is not None and isinstance(stmt.src, Phi):
|
|
91
|
-
phi_vvars[stmt.dst] = {
|
|
92
|
+
phi_vvars[stmt.dst.varid] = {
|
|
93
|
+
vvar_.varid for src, vvar_ in stmt.src.src_and_vvars if vvar_ is not None
|
|
94
|
+
}
|
|
92
95
|
elif isinstance(stmt, Call):
|
|
93
96
|
if isinstance(stmt.ret_expr, VirtualVariable):
|
|
94
|
-
vvar_to_loc[stmt.ret_expr] = CodeLocation(
|
|
97
|
+
vvar_to_loc[stmt.ret_expr.varid] = stmt.ret_expr, CodeLocation(
|
|
95
98
|
block.addr, stmt_idx, ins_addr=stmt.ins_addr, block_idx=block.idx
|
|
96
99
|
)
|
|
97
100
|
if isinstance(stmt.fp_ret_expr, VirtualVariable):
|
|
98
|
-
vvar_to_loc[stmt.fp_ret_expr] = CodeLocation(
|
|
101
|
+
vvar_to_loc[stmt.fp_ret_expr.varid] = stmt.fp_ret_expr, CodeLocation(
|
|
99
102
|
block.addr, stmt_idx, ins_addr=stmt.ins_addr, block_idx=block.idx
|
|
100
103
|
)
|
|
101
104
|
|
|
102
105
|
return vvar_to_loc
|
|
103
106
|
|
|
104
107
|
|
|
105
|
-
def get_vvar_uselocs(blocks) -> dict[int,
|
|
106
|
-
vvar_to_loc: dict[int,
|
|
107
|
-
|
|
108
|
+
def get_vvar_uselocs(blocks) -> dict[int, list[tuple[VirtualVariable, CodeLocation]]]:
|
|
109
|
+
vvar_to_loc: dict[int, list[tuple[VirtualVariable, CodeLocation]]] = defaultdict(list)
|
|
108
110
|
for block in blocks:
|
|
109
111
|
collector = VVarUsesCollector()
|
|
110
112
|
collector.walk(block)
|
|
111
113
|
for vvar_idx, vvar_and_uselocs in collector.vvar_and_uselocs.items():
|
|
112
114
|
if vvar_idx not in vvar_to_loc:
|
|
113
|
-
vvar_to_loc[vvar_idx] = vvar_and_uselocs
|
|
115
|
+
vvar_to_loc[vvar_idx] = list(vvar_and_uselocs)
|
|
114
116
|
else:
|
|
115
|
-
vvar_to_loc[vvar_idx]
|
|
116
|
-
|
|
117
|
+
vvar_to_loc[vvar_idx] += vvar_and_uselocs
|
|
117
118
|
return vvar_to_loc
|
|
118
119
|
|
|
119
120
|
|
|
@@ -256,6 +257,12 @@ def has_ite_stmt(stmt: Statement) -> bool:
|
|
|
256
257
|
return walker.has_blacklisted_exprs
|
|
257
258
|
|
|
258
259
|
|
|
260
|
+
def has_tmp_expr(expr: Expression) -> bool:
|
|
261
|
+
walker = AILBlacklistExprTypeWalker((Tmp,))
|
|
262
|
+
walker.walk_expression(expr)
|
|
263
|
+
return walker.has_blacklisted_exprs
|
|
264
|
+
|
|
265
|
+
|
|
259
266
|
def check_in_between_stmts(
|
|
260
267
|
graph: networkx.DiGraph,
|
|
261
268
|
blocks: dict[tuple[int, int | None], Block],
|
|
@@ -18,7 +18,7 @@ class VVarUsesCollector(AILBlockWalkerBase):
|
|
|
18
18
|
def __init__(self):
|
|
19
19
|
super().__init__()
|
|
20
20
|
|
|
21
|
-
self.vvar_and_uselocs: dict[int,
|
|
21
|
+
self.vvar_and_uselocs: dict[int, list[tuple[VirtualVariable, CodeLocation]]] = defaultdict(list)
|
|
22
22
|
self.vvars: set[int] = set()
|
|
23
23
|
|
|
24
24
|
def _handle_VirtualVariable(
|
|
@@ -31,7 +31,7 @@ class VVarUsesCollector(AILBlockWalkerBase):
|
|
|
31
31
|
# avoid phi loops
|
|
32
32
|
return
|
|
33
33
|
if block is not None:
|
|
34
|
-
self.vvar_and_uselocs[expr.varid].
|
|
34
|
+
self.vvar_and_uselocs[expr.varid].append(
|
|
35
35
|
(expr, CodeLocation(block.addr, stmt_idx, ins_addr=stmt.ins_addr, block_idx=block.idx))
|
|
36
36
|
)
|
|
37
37
|
self.vvars.add(expr.varid)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.144
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
|
-
Home-page: https://github.com/angr/angr
|
|
6
5
|
License: BSD-2-Clause
|
|
6
|
+
Project-URL: Homepage, https://angr.io/
|
|
7
|
+
Project-URL: Repository, https://github.com/angr/angr
|
|
7
8
|
Classifier: License :: OSI Approved :: BSD License
|
|
8
9
|
Classifier: Programming Language :: Python :: 3
|
|
9
10
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -16,13 +17,13 @@ Description-Content-Type: text/markdown
|
|
|
16
17
|
License-File: LICENSE
|
|
17
18
|
Requires-Dist: CppHeaderParser
|
|
18
19
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
20
|
+
Requires-Dist: ailment==9.2.144
|
|
21
|
+
Requires-Dist: archinfo==9.2.144
|
|
21
22
|
Requires-Dist: cachetools
|
|
22
23
|
Requires-Dist: capstone==5.0.3
|
|
23
24
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
25
|
+
Requires-Dist: claripy==9.2.144
|
|
26
|
+
Requires-Dist: cle==9.2.144
|
|
26
27
|
Requires-Dist: mulpyplexer
|
|
27
28
|
Requires-Dist: nampa
|
|
28
29
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
@@ -31,11 +32,10 @@ Requires-Dist: psutil
|
|
|
31
32
|
Requires-Dist: pycparser>=2.18
|
|
32
33
|
Requires-Dist: pydemumble
|
|
33
34
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
35
|
+
Requires-Dist: pyvex==9.2.144
|
|
35
36
|
Requires-Dist: rich>=13.1.0
|
|
36
37
|
Requires-Dist: sortedcontainers
|
|
37
38
|
Requires-Dist: sympy
|
|
38
|
-
Requires-Dist: unicorn==2.0.1.post1
|
|
39
39
|
Requires-Dist: unique-log-filter
|
|
40
40
|
Requires-Dist: colorama; platform_system == "Windows"
|
|
41
41
|
Provides-Extra: angrdb
|
|
@@ -56,6 +56,9 @@ Requires-Dist: pytest; extra == "testing"
|
|
|
56
56
|
Requires-Dist: pytest-split; extra == "testing"
|
|
57
57
|
Requires-Dist: pytest-xdist; extra == "testing"
|
|
58
58
|
Requires-Dist: sqlalchemy; extra == "testing"
|
|
59
|
+
Requires-Dist: unicorn==2.0.1.post1; extra == "testing"
|
|
60
|
+
Provides-Extra: unicorn
|
|
61
|
+
Requires-Dist: unicorn==2.0.1.post1; extra == "unicorn"
|
|
59
62
|
|
|
60
63
|
# angr
|
|
61
64
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=sKhb29BGGRRtqv47AVHqOhnkPM_rXaUlpATdVGgPip4,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
4
|
angr/blade.py,sha256=NhesOPloKJC1DQJRv_HBT18X7oNxK16JwAfNz2Lc1o0,15384
|
|
5
5
|
angr/block.py,sha256=34rsSr800m0CM1cqniusdCF8GMVc1yXJVUVKu7cYfBE,14679
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=6g-jU6Jt6bi0ZwihG1OT7Nq7_uNp52qA2o0Gq__DkWQ,97388
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
@@ -37,11 +37,11 @@ angr/analyses/cdg.py,sha256=UxKp30a1pq0q-FsgmutHU3sdXFwXOjlcal0wzX4EYJM,6229
|
|
|
37
37
|
angr/analyses/class_identifier.py,sha256=7zOIryNL_DrXW11GGzZjp6TPwv--2VZ5ZuSzYpXirmQ,2951
|
|
38
38
|
angr/analyses/code_tagging.py,sha256=Gj7Ms24RnmhC9OD57gw7R6_c-pLfqSug-LVUMw_JmXE,3510
|
|
39
39
|
angr/analyses/codecave.py,sha256=k_dDhMN4wcq2bs5VrwpOv96OowQ7AbZSs6j5Z6YbIpk,2209
|
|
40
|
-
angr/analyses/complete_calling_conventions.py,sha256=
|
|
40
|
+
angr/analyses/complete_calling_conventions.py,sha256=nVrDHhCV3cawD_KxkAYj2fsszAskkFUHC1677rI6xEM,20490
|
|
41
41
|
angr/analyses/congruency_check.py,sha256=QeYRrdrs_iluLLnKz3KUHkCTPRVl5PgM2T0ZXd786HA,16165
|
|
42
42
|
angr/analyses/datagraph_meta.py,sha256=Ng0jqLD5ucRn_fBXhYq3l6scs3kczRk6Sk-Sen1forc,3414
|
|
43
43
|
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
44
|
-
angr/analyses/disassembly.py,sha256=
|
|
44
|
+
angr/analyses/disassembly.py,sha256=u-O42jtW8IRQH-MDXKhCy5wCL-ZAIHlyeQ5g0GDVgK8,46291
|
|
45
45
|
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
46
46
|
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
47
47
|
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
@@ -54,7 +54,7 @@ angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,1
|
|
|
54
54
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
55
55
|
angr/analyses/reassembler.py,sha256=dc1bM-4pxVa2dypC7qL2REdKhpyKhSbQPf-LCDIBEwA,98351
|
|
56
56
|
angr/analyses/s_liveness.py,sha256=K4soSrcQE9pIn7Yf2Lb3LZEu1ymuQVpWzOqLKunFDGQ,7974
|
|
57
|
-
angr/analyses/s_propagator.py,sha256=
|
|
57
|
+
angr/analyses/s_propagator.py,sha256=ChFdiT4wCN0p5mY0UsFGopH3ZH0zM5V_2Ur5cN15Kcc,23667
|
|
58
58
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
59
59
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
60
60
|
angr/analyses/stack_pointer_tracker.py,sha256=54wijIt-uJZ2KIOjbEpgKucNoDK3qIvtGh2WuEvRAD0,33370
|
|
@@ -65,30 +65,32 @@ angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,1613
|
|
|
65
65
|
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
66
66
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
67
67
|
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
68
|
-
angr/analyses/calling_convention/calling_convention.py,sha256=
|
|
69
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
68
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=pnKjexO6hx53lAvLiPGf7bLRs6eKqv5phSBaDELY-dc,44782
|
|
69
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=HBfLKBC7MGoRCe0xM3Lxewo9UqpxNjE-nYO9j8bzkEY,28814
|
|
70
70
|
angr/analyses/calling_convention/utils.py,sha256=WjpagYFRgJkukNzGN-H7N_vuIxMGJmgHTLvRn9Ccf4I,2071
|
|
71
71
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
72
72
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
73
73
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
74
74
|
angr/analyses/cfg/cfg_arch_options.py,sha256=QpC_sonf0eODcIxWtjVrW6E-gFRGvvdataqGEp9DFFI,3142
|
|
75
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
76
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
75
|
+
angr/analyses/cfg/cfg_base.py,sha256=gDbi5bKkM90Bvdp37QbW_iAIGVKuJ5pZmcS_dcB42Rc,124229
|
|
76
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=JgAen52lAK0v2f_EwiB_gS9BBhg8oqTALN7IVFd80Hk,148051
|
|
77
|
+
angr/analyses/cfg/cfg_fast.py,sha256=grDRUS624AyGvKIau8eYeDacK6eAhG8um9cy8snj-GA,226219
|
|
78
78
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=X2uroCSbtfgugO33pbIU_hx62bHzZTBweO35iLwEaLo,25906
|
|
79
79
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
80
|
-
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=
|
|
80
|
+
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
81
81
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
82
82
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB91fuXmmDPWQg1YkWNz015OiRQfNhE,1777
|
|
83
83
|
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=AIA6YeWlzBAOwhdDolHfxoEWvSsvNPo73KDRIjbHdtY,5202
|
|
84
|
-
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=
|
|
85
|
-
angr/analyses/cfg/indirect_jump_resolvers/
|
|
86
|
-
angr/analyses/cfg/indirect_jump_resolvers/
|
|
84
|
+
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=1iwVKXt-LCtP8ZfZWXuJOz-0BJaWqsWT0fQIBM3RJic,7665
|
|
85
|
+
angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py,sha256=iADDFxnMdIOaN72a0FcODG79dcMzlesYT6LGmQKJxAc,3728
|
|
86
|
+
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=Gec_CgniGF9kXcbYfsocYbxhkTncI4MzfzDLxq_4cuk,1741
|
|
87
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=TNLmG4a3lZXZox5vjYmmETwS2KsNA1uJR55VwrPcrZE,103658
|
|
87
88
|
angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py,sha256=jmCiDkloyyqb6iRfjXBlu2N9uwYhiqeiXWhnUXW27dU,2950
|
|
88
89
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
89
90
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
90
91
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=nc6JSi-h0xaC-xbBIZMXuQ8qroo1T9AIHUwyDswMZjw,1810
|
|
91
92
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
93
|
+
angr/analyses/cfg/indirect_jump_resolvers/syscall_resolver.py,sha256=ZSzhpqSIdlXXheMDmbOsgpChq5yWxOTYQR341vAMTD8,3160
|
|
92
94
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=j7Kf1TOxw5h-WfyskU8uKaDEFj1fkiJOkTVTplwK5ag,2927
|
|
93
95
|
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=6ITAIIPBST7-AuvzLMeUsU07H8UhehWmnCn7BAQ7Ndw,1553
|
|
94
96
|
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=YaWvUc-iQ--9tnsCgHYy1lbe6M7cQJljppMPkJ0ZK_o,267
|
|
@@ -100,17 +102,17 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
|
|
|
100
102
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
101
103
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
102
104
|
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
103
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
105
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=EGtKv5fbXjU2Db0Y0jOBOqZY_mkmvj1TvjEC8OMswcA,78010
|
|
104
106
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
105
107
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
106
108
|
angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
|
|
107
109
|
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
108
110
|
angr/analyses/decompiler/callsite_maker.py,sha256=eWO19uHZVUs3i4Bu8iGSjuJkHZ4CleB0RNA_zTUJByw,22168
|
|
109
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
111
|
+
angr/analyses/decompiler/clinic.py,sha256=6PqJ2E7J5MDqs_SCwLbJ9vXL8M7AMQy9JYj3MvRKxc4,138101
|
|
110
112
|
angr/analyses/decompiler/condition_processor.py,sha256=BCBcgj-QDGNj3ajOKzEktqckTozcSgonaMk1a42QAGc,53853
|
|
111
113
|
angr/analyses/decompiler/decompilation_cache.py,sha256=oNkeyrEXhyinrN7-fKeDEuGP6I_oAclGjRS4Aa36FoE,1488
|
|
112
114
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
113
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
115
|
+
angr/analyses/decompiler/decompiler.py,sha256=qbYhdYbWxkbyHYf3D4py7ehXvsOUbXWgz7aCtTXixRE,29828
|
|
114
116
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
115
117
|
angr/analyses/decompiler/expression_narrower.py,sha256=bgTHxNljl3ghUmNMIdz8kpi4v7iMc8wQh508eCugBtc,10337
|
|
116
118
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
@@ -123,9 +125,9 @@ angr/analyses/decompiler/region_identifier.py,sha256=iZ3bTHWwf3wRaxD3Z3nUZtqUkUj
|
|
|
123
125
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
124
126
|
angr/analyses/decompiler/return_maker.py,sha256=pKn9_y5VXqTeJnD5uzLLd9sH_Dp_9wkPcWPiJPTV-7A,2550
|
|
125
127
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
126
|
-
angr/analyses/decompiler/sequence_walker.py,sha256=
|
|
128
|
+
angr/analyses/decompiler/sequence_walker.py,sha256=FsTQSMAm28xOdI0tbLS0UE51jDNBn0yR8etWmKqeoVw,9898
|
|
127
129
|
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
128
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
130
|
+
angr/analyses/decompiler/utils.py,sha256=NRUwLPXvdxn4xu6UQom3edJ27olhT-4E5TaoL9j5uCE,39662
|
|
129
131
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
130
132
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=llCGH-p9AzfECO_fWTsSUYhX1SzIUr1BKRDTLfc8aXs,23426
|
|
131
133
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6U1Bp4nonNeEf05z_qhrpHBcyJw_4,496
|
|
@@ -143,10 +145,10 @@ angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=Pd9CETFFRuCS72
|
|
|
143
145
|
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=OPhLBkJOPEyxjmioFy3fYpESjkxg-wWsJ8rBjwkW8_g,15493
|
|
144
146
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=Y5On7C6glk3VztwbQFzKYlTTRf2vu9bB5fcRH3rbuhQ,4802
|
|
145
147
|
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=nv2cTSPfQAaYXHBqeEhHcU4iYxoG5E6FT7TNkvTsnAk,5007
|
|
146
|
-
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=
|
|
148
|
+
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=8QAOrn6kTsnc74981DVw_b8H2kIgQm2mfuqMUCeWgkM,5834
|
|
147
149
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
148
150
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
149
|
-
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=
|
|
151
|
+
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=8uU6jDkwgPwX0JtO0dmygtN8lYbV-a5q2ghC_lzrULw,8762
|
|
150
152
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIaVZddpFY1quHQOPEbBRnuQvmXEyiPHo0,10490
|
|
151
153
|
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=-Y8JXf4IJIeBY9jSiHe_agVYSWrr6ATaSaat4M10gQs,13245
|
|
152
154
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
@@ -157,14 +159,14 @@ angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWi
|
|
|
157
159
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=q2ZOxKQUXUwQNEDjEnj-ji32f6n_XR8M82lr_0ImJdM,5079
|
|
158
160
|
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=_rqXGIs03Idkw7IOtxHhapQ-qCMO_mKlJ_FfHAM6TAo,24842
|
|
159
161
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
160
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=PE_DnoBzk-86_8nyTPZ8En2ox_o3GQuI-rNJBd2aS-Y,13777
|
|
161
163
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=2ZHySDpRYCmehdvrtC8u_2MHVV2ehdRv7jmmwa8Z4YY,42063
|
|
162
164
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=BzgSGM39Uv1WAGPM831wLnKW8t-mw9tQoV07ZlxbU_Y,3379
|
|
163
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
165
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=41xal3GCnojFHYMB-sDPG04uvIMsXiK_fZbj3DkchPA,25738
|
|
164
166
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=GGLVSUZLK9LCqYltDGpS1OB6kaD7t_bz_G7B8ZaLT9g,9072
|
|
165
167
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
166
168
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
167
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
169
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=JiJKhxKQ8ceB4b16po4jvSfTACoc1T_Rj6qbR2r6LRM,27375
|
|
168
170
|
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=EgDtVm175NStVFcppjnTrlE-aP0F2oW0tgK3_kpp6xA,2054
|
|
169
171
|
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
170
172
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=_KMPMQ8U38ossydYT6rqQ5fn7yrxjO8TSVvmKwYXBCQ,14693
|
|
@@ -179,13 +181,14 @@ angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_re
|
|
|
179
181
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
180
182
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=V5NDaCYuzoJl-i74JKKV4t9FihXsnmNbki7_4SxJfwo,4406
|
|
181
183
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=szGv6t397GDMIZbn_VS14tAndKUBRF4jYETUMvlVnyU,5145
|
|
182
|
-
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=
|
|
184
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=nUUwy6PQ3AkneYIkcngKqPOTV5FnOaQYxWQZB1hTROY,4544
|
|
183
185
|
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=4iCV9lkADp8lvcPk9vjTwyAG8j5HTBVO9NgBuB7bYhA,1636
|
|
184
186
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=I_AznhlOZG_RDBOJrGsOamH2piOX7XgqxMSt5zX8HqQ,1374
|
|
185
187
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py,sha256=noCM779o2T8spHyQn27Wxc0B6efexlwqsNcH8aqls6c,1153
|
|
186
188
|
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=UbgDxAjFiKjn7CHcKXmXWVe8VvmtqpWYL8Vc-T8GOxc,1137
|
|
187
189
|
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div.py,sha256=MifsnlpogQgWKvshbsuXzQxYv95wBLYCflMddf-Rysc,958
|
|
188
190
|
angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py,sha256=q4qOmRuInwXqT3T3tyybVhWAE1dkS4xGVVkl2b0TGgk,2085
|
|
191
|
+
angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py,sha256=loOM61XWLqkIL_LFQA1PJfz5O3Us5KOPOn2zuTUL_XE,1257
|
|
189
192
|
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=ZQhLw89LjX-O4Gev5AgWMcdn-QR_wVFLzBO4RI6podY,662
|
|
190
193
|
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=RZhdYP0mJIlVIgGAonlzsYy4At22xjgUd_96swO7rc8,9297
|
|
191
194
|
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=sfx6-E36bEFAGO2LuPKOkTCoLzJYEk-hjbFfDQgVQwk,3372
|
|
@@ -224,7 +227,7 @@ angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=
|
|
|
224
227
|
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=b1OTZH0mFSPGtlV-a_Gdila38YaVNm1AJX9qtPuyzBA,5134
|
|
225
228
|
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=yZ_di2u55BiyjTfZatW5pQoqA5g3dbOXaLQv9CxkXhg,5180
|
|
226
229
|
angr/analyses/decompiler/peephole_optimizations/shl_to_mul.py,sha256=ooZ1wDPl5HsiaIpPQ57wgbtSwHfmTHDJ8xey8P6_3-Y,783
|
|
227
|
-
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=
|
|
230
|
+
angr/analyses/decompiler/peephole_optimizations/simplify_pc_relative_loads.py,sha256=wjPcnIb0pqPZ9mSpKQPqwJ-1DKre07Hh_tnU3tLPerE,1899
|
|
228
231
|
angr/analyses/decompiler/peephole_optimizations/single_bit_cond_to_boolexpr.py,sha256=1BdUs9d9Ma2PqMYy5VgIvsc30im5ni-By88RWkWbpSY,1872
|
|
229
232
|
angr/analyses/decompiler/peephole_optimizations/single_bit_xor.py,sha256=tnjWYeKWL63rvLVcicVSD1NbVQJfHtLT85E_PNeYt6s,979
|
|
230
233
|
angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=RRzuc2iGzQPvYaZAmpLKim0pJ_yR3-muGnJQxvpcN8w,4786
|
|
@@ -248,15 +251,15 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
|
248
251
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
249
252
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
250
253
|
angr/analyses/decompiler/ssailification/rewriting.py,sha256=JW_StoLWuDs2LGyG8XjRUbzvQl7-7s2B8j1GKVaYoDo,15045
|
|
251
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
254
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=Jtjg_o0EyZFgadKhAulNMmDEK3wsvbRn_XbnaRjqlMM,37631
|
|
252
255
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
253
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
256
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=aD5Rq2OpCqRdk5jmiqKFPHifEDWdJi1zonxDQ01r1DY,9898
|
|
254
257
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
255
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
258
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=BiXCqC3M3-reyq1Pxspo31Rnr9mTOojiFXa3tGlxipY,10512
|
|
256
259
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
257
260
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
258
261
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
259
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=UOnzqtvD7CW37a91Z6kuGIDss_WoWCuWrVj8rWqhdZE,142738
|
|
260
263
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
261
264
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
262
265
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
@@ -275,7 +278,7 @@ angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2Mioo
|
|
|
275
278
|
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=zJ10ql44q-Fyc6TQ-qJW7cZHlk80RI2VlCzqG1-h9FM,5345
|
|
276
279
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=SlzSTIZos_pMiC_VavvbfjAaYDoCA_ffj5vblhaBI-0,1947
|
|
277
280
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
278
|
-
angr/analyses/fcp/fcp.py,sha256=
|
|
281
|
+
angr/analyses/fcp/fcp.py,sha256=mJzCZ-JQ9Rv15qnVyqAzAhS8UJHldxbjvLieffG-nn0,16285
|
|
279
282
|
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
280
283
|
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
281
284
|
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
@@ -340,30 +343,30 @@ angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=qig
|
|
|
340
343
|
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=BHgsZPyMf5FASi8UBgeNm1mV9PpQyZD93v7OuKL3eGw,8181
|
|
341
344
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=cKBMwwzKlwTzmmVR-EU5AhFnMbJuDVf45GgA5b-K7Jg,1916
|
|
342
345
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
343
|
-
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=
|
|
344
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
345
|
-
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=
|
|
346
|
+
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=olgGRhPVEtw1Y38Z_uNBZANoguOu-X8Ud84q2nquUbk,5718
|
|
347
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=g3ESg9G7eLllEawCPN892uKEQyl7mroyPX1Y-907JY8,13642
|
|
348
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=_SooCn9qpwwCLsZ8end3Gos6XZbzjiBjWVjxG-VaNso,7596
|
|
346
349
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
347
|
-
angr/analyses/typehoon/dfa.py,sha256=
|
|
350
|
+
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
348
351
|
angr/analyses/typehoon/lifter.py,sha256=iLl9F7RZtyth3qEeTvJGyvrKxrmaLn8LxS9DUbkoz4k,2823
|
|
349
352
|
angr/analyses/typehoon/simple_solver.py,sha256=jscsnEV2yxq6ntxgD3ApqOpmGvIgrfwdzZqZy58xY-g,53168
|
|
350
353
|
angr/analyses/typehoon/translator.py,sha256=9PV9M8LgmVYMBSmLutYU5irzHoGHMYeLGVYRUpiJFKE,9590
|
|
351
354
|
angr/analyses/typehoon/typeconsts.py,sha256=cM4IbG8be3X_WidJ94tDSKOjEObw82V6zOb8ADvqKzw,7684
|
|
352
|
-
angr/analyses/typehoon/typehoon.py,sha256=
|
|
353
|
-
angr/analyses/typehoon/typevars.py,sha256=
|
|
355
|
+
angr/analyses/typehoon/typehoon.py,sha256=ek7g_5v1bLNi8fv5FgYmMQrsOWj19qM8WvZvjzXd2NU,11420
|
|
356
|
+
angr/analyses/typehoon/typevars.py,sha256=cvbeeEDapb0LgGgtgUVpbhAcfuaylk7vEiwCqPxvtQo,16332
|
|
354
357
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
355
358
|
angr/analyses/unpacker/__init__.py,sha256=tBXwDMFKN0Hp8YP0DK-c6deo0Muc_LNopvoKKbzp3Tc,190
|
|
356
359
|
angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ7N1i99utC8Vkbtptw,3502
|
|
357
360
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
358
361
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
359
362
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
360
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
361
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
363
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=ExUAn0X6YWuJ0bcJeln14E4xCd_v8hiNt4xYdjkb7cw,31819
|
|
364
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=Ndtp-XRh2FUi3o05J8Ijdijuxn9S-O6cfXY557KkrKA,51142
|
|
362
365
|
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
363
366
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
364
367
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
365
368
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
366
|
-
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=
|
|
369
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=fCqUgopXztzmEFB7nsFTHqOno6PRtrYoS7VFlHENKMA,26288
|
|
367
370
|
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
368
371
|
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
369
372
|
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
@@ -525,19 +528,19 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
525
528
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
526
529
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
527
530
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
528
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
531
|
+
angr/knowledge_plugins/functions/function.py,sha256=8Pa7ugPWtSV6xM69wawj4-fKMArzHVaIwpb0qbshtjw,67502
|
|
529
532
|
angr/knowledge_plugins/functions/function_manager.py,sha256=gdXZY5__a8c_ItQoDkJq4ZBVk-ZLHnmBPYsHA6uEjeA,20001
|
|
530
533
|
angr/knowledge_plugins/functions/function_parser.py,sha256=Ma_51hPet3iVJgMtBhKaT48CcNnxCNv2ys5oMrqJ3bw,11821
|
|
531
534
|
angr/knowledge_plugins/functions/soot_function.py,sha256=lYMe4qbkhAkXqGHTVb0-RM_kB8xWYUocuioK7UmKZgQ,4847
|
|
532
535
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
533
536
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=ydXrPGPCFSMk1JR24qZfPy1xAVOAsc2Isc-QoZPm8Kg,11133
|
|
534
|
-
angr/knowledge_plugins/key_definitions/constants.py,sha256=
|
|
537
|
+
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
535
538
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
536
539
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
537
540
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
538
541
|
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=IVmEzhaFll5uNSW8mVVcOuFyoNvUbcU58dYd-TlNLxs,3310
|
|
539
542
|
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
540
|
-
angr/knowledge_plugins/key_definitions/liveness.py,sha256=
|
|
543
|
+
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
541
544
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
542
545
|
angr/knowledge_plugins/key_definitions/tag.py,sha256=QWtBe5yuMei6t2NRPwolVyUa1XyY2khMeU6pQwb66iQ,1710
|
|
543
546
|
angr/knowledge_plugins/key_definitions/undefined.py,sha256=9_lhbftnUqPGBc1boOoZtUQnNFn0eXsl3Xty0y79z2A,1273
|
|
@@ -555,7 +558,7 @@ angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyC
|
|
|
555
558
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
556
559
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
557
560
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
558
|
-
angr/lib/angr_native.so,sha256=
|
|
561
|
+
angr/lib/angr_native.so,sha256=tCjrl792_2Z48wAJzzsR8gW2e81DMLKDE2rJDcv4Bxo,358568
|
|
559
562
|
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
560
563
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
561
564
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
@@ -583,7 +586,7 @@ angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVk
|
|
|
583
586
|
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
584
587
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
585
588
|
angr/procedures/definitions/libstdcpp.py,sha256=IoPJJEFQZR6ysOYvU1EmVK_IyQPuoq73ehImJuGS3JM,750
|
|
586
|
-
angr/procedures/definitions/linux_kernel.py,sha256=
|
|
589
|
+
angr/procedures/definitions/linux_kernel.py,sha256=xPpfHkfaA_5jS6mPX1YDCPLHEAirAmeGW6mLDBKIlC8,239128
|
|
587
590
|
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
588
591
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
589
592
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=ssyMjeyuPVYHnbmArwDPO0XXMW1n5Odv__n17cdLVcY,1823
|
|
@@ -1276,7 +1279,7 @@ angr/state_plugins/solver.py,sha256=GVN-z84AkVtWbTt-6m8j_1pxxDQ-Y2GsnebdLVF4Wmk,
|
|
|
1276
1279
|
angr/state_plugins/symbolizer.py,sha256=XEdY9g1G0xN0SbA1MDmSDsaOithnP3HnrsckeNV37m4,11011
|
|
1277
1280
|
angr/state_plugins/trace_additions.py,sha256=d1P4a-DdC0c2Fu5_KAhNzfLr1mylAR2wWSOMSwad7os,29717
|
|
1278
1281
|
angr/state_plugins/uc_manager.py,sha256=-mervKrD5a5K71CVAUxHrDW5RCduNwNxZXwW63L9bEA,2973
|
|
1279
|
-
angr/state_plugins/unicorn_engine.py,sha256=
|
|
1282
|
+
angr/state_plugins/unicorn_engine.py,sha256=gvepo_hpUjrreGj0U6vgqnoQdGSSPVqvGdVnHG-Lgpc,77945
|
|
1280
1283
|
angr/state_plugins/view.py,sha256=968XQAnGrPB0gHh0f6DDTEn54VlpwFjcDZgtAmIwCf8,12382
|
|
1281
1284
|
angr/state_plugins/heap/__init__.py,sha256=ajfNPVloK8CUpfd1z22v8dof55c8skshy8aFHG-aqy8,340
|
|
1282
1285
|
angr/state_plugins/heap/heap_base.py,sha256=IaKFHqGoWIcFWx6WCEvpnUvn8eqmD1Gay3JWFerLnnk,6281
|
|
@@ -1314,7 +1317,7 @@ angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhww
|
|
|
1314
1317
|
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuLVyMEqNSZNmDsGRRkQwR30_w,2691
|
|
1315
1318
|
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
1316
1319
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1317
|
-
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=
|
|
1320
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=7DSOkDioqJOqmEgWXO974uD3Ogmhm7m9c4zQ8druZOs,10520
|
|
1318
1321
|
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=Ifc9HbcgvqHNUXZ-yr0HuuIOC-MGAcMYvaT2Pw_eRxo,29390
|
|
1319
1322
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1320
1323
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
@@ -1326,7 +1329,7 @@ angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=P
|
|
|
1326
1329
|
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
1327
1330
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=dAZIA0Z7tM5ZDQPtmkQ7OsUHq6bTqWPl_NcIj0RO7X0,14421
|
|
1328
1331
|
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=aeKBWosclmNKl0wV6ST5ECATDjUz2dbWPkCpZCY_ws4,13230
|
|
1329
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=
|
|
1332
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=41EUAR1cHW-gkBR2ltMoSl5JUKgG1672VXIZtyrJXc8,16934
|
|
1330
1333
|
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
1331
1334
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
1332
1335
|
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=m5l19pFcO9os_tZbfNQTleY8FN61kTshCqp9aAKhDsU,20339
|
|
@@ -1346,14 +1349,14 @@ angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
|
1346
1349
|
angr/utils/constants.py,sha256=ZnK6Ed-1U_8yaw-7ZaCLSM0-z7bSuKPg715bBrquxKE,257
|
|
1347
1350
|
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1348
1351
|
angr/utils/cpp.py,sha256=k6ZOUNIqYxLd5WSRKP2T3li-3zt06PtneLgaBWPOtiU,516
|
|
1349
|
-
angr/utils/doms.py,sha256=
|
|
1352
|
+
angr/utils/doms.py,sha256=l5_GUvVcjfwglZTqGYKOx5QvJ_pE_PWBIhH8fTk_e80,5356
|
|
1350
1353
|
angr/utils/dynamic_dictlist.py,sha256=bHQrxhUCkk6NDDzEBouAWESjMyKfQUJIk8g38R27iXw,3048
|
|
1351
1354
|
angr/utils/endness.py,sha256=wBcek3rwRQCYdMVFOV5h5q16Ahgjn2x_zZdPeZQEui0,501
|
|
1352
1355
|
angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
1353
1356
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1354
1357
|
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
1355
1358
|
angr/utils/funcid.py,sha256=dSGbKUWpTzy48374lJqHyRefJ6K7B7jRVhYHmpGmD3I,5256
|
|
1356
|
-
angr/utils/graph.py,sha256=
|
|
1359
|
+
angr/utils/graph.py,sha256=0A4NqNvWXxXMrzBENbeyDE8t78MZ01mzmGesZplA8OQ,30882
|
|
1357
1360
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1358
1361
|
angr/utils/library.py,sha256=z3rFYm7ePZTXNZJuKiQrR0SnlbVb-OzkX0t0U44nXDk,7181
|
|
1359
1362
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
@@ -1363,12 +1366,12 @@ angr/utils/segment_list.py,sha256=DulfCDdNETMehseRey64FkjmORQvoSyVd9eRZ4sQ7tw,21
|
|
|
1363
1366
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1364
1367
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1365
1368
|
angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
|
|
1366
|
-
angr/utils/ssa/__init__.py,sha256=
|
|
1369
|
+
angr/utils/ssa/__init__.py,sha256=ohP9IJh9ZvdVH8nH-ZrYA8hwIi8L98XQ6NMNL6q_pJ0,13649
|
|
1367
1370
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1368
|
-
angr/utils/ssa/vvar_uses_collector.py,sha256=
|
|
1369
|
-
angr-9.2.
|
|
1370
|
-
angr-9.2.
|
|
1371
|
-
angr-9.2.
|
|
1372
|
-
angr-9.2.
|
|
1373
|
-
angr-9.2.
|
|
1374
|
-
angr-9.2.
|
|
1371
|
+
angr/utils/ssa/vvar_uses_collector.py,sha256=O2aNZeM5DL8qatyhYuMhgbYGFp6Onm2yr9pKq1wRjA0,1347
|
|
1372
|
+
angr-9.2.144.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1373
|
+
angr-9.2.144.dist-info/METADATA,sha256=n6znfc4OJcs2jpsgUugSnCofX2ycjw0SO06dp2jjmF8,4909
|
|
1374
|
+
angr-9.2.144.dist-info/WHEEL,sha256=Lx-sdFDqPE4-U1ZJBxu6_gVwvG-VkpOo2FOkoSY7p5M,108
|
|
1375
|
+
angr-9.2.144.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1376
|
+
angr-9.2.144.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1377
|
+
angr-9.2.144.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|