angr 9.2.92__py3-none-manylinux2014_x86_64.whl → 9.2.94__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/cfg/cfg_base.py +20 -10
- angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py +1 -1
- angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +89 -32
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +276 -133
- angr/analyses/complete_calling_conventions.py +1 -1
- angr/analyses/decompiler/ail_simplifier.py +20 -0
- angr/analyses/decompiler/block_io_finder.py +293 -0
- angr/analyses/decompiler/block_similarity.py +190 -0
- angr/analyses/decompiler/callsite_maker.py +5 -0
- angr/analyses/decompiler/clinic.py +103 -1
- angr/analyses/decompiler/decompilation_cache.py +2 -0
- angr/analyses/decompiler/decompiler.py +21 -4
- angr/analyses/decompiler/optimization_passes/__init__.py +6 -0
- angr/analyses/decompiler/optimization_passes/code_motion.py +361 -0
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +1 -0
- angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py +30 -18
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +110 -0
- angr/analyses/decompiler/peephole_optimizations/bswap.py +53 -2
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +20 -1
- angr/analyses/decompiler/structured_codegen/c.py +76 -41
- angr/analyses/decompiler/structuring/phoenix.py +41 -9
- angr/analyses/decompiler/utils.py +13 -4
- angr/analyses/propagator/engine_ail.py +3 -0
- angr/analyses/reaching_definitions/engine_ail.py +3 -0
- angr/analyses/reaching_definitions/reaching_definitions.py +7 -0
- angr/analyses/stack_pointer_tracker.py +60 -10
- angr/analyses/typehoon/simple_solver.py +95 -24
- angr/analyses/typehoon/typeconsts.py +1 -1
- angr/calling_conventions.py +0 -3
- angr/engines/pcode/cc.py +1 -1
- angr/engines/successors.py +6 -0
- angr/knowledge_plugins/propagations/states.py +2 -1
- angr/procedures/definitions/glibc.py +3 -1
- angr/procedures/definitions/parse_win32json.py +2135 -383
- angr/procedures/definitions/wdk_ntoskrnl.py +956 -0
- angr/sim_type.py +53 -13
- angr/utils/library.py +2 -2
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/METADATA +6 -6
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/RECORD +44 -41
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/WHEEL +1 -1
- angr/procedures/definitions/wdk_ntdll.py +0 -994
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/LICENSE +0 -0
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/entry_points.txt +0 -0
- {angr-9.2.92.dist-info → angr-9.2.94.dist-info}/top_level.txt +0 -0
angr/sim_type.py
CHANGED
|
@@ -50,15 +50,25 @@ class SimType:
|
|
|
50
50
|
"""
|
|
51
51
|
self.label = label
|
|
52
52
|
|
|
53
|
-
def __eq__(self, other):
|
|
53
|
+
def __eq__(self, other, avoid=None):
|
|
54
54
|
if type(self) != type(other):
|
|
55
55
|
return False
|
|
56
56
|
|
|
57
57
|
for attr in self._fields:
|
|
58
58
|
if attr == "size" and self._arch is None and other._arch is None:
|
|
59
59
|
continue
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
attr_self = getattr(self, attr)
|
|
61
|
+
attr_other = getattr(other, attr)
|
|
62
|
+
if isinstance(attr_self, SimType):
|
|
63
|
+
if attr_other is attr_self:
|
|
64
|
+
return True
|
|
65
|
+
if avoid is not None and attr_self in avoid["self"] and attr_other in avoid["other"]:
|
|
66
|
+
continue
|
|
67
|
+
if not attr_self.__eq__(attr_other, avoid=avoid):
|
|
68
|
+
return False
|
|
69
|
+
else:
|
|
70
|
+
if attr_self != attr_other:
|
|
71
|
+
return False
|
|
62
72
|
|
|
63
73
|
return True
|
|
64
74
|
|
|
@@ -154,7 +164,7 @@ class TypeRef(SimType):
|
|
|
154
164
|
"""
|
|
155
165
|
return self._name
|
|
156
166
|
|
|
157
|
-
def __eq__(self, other):
|
|
167
|
+
def __eq__(self, other, avoid=None):
|
|
158
168
|
return type(other) is TypeRef and self.type == other.type
|
|
159
169
|
|
|
160
170
|
def __hash__(self):
|
|
@@ -1116,7 +1126,6 @@ class SimStruct(NamedTypeMixin, SimType):
|
|
|
1116
1126
|
|
|
1117
1127
|
self._pack = pack
|
|
1118
1128
|
self._align = align
|
|
1119
|
-
self._pack = pack
|
|
1120
1129
|
self.fields = fields
|
|
1121
1130
|
|
|
1122
1131
|
self._arch_memo = {}
|
|
@@ -1264,6 +1273,35 @@ class SimStruct(NamedTypeMixin, SimType):
|
|
|
1264
1273
|
def copy(self):
|
|
1265
1274
|
return SimStruct(dict(self.fields), name=self.name, pack=self._pack, align=self._align)
|
|
1266
1275
|
|
|
1276
|
+
def __eq__(self, other, avoid=None):
|
|
1277
|
+
if not isinstance(other, SimStruct):
|
|
1278
|
+
return False
|
|
1279
|
+
if not (
|
|
1280
|
+
self._pack == other._pack
|
|
1281
|
+
and self._align == other._align
|
|
1282
|
+
and self.label == other.label
|
|
1283
|
+
and self._name == other._name
|
|
1284
|
+
and self._arch == other._arch
|
|
1285
|
+
):
|
|
1286
|
+
return False
|
|
1287
|
+
# fields comparison that accounts for self references
|
|
1288
|
+
if not self.fields and not other.fields:
|
|
1289
|
+
return True
|
|
1290
|
+
keys_self = list(self.fields)
|
|
1291
|
+
keys_other = list(other.fields)
|
|
1292
|
+
if keys_self != keys_other:
|
|
1293
|
+
return False
|
|
1294
|
+
if avoid is None:
|
|
1295
|
+
avoid = {"self": {self}, "other": {other}}
|
|
1296
|
+
for key in keys_self:
|
|
1297
|
+
field_self = self.fields[key]
|
|
1298
|
+
field_other = other.fields[key]
|
|
1299
|
+
if field_self in avoid["self"] and field_other in avoid["other"]:
|
|
1300
|
+
continue
|
|
1301
|
+
if not field_self.__eq__(field_other, avoid=avoid):
|
|
1302
|
+
return False
|
|
1303
|
+
return True
|
|
1304
|
+
|
|
1267
1305
|
|
|
1268
1306
|
class SimStructValue:
|
|
1269
1307
|
"""
|
|
@@ -3253,7 +3291,9 @@ def dereference_simtype(
|
|
|
3253
3291
|
if real_type is None:
|
|
3254
3292
|
raise AngrMissingTypeError(f"Missing type {t.name}")
|
|
3255
3293
|
return dereference_simtype(real_type, type_collections, memo=memo)
|
|
3256
|
-
|
|
3294
|
+
|
|
3295
|
+
# the following code prepares a real_type SimType object that will be returned at the end of this method
|
|
3296
|
+
if isinstance(t, SimStruct):
|
|
3257
3297
|
if t.name in memo:
|
|
3258
3298
|
return memo[t.name]
|
|
3259
3299
|
|
|
@@ -3261,22 +3301,18 @@ def dereference_simtype(
|
|
|
3261
3301
|
memo[t.name] = real_type
|
|
3262
3302
|
fields = OrderedDict((k, dereference_simtype(v, type_collections, memo=memo)) for k, v in t.fields.items())
|
|
3263
3303
|
real_type.fields = fields
|
|
3264
|
-
return real_type
|
|
3265
3304
|
elif isinstance(t, SimTypePointer):
|
|
3266
3305
|
real_pts_to = dereference_simtype(t.pts_to, type_collections, memo=memo)
|
|
3267
3306
|
real_type = t.copy()
|
|
3268
3307
|
real_type.pts_to = real_pts_to
|
|
3269
|
-
return real_type
|
|
3270
3308
|
elif isinstance(t, SimTypeArray):
|
|
3271
3309
|
real_elem_type = dereference_simtype(t.elem_type, type_collections, memo=memo)
|
|
3272
3310
|
real_type = t.copy()
|
|
3273
3311
|
real_type.elem_type = real_elem_type
|
|
3274
|
-
return real_type
|
|
3275
3312
|
elif isinstance(t, SimUnion):
|
|
3276
3313
|
real_members = {k: dereference_simtype(v, type_collections, memo=memo) for k, v in t.members.items()}
|
|
3277
3314
|
real_type = t.copy()
|
|
3278
3315
|
real_type.members = real_members
|
|
3279
|
-
return real_type
|
|
3280
3316
|
elif isinstance(t, SimTypeFunction):
|
|
3281
3317
|
real_args = [dereference_simtype(arg, type_collections, memo=memo) for arg in t.args]
|
|
3282
3318
|
real_return_type = (
|
|
@@ -3284,9 +3320,13 @@ def dereference_simtype(
|
|
|
3284
3320
|
)
|
|
3285
3321
|
real_type = t.copy()
|
|
3286
3322
|
real_type.args = real_args
|
|
3287
|
-
real_type.
|
|
3288
|
-
|
|
3289
|
-
|
|
3323
|
+
real_type.returnty = real_return_type
|
|
3324
|
+
else:
|
|
3325
|
+
return t
|
|
3326
|
+
|
|
3327
|
+
if t._arch is not None:
|
|
3328
|
+
real_type = real_type.with_arch(t._arch)
|
|
3329
|
+
return real_type
|
|
3290
3330
|
|
|
3291
3331
|
|
|
3292
3332
|
if pycparser is not None:
|
angr/utils/library.py
CHANGED
|
@@ -170,7 +170,7 @@ def parsedcprotos2py(
|
|
|
170
170
|
if (func_name, i) in fd_spots:
|
|
171
171
|
proto_.args[i] = SimTypeFd(label=arg.label)
|
|
172
172
|
|
|
173
|
-
line1 = " " * 8 + "# " + decl + "\n"
|
|
173
|
+
line1 = " " * 8 + "#" + ((" " + decl) if decl else "") + "\n"
|
|
174
174
|
line2 = " " * 8 + repr(func_name) + ": " + (proto_._init_str() if proto_ is not None else "None") + "," + "\n"
|
|
175
175
|
s += line1 + line2
|
|
176
176
|
return s
|
|
@@ -205,7 +205,7 @@ def get_cpp_function_name(demangled_name, specialized=True, qualified=True):
|
|
|
205
205
|
if not qualified:
|
|
206
206
|
# remove leading namespaces
|
|
207
207
|
chunks = name.split("::")
|
|
208
|
-
name = "::".join(chunks[
|
|
208
|
+
name = "::".join(chunks[2:])
|
|
209
209
|
|
|
210
210
|
# remove arguments
|
|
211
211
|
if "(" in name:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.94
|
|
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.94
|
|
21
|
+
Requires-Dist: archinfo ==9.2.94
|
|
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.94
|
|
26
|
+
Requires-Dist: cle ==9.2.94
|
|
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.94
|
|
37
37
|
Requires-Dist: rich >=13.1.0
|
|
38
38
|
Requires-Dist: rpyc
|
|
39
39
|
Requires-Dist: sortedcontainers
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=YBYWpt8pXd8Hj8yfCxwO9o8Z-htdGYJD2RStv6-QI9Q,3992
|
|
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
|
|
5
5
|
angr/block.py,sha256=FnsFukbXhLzYPW5zJRXMxNmvCRU4LFlFIaJwo5sAqkY,14468
|
|
6
6
|
angr/callable.py,sha256=-E9HelavtRY1xPAxCVXl120H8Rb7Myd2IcrXtWZFAOU,6034
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=rmX8PyZxTSKu3cRhD9_Nvj4iGFuBEaChSK6S7MMoFlA,91291
|
|
8
8
|
angr/code_location.py,sha256=ow0Z8OF8FNBPZs4PUmRej_5aHaKTmUIanYPro3iHAMs,5476
|
|
9
9
|
angr/codenode.py,sha256=J_lZNz8akZzBI4ok0KpI1eNGvZbCt_quOAeUplaEB6I,3784
|
|
10
10
|
angr/errors.py,sha256=Hqc7StoAOW-0vQAJOlEyk2Xphe5mH1tUnZCfeoZURKc,8299
|
|
@@ -20,7 +20,7 @@ angr/sim_options.py,sha256=OuT01xS_F3ifBD9MAfZmNCnfjtTg0HulZlrKcs1LNSY,18057
|
|
|
20
20
|
angr/sim_procedure.py,sha256=1IysaiIIvI7pbzTUonS4_HqGRUdx-1jKFT8gSees3DA,26081
|
|
21
21
|
angr/sim_state.py,sha256=BhAKyfvoGfqpgAPYYT4j7drrkOdPy03ucBO7LKMz0s0,37826
|
|
22
22
|
angr/sim_state_options.py,sha256=lfP7ygngjGe0AGV5rkE24tvBazJBZG-RTdrKj4rL9XE,12530
|
|
23
|
-
angr/sim_type.py,sha256=
|
|
23
|
+
angr/sim_type.py,sha256=FRXDKIIeAsLlh_KtXonsWPjhnG5G3PdE4atTeJ9NIp4,121935
|
|
24
24
|
angr/sim_variable.py,sha256=VIpKm4lguu_bKokjq4UB6Q_30Ogz9J7XRBJuH62lW60,17228
|
|
25
25
|
angr/slicer.py,sha256=kbLKMAjf2kC6ov-OiGb95BqLmgV0QRl5mmEANcvzuAk,10640
|
|
26
26
|
angr/state_hierarchy.py,sha256=w_5Tl-7h9xUXBsIKZRAWw8Xh0we8GIAaN6nbKgYH_Qo,8467
|
|
@@ -37,7 +37,7 @@ angr/analyses/calling_convention.py,sha256=SUhTOm4UuZwxJtjb5p-pw7Lxnp_h0__Jty7wP
|
|
|
37
37
|
angr/analyses/cdg.py,sha256=OAnsjM1MgWXEToyOprxyWPTsn3BA_HBnrCXllB0h3h0,6361
|
|
38
38
|
angr/analyses/class_identifier.py,sha256=lA_r-AUoP8nFCKMbyCuca-AfV7rOdj0g-XCFdbS5G0w,2969
|
|
39
39
|
angr/analyses/code_tagging.py,sha256=_SnJd0FkE1ZXvv6uzxaoIACJANKCrGtK3nLWcuS7Lb0,3641
|
|
40
|
-
angr/analyses/complete_calling_conventions.py,sha256=
|
|
40
|
+
angr/analyses/complete_calling_conventions.py,sha256=qieFIULcDuWMCwu_C1Wz1bW_jsPbmfRywDMpDg69SqA,17719
|
|
41
41
|
angr/analyses/congruency_check.py,sha256=U3xBVim4pNSrnURqsFysipVIuGFWbqtxZ6nfRBfWaLY,16456
|
|
42
42
|
angr/analyses/datagraph_meta.py,sha256=75AVKJ8LIL4Id0nlz3Gf6XlruqarYyBX1WylxRvcAeQ,3386
|
|
43
43
|
angr/analyses/ddg.py,sha256=TNE3__wJHyr2zMFLCV-KM518BvTAXHS1RZclALrLePk,63426
|
|
@@ -52,7 +52,7 @@ angr/analyses/loopfinder.py,sha256=X8F4Dcu2UHDXt6JifK6EfROAeeczyca6V7zxx9z7GpQ,7
|
|
|
52
52
|
angr/analyses/proximity_graph.py,sha256=y30caPk5N4zOzkf8TF7AEOo0AR_yDhEFJrQB89_CTnM,16323
|
|
53
53
|
angr/analyses/reassembler.py,sha256=TCMyiW1IrKIuNaZCVRARwHpN39GHYDKaH5O3FsSmKlE,100412
|
|
54
54
|
angr/analyses/soot_class_hierarchy.py,sha256=Cs_LRV1RLXH6sF_E49tJWg9Inxvv_o5mB-VaIBcbQJg,8941
|
|
55
|
-
angr/analyses/stack_pointer_tracker.py,sha256=
|
|
55
|
+
angr/analyses/stack_pointer_tracker.py,sha256=zdVhuUE5qUX9WP9NU_NGngbu5OdyHgc9sAf3KHEr10M,29868
|
|
56
56
|
angr/analyses/static_hooker.py,sha256=g57k_fwxgS4oTzslyCpOf4faG17E685a4-4SpEz8Ges,1711
|
|
57
57
|
angr/analyses/veritesting.py,sha256=Mlx4EskA-bgNcj80U6rnkzoaGmX-Qwrg531CzsYKohs,25224
|
|
58
58
|
angr/analyses/vfg.py,sha256=YANIgMJDZYURpedlPB_TefaxxYp8RIL3szLqb6XyGS8,75256
|
|
@@ -63,18 +63,18 @@ angr/analyses/cfg/__init__.py,sha256=DRCry4KO2k5VJLyfxD_O6dWAdi21IUoaN5TqCnukJJs
|
|
|
63
63
|
angr/analyses/cfg/cfb.py,sha256=TqYdFau9ZH_m6cwkxbA35vDs2ES5rOFqfIuZi0lCBsQ,15450
|
|
64
64
|
angr/analyses/cfg/cfg.py,sha256=1JpPGlqXXRFwE0tk26xjabT_-dq-kqAxMv7o6-DUhp4,3146
|
|
65
65
|
angr/analyses/cfg/cfg_arch_options.py,sha256=YONHg6y-h6BCsBkJK9tuxb94DDfeOoy9CUS-LVyyDyg,3112
|
|
66
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
66
|
+
angr/analyses/cfg/cfg_base.py,sha256=RzXERr48Q6HO29A1saDKL5u9m7PxEx4Vy9f7IIHY4G8,122546
|
|
67
67
|
angr/analyses/cfg/cfg_emulated.py,sha256=Fi3rDN5ByxhO-H4Y7qn-3WZgBG12JGyvxcWmrD_FnFQ,152842
|
|
68
68
|
angr/analyses/cfg/cfg_fast.py,sha256=yk0JlrhfPbYsIVFEcLDoDYT-V8qb2t0YnN0gM-7SgYA,217618
|
|
69
69
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=eA_P-OY3gRRNj2BBgSPMsB_llGyFFCNW3VyGZ2uiMoM,26047
|
|
70
70
|
angr/analyses/cfg/cfg_job_base.py,sha256=3IQE_Iy17xtGfsIkrKc2ERIakAYiNdLtRb_jwOGQtHU,5989
|
|
71
71
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=T2rCpXy_fIoW_kHwZAVZupoj2UljitHvpI2uWJZ8NwU,361
|
|
72
|
-
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=
|
|
72
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=BgJyv5V2yEI2-CtvTP_8BxN-uVdT0Jz6B08MlZHSpdQ,2083
|
|
73
73
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=mMLQ5cUDjpGXD38Q4IAJW1VvsWSZOoyTR0Vv694zjc4,1777
|
|
74
|
-
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=
|
|
74
|
+
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=VhgIEDBSN6K_1pNHW1O23bOvc_gbi7bPpmlTGE7_5Uw,5231
|
|
75
75
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=BBLGAlVcXKqj4H3_0d4dIqdqJZc8aAqG83hTqMo2syM,5136
|
|
76
76
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=TyRIBvH8St1eHktpRrErD4zp8HKP3ppglfPuCEE0wg0,1441
|
|
77
|
-
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=
|
|
77
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=EpIaIcArXfz-zQ7UfZRO-WoZH2qj4OT7SO4yocjB1-s,101778
|
|
78
78
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=G3y7GYPxtuDQCwBz1eec-74YC87npLK6K2mtRPOsOqc,19350
|
|
79
79
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=--Xd8ZZTfoB6s6v0KIru-INgX6ilxccGXlECZ-9l5AU,880
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=2YyKPaXuWVbPwUQZcn0CKuba3ydYGIMT0Vxhy09kcV0,3019
|
|
@@ -89,16 +89,18 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=gM5d0rS9auFdvhCdGIG4MU
|
|
|
89
89
|
angr/analyses/data_dep/dep_nodes.py,sha256=BCpIPECRJhlX2sMO2LtaXxSD25-Edw2vXQOVcx5i55w,4650
|
|
90
90
|
angr/analyses/data_dep/sim_act_location.py,sha256=4f8jp-ahitxoHCCOSSFGJ1olvNWuHyiE6iOLa5DA0k4,1527
|
|
91
91
|
angr/analyses/decompiler/__init__.py,sha256=RkTvvTwAGpaLdGSTgXxVrKmGEDRxqLCNSB-b8fM6fBM,540
|
|
92
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
92
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=KAVRC5Gc_siv7gfBI7PKoIoavrHEckS2DgZnlgXq-p8,60491
|
|
93
93
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=sBz9Cn0GtdpuFt7R9y3oX6NFvETQTZRh6N80eM9ZdJQ,1595
|
|
94
|
+
angr/analyses/decompiler/block_io_finder.py,sha256=Y27ZNkrQp-QC7acnfsRpCzl5VQC7tDSeFmzemHclddI,10576
|
|
95
|
+
angr/analyses/decompiler/block_similarity.py,sha256=x7DTJw6QKrXaPmI0Oxhl2V6rMDhQufHF0Zo5PkIr-xA,6531
|
|
94
96
|
angr/analyses/decompiler/block_simplifier.py,sha256=X5kO97A1bEwSUfbwgj1cSO56qkhwPQZnIFi1DKMZQoo,17199
|
|
95
97
|
angr/analyses/decompiler/call_counter.py,sha256=V3TIaSvLUy9vLEWErnvlCS--_ubGWQAeU0tqq6XYeOU,1205
|
|
96
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
97
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
98
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=W389gPmq8ylVIr38Re5hEBhaLodipT6div4RlirdnEU,15083
|
|
99
|
+
angr/analyses/decompiler/clinic.py,sha256=vPrZgxk41yha0Tveq_0Z5uPu6hla_XmJ63sywmqfyL0,86919
|
|
98
100
|
angr/analyses/decompiler/condition_processor.py,sha256=e1WlxSr8FbtXi9qLHfvfBgUU-GKkoDSYUgMojHP9lBQ,49091
|
|
99
|
-
angr/analyses/decompiler/decompilation_cache.py,sha256=
|
|
101
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=xj5kzGV6OlTtXIIcvK0Z17TMunggn9ilgKD3wjDiTB0,1176
|
|
100
102
|
angr/analyses/decompiler/decompilation_options.py,sha256=vbuLF0Oze2ldFNpv2jWFnGG4sJPey527KAAbj9TRvAI,8240
|
|
101
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
103
|
+
angr/analyses/decompiler/decompiler.py,sha256=aMPLdXg5NGyAZZCAg9CN6lPX8E27GYn53Oi6_wfMx4I,21270
|
|
102
104
|
angr/analyses/decompiler/empty_node_remover.py,sha256=KhH88_x3A1nR22H3wrdp1gznLuFH12IBLaay4Xa3Law,7368
|
|
103
105
|
angr/analyses/decompiler/expression_counters.py,sha256=P4RbtnyEy2lJnNUw_G702W-AIGaL4MszZ5fdrritwwg,2867
|
|
104
106
|
angr/analyses/decompiler/expression_narrower.py,sha256=64VR1xdPVVoCLHOYRPacV9ecQb33rP7nC1l8rpFxTkg,3545
|
|
@@ -110,12 +112,13 @@ angr/analyses/decompiler/redundant_label_remover.py,sha256=kDGGFWWV61I5fbASiTQTH
|
|
|
110
112
|
angr/analyses/decompiler/region_identifier.py,sha256=AfmnHLkVuaxUrFwabQMr_tymcueTkZV0Iv6s504Bm1k,44774
|
|
111
113
|
angr/analyses/decompiler/region_walker.py,sha256=lTfweYbY4_a2f2yGztTKG6JtU1jXf-kaz-NHbX9nkXE,717
|
|
112
114
|
angr/analyses/decompiler/sequence_walker.py,sha256=mw4RG-Act5_no_RyQcsxWZwva-n7FdH2a7w_uItGUpI,8428
|
|
113
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
115
|
+
angr/analyses/decompiler/utils.py,sha256=nNI4Vr24MokoMnNIbekidObT5YWRNes3wYCUT6klzNQ,26782
|
|
114
116
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=wbWqZ8xG6ZvzEApkAwMsNQFC-iwF3swG1YJsaf1cIrQ,102
|
|
115
117
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=PjfduEkFVcSBKUfGouVM5dekA4kO4OBUses58ewJnCk,20488
|
|
116
118
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=gWezEKB7A_YnlfUDs8V8D5syoYAyIXSIme1BKQRoouM,498
|
|
117
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
119
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=FJTT87hruaLhZk2tvfUxgvrI8k8Mut9-Wkxp86EVQYA,3512
|
|
118
120
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=bjpEMW-Lqj5XW9NWUikGPcRn5scKNc8VvEjVMXxAuq8,5289
|
|
121
|
+
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=KEQPdpSfSYiIzHFYGkfj3W8ZupJbogQNhYnYKzo1xUA,15319
|
|
119
122
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=FEoiprXxns-3S0nFaIWm2DBW_aDMq3GZ-VOG3CIqcMw,10593
|
|
120
123
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=CP-WjyQGOw_mnUF0ZpC5C4syMxlx4Tvy0T_EIZQxXrY,4033
|
|
121
124
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=J7LRc3-DKfToxKVejnkHbNel9_56-7xsGyJJiTCwqsQ,17442
|
|
@@ -127,12 +130,13 @@ angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=l571
|
|
|
127
130
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=9hhCcvE15MCM6KoJU1ba11hFiN6MXxYAb9FbntzYJbg,34328
|
|
128
131
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=o2AZIpj4NpOAaWOGbudDUfGJJAD2exu-HvNbwph3mi8,3124
|
|
129
132
|
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=_63Y2vMNLSXYM6_Grfs89Nu63i5YLxTPmxTR_Z6fwLY,10420
|
|
130
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
133
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=G18xmfMgDSnqTCp1buG3YK0zoHKaMb43YJnpclDEYBQ,13452
|
|
131
134
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=2_-nVKkvClCDykVDd29CRIT1ZCPdYBlSi96h9yrSOw4,7398
|
|
132
135
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=_sTaGMQMFa5ATQIvNyL05UK8gCi_SaOckrZKyHZ2vfs,6470
|
|
133
136
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=BwD92mD25Qx3nYqG-XTTgorL1hl_JqZ9YRM5xuGHJac,7828
|
|
134
137
|
angr/analyses/decompiler/optimization_passes/return_duplicator.py,sha256=R4IctfmZZpmW00nYE0vG088Zc9kVGL-bfG9Hnezz7Jc,20832
|
|
135
|
-
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=
|
|
138
|
+
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=csNKaA4dAP5bIYzC29z67nHKNKzDShcauPuapY4rmF4,12559
|
|
139
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=U9XIMXWYI_UHTamKHdjdXP4QVBvi386SSI0f2KoHu3I,4523
|
|
136
140
|
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=tIMZ4kDutUY-5jFrfA34tf3NufE7n33PcAlxz_mSebE,12304
|
|
137
141
|
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=lwLc9QpOCTdSIb-0SK0hdxi2gzpABTk2kzdwBY20UOo,2980
|
|
138
142
|
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=pe_zErF540hOybDNC0ij9B3ASQOck9PYNa64hzSEp3U,3208
|
|
@@ -148,13 +152,13 @@ angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha25
|
|
|
148
152
|
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=eiUgxcBVAL6PiI3ZuR6xZMNrWGDHKXO6SZSjUbM_BVw,1065
|
|
149
153
|
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=oocs8xmntUNzI7UUG8UFPCDheda3xAb99REPAkD7ins,1298
|
|
150
154
|
angr/analyses/decompiler/peephole_optimizations/bool_expr_xor_1.py,sha256=QANf71L2nDvQJQ2opXVDI8kkZvVPfMmmQcjHlqqPYP8,991
|
|
151
|
-
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=
|
|
155
|
+
angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=5u1R-kIyCxDw4oMNnbLhaE9rUiJ_atwDaMoefzpTmAg,6238
|
|
152
156
|
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=9ogHTcP4vhFfwDzxccnjfhkizKGvM_7tK3y6PqyG5Hg,1020
|
|
153
157
|
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=KLdhgU_e1OglEeC7IHipql9UzYpatJc0LydXJJIakL4,3691
|
|
154
158
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=AE2jC2HHMNWApBw_2EnORMicr4A0Gt2Trl6tSqunC9g,1583
|
|
155
159
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=vzROAUvKUrQQmwUXJ-0WyFr1v5f8EPBgjeXIpWhtDak,2578
|
|
156
160
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=0IHIk7uxIC70140k3VcXlnx4QcunAeoETXF1ZgJi2Pk,2070
|
|
157
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=
|
|
161
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=A0AUf60c047X7VhOr7tTAJE95qS3yiUxE1dYr9maA-8,10131
|
|
158
162
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=ymP9tDU4NipGOdFWsmLHrR6dKVcEFiaTgM1-L_dfmOM,2015
|
|
159
163
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=x8ZS-ThnUiJPBacRFpOZ3gBqixamrHSCCZSR-L5jyC8,2601
|
|
160
164
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=vrXAaYKT99LJK5BLKlyQ7xtzQx6hIujqTAv0-Ur1CWo,4676
|
|
@@ -193,12 +197,12 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
|
193
197
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
|
|
194
198
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=Glc4jBCr7lZckltN9XZdSvMrGHf0swXFyKTr_QQKdWE,290
|
|
195
199
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=nJPOoeJCbewchYdXjSE4S2b1-WN6pT3TxmCQMDO0azw,3845
|
|
196
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
200
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=meO03ptZEibgcvJg_Nt6NjFASTMtu0CQKYxbiym0wFA,134477
|
|
197
201
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
|
|
198
202
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
|
|
199
203
|
angr/analyses/decompiler/structuring/__init__.py,sha256=eSiT6xUpv9K5-enK3OZj2lNzxwowS9_5OTrjHiPgfFs,371
|
|
200
204
|
angr/analyses/decompiler/structuring/dream.py,sha256=xsFPPl0L7nu8ejugCm8FbJUCgYcnCMUCAJQTzNQDLIo,48400
|
|
201
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
205
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=VpNgU8Hq-qnVzWgRfY0CDLR8KfhpoLrH3Caif-XYoUw,118561
|
|
202
206
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=5DFQTjM6F80YY5W8B2CjemSxubWW2xW5f8vXSbNA2iw,5829
|
|
203
207
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=zn_nosvSNEjOAypEsz72LU5rMBahOJGquz6BqJiuqvo,41101
|
|
204
208
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=PE_byL1mxj811MMM-qQWzSaITtcu5Xn0ZKz0yobnK-k,11964
|
|
@@ -242,7 +246,7 @@ angr/analyses/identifier/functions/strncmp.py,sha256=XlqTTLjfPRj7LSw3-xHoH4SJyNi
|
|
|
242
246
|
angr/analyses/identifier/functions/strncpy.py,sha256=1WUrhXMS5Sd5rfgBJbChZD_BZ_D47Z_H4AZwriyqDO0,2008
|
|
243
247
|
angr/analyses/identifier/functions/strtol.py,sha256=Py_6Y9rR5dfy53LX8w9WktSBaxdyPlbrcLEiV6cWfHs,2426
|
|
244
248
|
angr/analyses/propagator/__init__.py,sha256=5-UKSiAtYocLzmQWXPzxyBnPui_c8P_r617KDwtRnNw,43
|
|
245
|
-
angr/analyses/propagator/engine_ail.py,sha256=
|
|
249
|
+
angr/analyses/propagator/engine_ail.py,sha256=JM6v2XPpeMKyA1SmyKUlkmGEj0k22D-O9HyXh7E-qYo,67261
|
|
246
250
|
angr/analyses/propagator/engine_base.py,sha256=0j5NzJ9jArF4KeysBeiPoo_RKyCvlgn-i3inSZt1cyc,1735
|
|
247
251
|
angr/analyses/propagator/engine_vex.py,sha256=BthcZPPizwrCfPe4P6ycZ8bNAT8YN0h5gAmR-8UqpLE,12491
|
|
248
252
|
angr/analyses/propagator/outdated_definition_walker.py,sha256=OJnI9rlyutyy2qHMTqnrnQJCXKcBHvgwHfiqlWDECiY,6890
|
|
@@ -254,21 +258,21 @@ angr/analyses/propagator/vex_vars.py,sha256=O0W7GekEZIVwiNiOdyu-BuxCZmHFZPh_ho7j
|
|
|
254
258
|
angr/analyses/reaching_definitions/__init__.py,sha256=3itfNz4b0XcTDJJbU10gZfSuqUAx0s8poicXhXZUpys,1989
|
|
255
259
|
angr/analyses/reaching_definitions/call_trace.py,sha256=5y8VtU-5-2ISamCkok6zoMahWASO2TBQYl5Q0pgeLGw,2217
|
|
256
260
|
angr/analyses/reaching_definitions/dep_graph.py,sha256=M4P5jyA7nVrWk9oEOB5EQUtGIf-eKCevwhH3uj-O7rQ,14886
|
|
257
|
-
angr/analyses/reaching_definitions/engine_ail.py,sha256=
|
|
261
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=eF7gssByVe8vcj6cIIdbANewhf3Gafu7AAx5XUMhVj0,46120
|
|
258
262
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=CvxXI4pVX7K_IhbWMGL-cNcfS2qEaAF-s4LGopb_yHs,42097
|
|
259
263
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
260
264
|
angr/analyses/reaching_definitions/function_handler.py,sha256=TB6yW0TBQnTdAv3SOBcui6dSCBMoviivKx0v8COY12w,26839
|
|
261
265
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=L7LCcE-QvLd_vuc0slWmQ6X73wkYNMkUEDy1cJAV818,2634
|
|
262
266
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=dZxm8H37NPJdugHS_0R2ylujjWcvUj_nBaMf1z6bjbA,11224
|
|
263
267
|
angr/analyses/reaching_definitions/rd_state.py,sha256=iruxr8VqKN47UgH3AL3JrB1r7vAY72dz-0iFETz-0do,23537
|
|
264
|
-
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=
|
|
268
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=7D85eBYpj9-k3quJLm2GFufB9NUyClsRak6ROp6D5qM,23438
|
|
265
269
|
angr/analyses/reaching_definitions/subject.py,sha256=GVaI1jM-Nv2MWaCjJ-Q_54nSS3hvAaZthz14AJJNq-A,1995
|
|
266
270
|
angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
|
|
267
271
|
angr/analyses/typehoon/dfa.py,sha256=TdA5ts4-0xQtccJdz1fMPATIKV-gWgXqmKkTM338b-g,3519
|
|
268
272
|
angr/analyses/typehoon/lifter.py,sha256=3RogUtd8O6txb7_UAjbI7Bn1hc38oP_LsRYyBsPsEzg,2805
|
|
269
|
-
angr/analyses/typehoon/simple_solver.py,sha256=
|
|
273
|
+
angr/analyses/typehoon/simple_solver.py,sha256=G7qQ-7vd2eJr9I6c_Vx5D27z3F949N1sFcj0kGIEe6E,48619
|
|
270
274
|
angr/analyses/typehoon/translator.py,sha256=K3m0x0pDqp29YXS8BPLMbDmWdFpKHt3US1eBbAqM0bc,8610
|
|
271
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
275
|
+
angr/analyses/typehoon/typeconsts.py,sha256=XH31Xr2M-oJFdeLiIkyCN7kWin2ad3KIBG14I3VWDv4,7030
|
|
272
276
|
angr/analyses/typehoon/typehoon.py,sha256=2VO2pCulrwgZncxRN6nJvNQozaDUsz98kt94boDoniY,9353
|
|
273
277
|
angr/analyses/typehoon/typevars.py,sha256=yZX2rdbHMPdsZXD-HJlbULVkUaXESqzv_ajxgHPzPUA,15783
|
|
274
278
|
angr/analyses/typehoon/variance.py,sha256=VPuBrPmbw5RgNG5SUTNFEd5rr4v3V_qD1vgilqWvdrs,158
|
|
@@ -319,7 +323,7 @@ angr/engines/engine.py,sha256=kyZQnxjTLSqn6GM8OEBlfc6M0FML3dO2aJJj7-bKItQ,8109
|
|
|
319
323
|
angr/engines/failure.py,sha256=zZw_7cYCkxrVhJ-gWb9apNV6cAf4pqKESDPrQdd1Mpg,996
|
|
320
324
|
angr/engines/hook.py,sha256=_dobnJ3m3F0FPHWbv82ZS5fyNmSt-wuNzMlZ-81sRgc,2546
|
|
321
325
|
angr/engines/procedure.py,sha256=dEvCtpS7-LLfr1OX3LT4_4QFyW7Wgt13UtHuAXowDSs,2515
|
|
322
|
-
angr/engines/successors.py,sha256=
|
|
326
|
+
angr/engines/successors.py,sha256=uwDz7vhLObuu8TX_zLfLSVqu_vCiPG1SaSHqtBJEt30,23679
|
|
323
327
|
angr/engines/syscall.py,sha256=LNMC3zyis3OiWC7_8Zn1blMw1EDib5FjUqepXlaWDTI,2177
|
|
324
328
|
angr/engines/unicorn.py,sha256=gf7LjjWyaaujqSuCq3d-BGm8t5sdZjzsJeBevGfdiLw,24447
|
|
325
329
|
angr/engines/light/__init__.py,sha256=j9vH2fU9MaNVQ8NT3Ek3Tj2zkGlVxlKyzia8zVTofYs,186
|
|
@@ -327,7 +331,7 @@ angr/engines/light/data.py,sha256=jZBAJxor2zg5m4s63joSrjUs8H-OeHBZiqZmc3dqEQQ,23
|
|
|
327
331
|
angr/engines/light/engine.py,sha256=19FLnb5xu_KKZGbQFc2pwdSoYWjQn0KBccp1lXfETS4,40791
|
|
328
332
|
angr/engines/pcode/__init__.py,sha256=UwMEwXQvHXIIgedJn2ZOvBBEgfHg2rfREBSpcTSXCZ4,83
|
|
329
333
|
angr/engines/pcode/behavior.py,sha256=gwMFXQ3cibqchRHnRfiVzzzLIg2mgX-2XJlkD82p8J0,28720
|
|
330
|
-
angr/engines/pcode/cc.py,sha256=
|
|
334
|
+
angr/engines/pcode/cc.py,sha256=lwMeO9Mg8L7-uxxPzYmu13n7YLNo-Sr3xxLk_-QHTOU,2994
|
|
331
335
|
angr/engines/pcode/emulate.py,sha256=N8d6iQKSpX-Q8b4BurBWbpeqGePcAtdvE8x7-ojJzcQ,16718
|
|
332
336
|
angr/engines/pcode/engine.py,sha256=RdZZeKF0kHq94uwtZ6DYl43UJXyAhSie9M2ChVcVT4Y,10551
|
|
333
337
|
angr/engines/pcode/lifter.py,sha256=N1Ui-BBY3Y6KhuwjOwJSthm4EaxksglAvReCXQGNLu8,52362
|
|
@@ -463,7 +467,7 @@ angr/knowledge_plugins/propagations/__init__.py,sha256=YOHJ2PMz-egzFMA2H0eKa5FDM
|
|
|
463
467
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=pfRYRHb1wEEhrSiSlOzuZDY9ZHeIQZM2yjA3JazPs_8,7706
|
|
464
468
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=5DohQ6GiLmRfA4whx7dsKImBLCajQnLBwKieddf55J0,2112
|
|
465
469
|
angr/knowledge_plugins/propagations/propagation_model.py,sha256=rK5qbWREPpUtEzOBRFn2bZviN6Ux-HlN0zF_inlg104,2786
|
|
466
|
-
angr/knowledge_plugins/propagations/states.py,sha256
|
|
470
|
+
angr/knowledge_plugins/propagations/states.py,sha256=sPoi5iT_B6_lsD1dEW7iWXGIIMWmDuaGuZpRhR9yXNg,38297
|
|
467
471
|
angr/knowledge_plugins/structured_code/__init__.py,sha256=9edAAAVroOR8nNBThuRjOnjVUIqavnObO7mlUttxInA,43
|
|
468
472
|
angr/knowledge_plugins/structured_code/manager.py,sha256=ov4BUMuYANS8Lz2QhmXgAo5wpGlWU9AmcTQcgYbD0HE,2126
|
|
469
473
|
angr/knowledge_plugins/sync/__init__.py,sha256=RN3y0UhYax-GdPyAhondMXEBuWIu-enHjxjpdTKhQ58,44
|
|
@@ -502,14 +506,14 @@ angr/procedures/cgc/receive.py,sha256=qNi7ZX-411q3i-j4z-ylo6jPP5oCky--IP_CyTScWH
|
|
|
502
506
|
angr/procedures/cgc/transmit.py,sha256=CSWX4FLeW2-42_QVo2FMdmV9GJuYqgtTybtYbcMgDCQ,2368
|
|
503
507
|
angr/procedures/definitions/__init__.py,sha256=qRyGAsHAqpJrTZLTNi7iYp3_Drw3rIJTxK32Rkr3Gy4,32023
|
|
504
508
|
angr/procedures/definitions/cgc.py,sha256=tEYT-9MOmlBxehMYP32Fog9t8GczMdA84ienDwcPdyM,460
|
|
505
|
-
angr/procedures/definitions/glibc.py,sha256=
|
|
509
|
+
angr/procedures/definitions/glibc.py,sha256=PGC-uR3X_hd9Oe43Mi0lgrsrTR9r83ANCjL7iPbLxEE,394191
|
|
506
510
|
angr/procedures/definitions/gnulib.py,sha256=fH8KbaUj6bVOG_cv-JiaffWkVN-YHFbWwvRlE8Mkr9c,1081
|
|
507
511
|
angr/procedures/definitions/libstdcpp.py,sha256=lhV3EGR45spEo_vNFNw2vIdPJWdByqar_sP9dFZMvKs,700
|
|
508
512
|
angr/procedures/definitions/linux_kernel.py,sha256=uaTTlulqv2eeUmIkQ70-pvLT2-ay7rqMBjPazhh5RbQ,238887
|
|
509
513
|
angr/procedures/definitions/linux_loader.py,sha256=sW7eQ7Dk2co_9x0ql-YsWYB8JYs0YQjGz-IM_ukp5c4,219
|
|
510
514
|
angr/procedures/definitions/msvcr.py,sha256=9Wvo9U8ARM93oYmID5pBSCAr9Yg0TxjXAj7Gi_Lks2s,601
|
|
511
515
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=9OcLLDNrNb6CifvveD_yTzfhMYEN2iK46nNNjMyz3I0,1795
|
|
512
|
-
angr/procedures/definitions/parse_win32json.py,sha256=
|
|
516
|
+
angr/procedures/definitions/parse_win32json.py,sha256=bJS0VbmEJF7MK4Izvh2gOZIXgX072xSiboyoq5r6CPY,110573
|
|
513
517
|
angr/procedures/definitions/types_win32.py,sha256=qo5Vh25aaeDml3D3rYkO5CbGi0BlQBy8AyfOqdaecZk,9998064
|
|
514
518
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=PvcLMC7TrVeOI0XJoDf5bWLxzMY7gpIyLL3w9lox2BE,1458
|
|
515
519
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=UjArSNz8EBS6WjoxSK9y3tG2xssecJVUuWRtx_gPZNQ,1000
|
|
@@ -521,8 +525,7 @@ angr/procedures/definitions/wdk_gdi32.py,sha256=slW_WU1BnNsn5AaShThLmf3aaEsza8Um
|
|
|
521
525
|
angr/procedures/definitions/wdk_hal.py,sha256=m2-I9QLtUyWFx2TTtyqJa9b-nsU_j_czTtJAkjrZtB8,11415
|
|
522
526
|
angr/procedures/definitions/wdk_ksecdd.py,sha256=hlOgA0l8dQushmuSqJpLO-6DS2A5zqrvHrMJX9t5q_0,12527
|
|
523
527
|
angr/procedures/definitions/wdk_ndis.py,sha256=QtEEVXKaTE7vi8EYlOXqqoT6Ma8B9qMCmIfHeY69LGI,33948
|
|
524
|
-
angr/procedures/definitions/
|
|
525
|
-
angr/procedures/definitions/wdk_ntoskrnl.py,sha256=I56Exc1cF2pAgaCmfj19YoeNLa5mdZojx5YBH0TP2dQ,396252
|
|
528
|
+
angr/procedures/definitions/wdk_ntoskrnl.py,sha256=8D2Da48v1NzhJfggVTBl9gNyS4_8IWukCZtVW-DM4GA,593050
|
|
526
529
|
angr/procedures/definitions/wdk_offreg.py,sha256=L7QQTDwpnEyEcUpHFkDPBlIsDIuY9BEch4rOUHw8XVA,9862
|
|
527
530
|
angr/procedures/definitions/wdk_pshed.py,sha256=Gp58kRv7OK_iNJB-s4FU_5JyAzJ_AtvvbBVgR6-v_CA,1980
|
|
528
531
|
angr/procedures/definitions/wdk_secur32.py,sha256=n9Ofl1MWd0cjfssS0oc3qNgneczu589A-_jWQOl4awM,3478
|
|
@@ -1274,15 +1277,15 @@ angr/utils/formatting.py,sha256=QOw75CLSrttGTn2aYQzBFIBhZj40J9ESQZxJOz0BexA,4217
|
|
|
1274
1277
|
angr/utils/funcid.py,sha256=PCOvMfRrt70Es1cMlVqKFVCmHfELXQHvX08Uqabn7Nk,5006
|
|
1275
1278
|
angr/utils/graph.py,sha256=z36Q_bitE9yu0CFRhrRAj6hAWe-dSvzJvDHgqz6tJMQ,28417
|
|
1276
1279
|
angr/utils/lazy_import.py,sha256=VgN0-cMsr6XdGIq56Js1X8YecfPdW9Z4NrB3d2jD-5Y,308
|
|
1277
|
-
angr/utils/library.py,sha256=
|
|
1280
|
+
angr/utils/library.py,sha256=F4kRDknex_N4313vpEc7Ra6yROcpj0zhdKEI8cYOJuo,7202
|
|
1278
1281
|
angr/utils/loader.py,sha256=QdkatPiyRfz5KdfCzRI1Xp3TJL_Pa75wY0dsILgMbwk,1944
|
|
1279
1282
|
angr/utils/mp.py,sha256=xSWDnZdkLaTwGXntuSDwb2tIqMsIxJpmLrxd_YWBILw,1822
|
|
1280
1283
|
angr/utils/segment_list.py,sha256=lhGy16YKKaD-F0JtWmjJ6a2RFcdTrKcLfPE9ILRVtCs,20431
|
|
1281
1284
|
angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
|
|
1282
1285
|
angr/utils/typing.py,sha256=_I4dzZSh1_uRKQ3PpjXseA_CaJH6ru2yAxjICkJhfmI,417
|
|
1283
|
-
angr-9.2.
|
|
1284
|
-
angr-9.2.
|
|
1285
|
-
angr-9.2.
|
|
1286
|
-
angr-9.2.
|
|
1287
|
-
angr-9.2.
|
|
1288
|
-
angr-9.2.
|
|
1286
|
+
angr-9.2.94.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1287
|
+
angr-9.2.94.dist-info/METADATA,sha256=7It2axu6lfZ7hxe-QFdVxuUzPb7OeMS76hWalXot63w,4796
|
|
1288
|
+
angr-9.2.94.dist-info/WHEEL,sha256=eqK0rWjSY7_bgNbVXZVO2Wi8Tj4K-w2xVOdGmXi88ck,109
|
|
1289
|
+
angr-9.2.94.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1290
|
+
angr-9.2.94.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1291
|
+
angr-9.2.94.dist-info/RECORD,,
|