angr 9.2.96__py3-none-manylinux2014_x86_64.whl → 9.2.98__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 +14 -1
- angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py +10 -6
- angr/analyses/complete_calling_conventions.py +27 -11
- angr/analyses/decompiler/ail_simplifier.py +20 -8
- angr/analyses/decompiler/condition_processor.py +2 -0
- angr/analyses/decompiler/optimization_passes/__init__.py +2 -0
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +380 -0
- angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py +4 -1
- angr/analyses/decompiler/peephole_optimizations/__init__.py +1 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +71 -3
- angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py +162 -0
- angr/analyses/decompiler/structured_codegen/__init__.py +1 -1
- angr/analyses/decompiler/structured_codegen/c.py +72 -99
- angr/analyses/decompiler/utils.py +5 -1
- angr/analyses/find_objects_static.py +15 -10
- angr/analyses/forward_analysis/forward_analysis.py +15 -1
- angr/analyses/propagator/engine_ail.py +2 -0
- angr/analyses/propagator/engine_vex.py +15 -0
- angr/analyses/propagator/propagator.py +6 -3
- angr/analyses/reaching_definitions/engine_vex.py +6 -0
- angr/analyses/reaching_definitions/rd_state.py +14 -1
- angr/analyses/reaching_definitions/reaching_definitions.py +19 -2
- angr/analyses/variable_recovery/engine_ail.py +6 -6
- angr/analyses/variable_recovery/engine_vex.py +6 -0
- angr/analyses/variable_recovery/irsb_scanner.py +12 -0
- angr/analyses/variable_recovery/variable_recovery_base.py +4 -1
- angr/engines/light/engine.py +134 -16
- angr/knowledge_plugins/functions/function.py +4 -0
- angr/knowledge_plugins/key_definitions/environment.py +11 -0
- angr/knowledge_plugins/key_definitions/live_definitions.py +41 -8
- angr/knowledge_plugins/key_definitions/uses.py +18 -4
- angr/knowledge_plugins/propagations/states.py +22 -3
- angr/knowledge_plugins/types.py +6 -0
- angr/knowledge_plugins/variables/variable_manager.py +31 -5
- angr/simos/simos.py +2 -0
- angr/storage/memory_mixins/__init__.py +3 -0
- angr/storage/memory_mixins/multi_value_merger_mixin.py +22 -11
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +20 -2
- angr/storage/memory_mixins/paged_memory/pages/list_page.py +20 -5
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +82 -44
- angr/storage/memory_mixins/simple_interface_mixin.py +4 -0
- angr/utils/cowdict.py +4 -2
- angr/utils/funcid.py +6 -0
- angr/utils/mp.py +1 -1
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/METADATA +6 -6
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/RECORD +51 -49
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/LICENSE +0 -0
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/WHEEL +0 -0
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/entry_points.txt +0 -0
- {angr-9.2.96.dist-info → angr-9.2.98.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# pylint:disable=abstract-method,arguments-differ
|
|
1
|
+
# pylint:disable=abstract-method,arguments-differ,assignment-from-no-return
|
|
2
2
|
import logging
|
|
3
|
-
from typing import Optional, List, Set, Tuple, Union, Callable
|
|
3
|
+
from typing import Optional, List, Set, Tuple, Union, Callable, Any, FrozenSet
|
|
4
4
|
|
|
5
5
|
from angr.utils.dynamic_dictlist import DynamicDictList
|
|
6
6
|
from .....storage.memory_object import SimMemoryObject, SimLabeledMemoryObject
|
|
@@ -166,40 +166,58 @@ class MVListPage(
|
|
|
166
166
|
continue
|
|
167
167
|
l.debug("... on byte 0x%x", b)
|
|
168
168
|
|
|
169
|
-
|
|
169
|
+
memory_object_sets: Set[Tuple[FrozenSet[SimMemoryObject], Any]] = set()
|
|
170
170
|
unconstrained_in = []
|
|
171
171
|
|
|
172
|
-
# first get a list of all memory objects at that location, and
|
|
173
|
-
|
|
172
|
+
# first get a list of all memory objects at that location, and all memories that don't have those bytes
|
|
173
|
+
self_has_memory_object_set = False
|
|
174
174
|
for sm, fv in zip(all_pages, merge_conditions):
|
|
175
175
|
if sm._contains(b, page_addr):
|
|
176
176
|
l.info("... present in %s", fv)
|
|
177
|
+
memory_objects = set()
|
|
177
178
|
for mo in sm.content_gen(b):
|
|
178
179
|
if mo.includes(page_addr + b):
|
|
179
|
-
memory_objects.
|
|
180
|
+
memory_objects.add(mo)
|
|
181
|
+
memory_object_sets.add((frozenset(memory_objects), fv))
|
|
182
|
+
if sm is self:
|
|
183
|
+
self_has_memory_object_set = True
|
|
180
184
|
else:
|
|
181
185
|
l.info("... not present in %s", fv)
|
|
182
186
|
unconstrained_in.append((sm, fv))
|
|
183
187
|
|
|
184
|
-
if not
|
|
188
|
+
if not memory_object_sets:
|
|
189
|
+
continue
|
|
190
|
+
if self_has_memory_object_set and len(memory_object_sets) == 1:
|
|
185
191
|
continue
|
|
186
192
|
|
|
187
|
-
|
|
188
|
-
mo_bases =
|
|
189
|
-
mo_lengths =
|
|
190
|
-
endnesses =
|
|
191
|
-
|
|
192
|
-
|
|
193
|
+
mo_sets = {mo_set for mo_set, _ in memory_object_sets}
|
|
194
|
+
mo_bases = set()
|
|
195
|
+
mo_lengths = set()
|
|
196
|
+
endnesses = set()
|
|
197
|
+
for mo_set in mo_sets:
|
|
198
|
+
for mo in mo_set:
|
|
199
|
+
mo_bases.add(mo.base)
|
|
200
|
+
mo_lengths.add(mo.length)
|
|
201
|
+
endnesses.add(mo.endness)
|
|
202
|
+
|
|
203
|
+
if not unconstrained_in and not (mo_sets - merged_objects): # pylint:disable=superfluous-parens
|
|
193
204
|
continue
|
|
194
205
|
|
|
195
206
|
# first, optimize the case where we are dealing with the same-sized memory objects
|
|
196
207
|
if len(mo_bases) == 1 and len(mo_lengths) == 1 and not unconstrained_in and len(endnesses) == 1:
|
|
208
|
+
if len(memory_object_sets) == 1:
|
|
209
|
+
# nothing to merge!
|
|
210
|
+
continue
|
|
211
|
+
|
|
197
212
|
the_endness = next(iter(endnesses))
|
|
198
|
-
to_merge = [
|
|
213
|
+
to_merge = []
|
|
214
|
+
for mo_set, fv in memory_object_sets:
|
|
215
|
+
for mo in mo_set:
|
|
216
|
+
to_merge.append((mo.object, fv))
|
|
199
217
|
|
|
200
218
|
# Update `merged_to`
|
|
201
219
|
mo_base = list(mo_bases)[0]
|
|
202
|
-
mo_length =
|
|
220
|
+
mo_length = next(iter(mo_lengths))
|
|
203
221
|
size = min(mo_length - (page_addr + b - mo_base), len(self.content) - b)
|
|
204
222
|
merged_to = b + size
|
|
205
223
|
|
|
@@ -212,25 +230,19 @@ class MVListPage(
|
|
|
212
230
|
# TODO: Implement in-place replacement instead of calling store()
|
|
213
231
|
# new_object = self._replace_memory_object(our_mo, merged_val, page_addr, memory.page_size)
|
|
214
232
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
self.store(
|
|
218
|
-
b,
|
|
219
|
-
{SimMemoryObject(v, mo_base, endness=the_endness)},
|
|
220
|
-
size=size,
|
|
221
|
-
cooperate=True,
|
|
222
|
-
weak=not first_value,
|
|
223
|
-
)
|
|
224
|
-
first_value = False
|
|
233
|
+
new_mos = {SimMemoryObject(v, mo_base, endness=the_endness) for v in merged_val}
|
|
234
|
+
self.store(b, new_mos, size=size, cooperate=True, weak=False)
|
|
225
235
|
|
|
226
236
|
merged_offsets.add(b)
|
|
227
237
|
|
|
228
238
|
else:
|
|
229
|
-
# get the size that we can merge easily. This is the minimum of
|
|
230
|
-
#
|
|
231
|
-
min_size =
|
|
232
|
-
|
|
233
|
-
|
|
239
|
+
# get the size that we can merge easily. This is the minimum of the size of all memory objects and
|
|
240
|
+
# unallocated spaces.
|
|
241
|
+
min_size = len(self.content) - b
|
|
242
|
+
mask = (1 << memory.state.arch.bits) - 1
|
|
243
|
+
for mo_set in mo_sets:
|
|
244
|
+
for mo in mo_set:
|
|
245
|
+
min_size = min(min_size, mo.length - ((b + page_addr - mo.base) & mask))
|
|
234
246
|
for um, _ in unconstrained_in:
|
|
235
247
|
for i in range(0, min_size):
|
|
236
248
|
if um._contains(b + i, page_addr):
|
|
@@ -241,9 +253,11 @@ class MVListPage(
|
|
|
241
253
|
|
|
242
254
|
# Now, we have the minimum size. We'll extract/create expressions of that
|
|
243
255
|
# size and merge them
|
|
244
|
-
extracted =
|
|
245
|
-
|
|
246
|
-
|
|
256
|
+
extracted = []
|
|
257
|
+
if min_size != 0:
|
|
258
|
+
for mo_set, fv in memory_object_sets:
|
|
259
|
+
for mo in mo_set:
|
|
260
|
+
extracted.append((mo.bytes_at(page_addr + b, min_size), fv))
|
|
247
261
|
if not memory.skip_missing_values_during_merging:
|
|
248
262
|
created = [
|
|
249
263
|
(self._default_value(None, min_size, name=f"merge_uc_{uc.id}_{b:x}", memory=memory), fv)
|
|
@@ -257,22 +271,46 @@ class MVListPage(
|
|
|
257
271
|
if merged_val is None:
|
|
258
272
|
continue
|
|
259
273
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
self.store(
|
|
263
|
-
b,
|
|
264
|
-
{SimMemoryObject(v, page_addr + b, endness="Iend_BE")},
|
|
265
|
-
size=min_size,
|
|
266
|
-
endness="Iend_BE",
|
|
267
|
-
cooperate=True,
|
|
268
|
-
weak=not first_value,
|
|
269
|
-
) # do not convert endianness again
|
|
270
|
-
first_value = False
|
|
274
|
+
new_mos = {SimMemoryObject(v, page_addr + b, endness="Iend_BE") for v in merged_val}
|
|
275
|
+
self.store(b, new_mos, size=min_size, cooperate=True, weak=False)
|
|
271
276
|
merged_offsets.add(b)
|
|
272
277
|
|
|
273
278
|
self.stored_offset |= merged_offsets
|
|
274
279
|
return merged_offsets
|
|
275
280
|
|
|
281
|
+
def compare(
|
|
282
|
+
self, other: "MVListPage", page_addr: int = None, memory=None, changed_offsets=None
|
|
283
|
+
) -> bool: # pylint: disable=unused-argument
|
|
284
|
+
compared_to = None
|
|
285
|
+
for b in sorted(changed_offsets):
|
|
286
|
+
if compared_to is not None and not b >= compared_to:
|
|
287
|
+
continue
|
|
288
|
+
|
|
289
|
+
unconstrained_in = []
|
|
290
|
+
self_has_memory_object_set = False
|
|
291
|
+
memory_object_sets: Set[FrozenSet[SimMemoryObject]] = set()
|
|
292
|
+
for sm in [self, other]:
|
|
293
|
+
if sm._contains(b, page_addr):
|
|
294
|
+
memory_objects = set()
|
|
295
|
+
for mo in sm.content_gen(b):
|
|
296
|
+
if mo.includes(page_addr + b):
|
|
297
|
+
memory_objects.add(mo)
|
|
298
|
+
memory_object_sets.add(frozenset(memory_objects))
|
|
299
|
+
if sm is self:
|
|
300
|
+
self_has_memory_object_set = True
|
|
301
|
+
else:
|
|
302
|
+
unconstrained_in.append(sm)
|
|
303
|
+
|
|
304
|
+
if not memory_object_sets:
|
|
305
|
+
continue
|
|
306
|
+
if self_has_memory_object_set and len(memory_object_sets) == 1:
|
|
307
|
+
continue
|
|
308
|
+
|
|
309
|
+
# TODO: compare_values even more?
|
|
310
|
+
return False
|
|
311
|
+
|
|
312
|
+
return True
|
|
313
|
+
|
|
276
314
|
def changed_bytes(self, other: "MVListPage", page_addr: int = None):
|
|
277
315
|
candidates: Set[int] = super().changed_bytes(other)
|
|
278
316
|
if candidates is not None:
|
|
@@ -28,6 +28,8 @@ class SimpleInterfaceMixin(MemoryMixin):
|
|
|
28
28
|
)
|
|
29
29
|
|
|
30
30
|
def _translate_addr(self, a):
|
|
31
|
+
if isinstance(a, int):
|
|
32
|
+
return a
|
|
31
33
|
if isinstance(a, claripy.ast.Base) and not a.singlevalued:
|
|
32
34
|
raise SimMemoryError("address not supported")
|
|
33
35
|
return self.state.solver.eval(a)
|
|
@@ -43,6 +45,8 @@ class SimpleInterfaceMixin(MemoryMixin):
|
|
|
43
45
|
raise SimMemoryError("data not supported")
|
|
44
46
|
|
|
45
47
|
def _translate_size(self, s, data):
|
|
48
|
+
if isinstance(s, int):
|
|
49
|
+
return s
|
|
46
50
|
if isinstance(s, claripy.ast.Base) and not s.singlevalued:
|
|
47
51
|
raise SimMemoryError("size not supported")
|
|
48
52
|
if s is None:
|
angr/utils/cowdict.py
CHANGED
|
@@ -35,7 +35,7 @@ class DefaultChainMapCOW(ChainMapCOW):
|
|
|
35
35
|
Implements a copy-on-write version of ChainMap with default values that supports auto-collapsing.
|
|
36
36
|
"""
|
|
37
37
|
|
|
38
|
-
def __init__(self,
|
|
38
|
+
def __init__(self, *args, default_factory=None, collapse_threshold=None):
|
|
39
39
|
super().__init__(*args, collapse_threshold=collapse_threshold)
|
|
40
40
|
self.default_factory = default_factory
|
|
41
41
|
|
|
@@ -53,7 +53,9 @@ class DefaultChainMapCOW(ChainMapCOW):
|
|
|
53
53
|
collapsed = {}
|
|
54
54
|
for m in reversed(self.maps):
|
|
55
55
|
collapsed.update(m)
|
|
56
|
-
return DefaultChainMapCOW(
|
|
56
|
+
return DefaultChainMapCOW(
|
|
57
|
+
collapsed, default_factory=self.default_factory, collapse_threshold=self.collapse_threshold
|
|
58
|
+
)
|
|
57
59
|
r = self.new_child()
|
|
58
60
|
r.default_factory = self.default_factory
|
|
59
61
|
r.collapse_threshold = self.collapse_threshold
|
angr/utils/funcid.py
CHANGED
|
@@ -13,6 +13,8 @@ def is_function_security_check_cookie(func, project, security_cookie_addr: int)
|
|
|
13
13
|
block = project.factory.block(func.addr)
|
|
14
14
|
if block.instructions != 2:
|
|
15
15
|
return False
|
|
16
|
+
if not block.capstone.insns or len(block.capstone.insns) != 2:
|
|
17
|
+
return False
|
|
16
18
|
ins0 = block.capstone.insns[0]
|
|
17
19
|
if (
|
|
18
20
|
ins0.mnemonic == "cmp"
|
|
@@ -57,6 +59,8 @@ def is_function_security_init_cookie(func: "Function", project, security_cookie_
|
|
|
57
59
|
block = project.factory.block(node_addr, size=node_size)
|
|
58
60
|
if not block.instructions:
|
|
59
61
|
continue
|
|
62
|
+
if not block.capstone.insns:
|
|
63
|
+
continue
|
|
60
64
|
last_insn = block.capstone.insns[-1]
|
|
61
65
|
if (
|
|
62
66
|
last_insn.mnemonic == "mov"
|
|
@@ -78,6 +82,8 @@ def is_function_security_init_cookie_win8(func: "Function", project, security_co
|
|
|
78
82
|
block = project.factory.block(func.addr)
|
|
79
83
|
if block.instructions != 3:
|
|
80
84
|
return False
|
|
85
|
+
if not block.capstone.insns or len(block.capstone.insns) != 3:
|
|
86
|
+
return False
|
|
81
87
|
ins0 = block.capstone.insns[0]
|
|
82
88
|
if (
|
|
83
89
|
ins0.mnemonic == "mov"
|
angr/utils/mp.py
CHANGED
|
@@ -43,7 +43,7 @@ class Initializer:
|
|
|
43
43
|
def initialize(self) -> None:
|
|
44
44
|
"""
|
|
45
45
|
Initialize a multiprocessing.Process
|
|
46
|
-
Set the current global
|
|
46
|
+
Set the current global initializer to the same state as this initializer, then calls each initializer
|
|
47
47
|
"""
|
|
48
48
|
self._single = self
|
|
49
49
|
for i in self.initializers:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.98
|
|
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.98
|
|
21
|
+
Requires-Dist: archinfo ==9.2.98
|
|
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.98
|
|
26
|
+
Requires-Dist: cle ==9.2.98
|
|
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.98
|
|
37
37
|
Requires-Dist: rich >=13.1.0
|
|
38
38
|
Requires-Dist: rpyc
|
|
39
39
|
Requires-Dist: sortedcontainers
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=NZ9Eg7WFAHNg7afS6iARWdkgVjV-jC9Vx2fQTtVTRNo,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
|
|
@@ -37,14 +37,14 @@ 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=McCAdZBy1TNIzqMf-sS7OmXt_xEe1j4NpiMI1SiSmwo,18492
|
|
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
|
|
44
44
|
angr/analyses/disassembly.py,sha256=uTAaxF_XlSN7-6BAap1Y20zNroo3YmS_kL8JbQN7bBw,45941
|
|
45
45
|
angr/analyses/disassembly_utils.py,sha256=4Np0PCPjr0h0jIVzUUG6KzrEKl9--IpTE3sgmmsmhcg,2989
|
|
46
46
|
angr/analyses/dominance_frontier.py,sha256=XRfC_LUUetE8t1Cc9bwvWS9sl63Fx9sp8KFqN_Y9IDg,1245
|
|
47
|
-
angr/analyses/find_objects_static.py,sha256=
|
|
47
|
+
angr/analyses/find_objects_static.py,sha256=woA3Fc45jbYMmSps-gOO5DqgPohQbx3LhicfrA6bb34,10158
|
|
48
48
|
angr/analyses/flirt.py,sha256=-n6GShXV6PLKDHr4nML49ZwAAlmMIP5SDeF2KmJVKOM,7847
|
|
49
49
|
angr/analyses/init_finder.py,sha256=hFHPsHipF4QkWzVqcDeTgL6YIaYi8bAyaURZBksS4KI,8531
|
|
50
50
|
angr/analyses/loop_analysis.py,sha256=nIbDIzvys-FRtJYnoZYNbMWH5V88qrhoMtrMRCTbkLY,9412
|
|
@@ -63,7 +63,7 @@ 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=JOliBFWPDWiIJlV5IUxU2Uf7BjExUNcJCibIlOQKoTs,123056
|
|
67
67
|
angr/analyses/cfg/cfg_emulated.py,sha256=Fi3rDN5ByxhO-H4Y7qn-3WZgBG12JGyvxcWmrD_FnFQ,152842
|
|
68
68
|
angr/analyses/cfg/cfg_fast.py,sha256=lLzVD5jli8cScRa_R2nnVCjWAmvGpRP-m8ns7RvQJaw,218220
|
|
69
69
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=eA_P-OY3gRRNj2BBgSPMsB_llGyFFCNW3VyGZ2uiMoM,26047
|
|
@@ -76,7 +76,7 @@ angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=9ctRVLyVUMhkB
|
|
|
76
76
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=TyRIBvH8St1eHktpRrErD4zp8HKP3ppglfPuCEE0wg0,1441
|
|
77
77
|
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=XnRqocVq_Y52d_XkoMnQoWQCGbwpDdQV4RpQlK9pOIc,101955
|
|
78
78
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=G3y7GYPxtuDQCwBz1eec-74YC87npLK6K2mtRPOsOqc,19350
|
|
79
|
-
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256
|
|
79
|
+
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=z77LC9YyQjNEr8ncVwIXVVqPyUjL2x2pGvqAax6QlYo,957
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=2YyKPaXuWVbPwUQZcn0CKuba3ydYGIMT0Vxhy09kcV0,3019
|
|
81
81
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=suPJkHzib8JGQpIrB0K5_AC6FgMOUe0iLnLLLhWVCM0,2971
|
|
82
82
|
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=tGDb2dpgHATY5AlBExtD3mvIEMqqV6fxKOHNTn8uohU,1621
|
|
@@ -89,7 +89,7 @@ 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=P-BejFkwvod9hWhao3dh1AEFS5BS7GpTT9neg4b2tJM,61504
|
|
93
93
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=sBz9Cn0GtdpuFt7R9y3oX6NFvETQTZRh6N80eM9ZdJQ,1595
|
|
94
94
|
angr/analyses/decompiler/block_io_finder.py,sha256=Y27ZNkrQp-QC7acnfsRpCzl5VQC7tDSeFmzemHclddI,10576
|
|
95
95
|
angr/analyses/decompiler/block_similarity.py,sha256=x7DTJw6QKrXaPmI0Oxhl2V6rMDhQufHF0Zo5PkIr-xA,6531
|
|
@@ -97,7 +97,7 @@ angr/analyses/decompiler/block_simplifier.py,sha256=X5kO97A1bEwSUfbwgj1cSO56qkhw
|
|
|
97
97
|
angr/analyses/decompiler/call_counter.py,sha256=V3TIaSvLUy9vLEWErnvlCS--_ubGWQAeU0tqq6XYeOU,1205
|
|
98
98
|
angr/analyses/decompiler/callsite_maker.py,sha256=W389gPmq8ylVIr38Re5hEBhaLodipT6div4RlirdnEU,15083
|
|
99
99
|
angr/analyses/decompiler/clinic.py,sha256=rWFsKNt6RJYHQK6Ng5OwNRFw1Pvhm0bOKrTODcSIjS0,87477
|
|
100
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
100
|
+
angr/analyses/decompiler/condition_processor.py,sha256=2d6CLDcGa4WqRBVr5NTFZCtJXSuAGlrAM0fGlknE-x4,49596
|
|
101
101
|
angr/analyses/decompiler/decompilation_cache.py,sha256=xj5kzGV6OlTtXIIcvK0Z17TMunggn9ilgKD3wjDiTB0,1176
|
|
102
102
|
angr/analyses/decompiler/decompilation_options.py,sha256=vbuLF0Oze2ldFNpv2jWFnGG4sJPey527KAAbj9TRvAI,8240
|
|
103
103
|
angr/analyses/decompiler/decompiler.py,sha256=ay9xaKWyw6WKnaALg79iKUOWAL3vJno0r6SvK8Gud-s,22137
|
|
@@ -113,11 +113,11 @@ angr/analyses/decompiler/region_identifier.py,sha256=KR4SifhPbPwjrJiW2xQ_64BSdAE
|
|
|
113
113
|
angr/analyses/decompiler/region_walker.py,sha256=lTfweYbY4_a2f2yGztTKG6JtU1jXf-kaz-NHbX9nkXE,717
|
|
114
114
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=2KINMEgaXMG3XIiFDMRkbn10dggy7a9AHgwV383huRM,529
|
|
115
115
|
angr/analyses/decompiler/sequence_walker.py,sha256=mw4RG-Act5_no_RyQcsxWZwva-n7FdH2a7w_uItGUpI,8428
|
|
116
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
116
|
+
angr/analyses/decompiler/utils.py,sha256=jHTMKKyk4GDkWhJGwmZTl_ZD6efJSr9vtG-cULyzKUc,28116
|
|
117
117
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=wbWqZ8xG6ZvzEApkAwMsNQFC-iwF3swG1YJsaf1cIrQ,102
|
|
118
118
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=fSvoTtGeFtyvDp60BNNqPlBMxzBICkEAJi8wV29nwF8,21551
|
|
119
119
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=gWezEKB7A_YnlfUDs8V8D5syoYAyIXSIme1BKQRoouM,498
|
|
120
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
120
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=xlLn9Mzcd9vmvV0exca84xejLlOqP1MKYv3WVsQxmX8,3954
|
|
121
121
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=bjpEMW-Lqj5XW9NWUikGPcRn5scKNc8VvEjVMXxAuq8,5289
|
|
122
122
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=KEQPdpSfSYiIzHFYGkfj3W8ZupJbogQNhYnYKzo1xUA,15319
|
|
123
123
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=FEoiprXxns-3S0nFaIWm2DBW_aDMq3GZ-VOG3CIqcMw,10593
|
|
@@ -126,6 +126,7 @@ angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=J7LRc3-DKf
|
|
|
126
126
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=7nnNZkVMqvikHCy9X11M8KLWbL8lF0DoLYPemETWP4c,10388
|
|
127
127
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=vlPhWDyvuEmbGcd1ka8rS68F72Ty6Hw3J00KM3tWCus,4701
|
|
128
128
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=GuDDqmZXUo_a9Af30n9tcihNQcATDrztmraZ-88v134,3946
|
|
129
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=RPxrXnPZoYGQ63eol6Ttfv5s_C-iP7k1Iz_dRCDn6oM,16281
|
|
129
130
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=-6znFCAXS7Z3cn5CTqr3mg4r1G_jJgDFJHk2PzMVwtE,7756
|
|
130
131
|
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=l571GUDoCt4hZ2RHBNVUraLl-ODmP_kb11bLKwbCIB0,6762
|
|
131
132
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=9hhCcvE15MCM6KoJU1ba11hFiN6MXxYAb9FbntzYJbg,34328
|
|
@@ -141,8 +142,8 @@ angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=EsP
|
|
|
141
142
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=csNKaA4dAP5bIYzC29z67nHKNKzDShcauPuapY4rmF4,12559
|
|
142
143
|
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=U9XIMXWYI_UHTamKHdjdXP4QVBvi386SSI0f2KoHu3I,4523
|
|
143
144
|
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=tIMZ4kDutUY-5jFrfA34tf3NufE7n33PcAlxz_mSebE,12304
|
|
144
|
-
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=
|
|
145
|
-
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=
|
|
145
|
+
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=ZuD4EMJFEf-lNBLg-vmx1zVOfsb4Vq487RbwnubBs4A,3067
|
|
146
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=nOxGRR-auZN-oEwhjKtNnPAXcxKvQsCEb-a_LZ5qJxk,3252
|
|
146
147
|
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=Whptbt1qujPPRsNX8kJaobHTwgvym7SPu-tC2wBynBs,1727
|
|
147
148
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=xuLPEVN1QdQT_5U9K4-WIdVdHTogCBOmJPWlnDW8Cz8,1365
|
|
148
149
|
angr/analyses/decompiler/peephole_optimizations/a_shl_const_sub_a.py,sha256=tEr_XcYoOXcFm5paY_CEzgSOjrksz20utMZa6smF9TU,988
|
|
@@ -163,8 +164,9 @@ angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=vz
|
|
|
163
164
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=0IHIk7uxIC70140k3VcXlnx4QcunAeoETXF1ZgJi2Pk,2070
|
|
164
165
|
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=A0AUf60c047X7VhOr7tTAJE95qS3yiUxE1dYr9maA-8,10131
|
|
165
166
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=ymP9tDU4NipGOdFWsmLHrR6dKVcEFiaTgM1-L_dfmOM,2015
|
|
166
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=
|
|
167
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=YSphozdu4ORdM_222viSUb6EPigRDkRi9klBQd76nqs,5765
|
|
167
168
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=vrXAaYKT99LJK5BLKlyQ7xtzQx6hIujqTAv0-Ur1CWo,4676
|
|
169
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=tT57fo30sPuUy2sYD64mZSCL_yAgwBmdvvoW9CA6aUc,6283
|
|
168
170
|
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=a0IDp0kKBrPwhDVejPFhcNseZdprF_5EZRZs7KTR4gA,2084
|
|
169
171
|
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=kW8AbWfMqFzI1CVFp79TFX60IZxaQhRG8XUckuc-vGI,1136
|
|
170
172
|
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=3a1ZoTq66HTU68y5DCC2sLvItPmqF_Kv05uvOacxsRM,591
|
|
@@ -198,9 +200,9 @@ angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=OjcyE-
|
|
|
198
200
|
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=odeRyT8VItRPIFuUPNaRnA936LwxwXOFbM_HhehK90I,8209
|
|
199
201
|
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=0NBa_tpz03ZcaHYUNKXSVZjF3TVmqs2FUc2TdVGwsqc,24545
|
|
200
202
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
|
|
201
|
-
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=
|
|
203
|
+
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=NLEvs8xnJwJiUgX8AmgS7rtFFW4SxtQcA1AjzE-GryA,313
|
|
202
204
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=nJPOoeJCbewchYdXjSE4S2b1-WN6pT3TxmCQMDO0azw,3845
|
|
203
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
205
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=UpljxwZANYUX9UrQoYKW5yjTW0OO0faxOzLEyocDKYM,134738
|
|
204
206
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
|
|
205
207
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
|
|
206
208
|
angr/analyses/decompiler/structuring/__init__.py,sha256=eSiT6xUpv9K5-enK3OZj2lNzxwowS9_5OTrjHiPgfFs,371
|
|
@@ -210,7 +212,7 @@ angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=hr47-tqWexOX
|
|
|
210
212
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=orV0jRqRh2hkKNsdBwigm5OoXTQDP7dfY6go_Z4if1Q,41330
|
|
211
213
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=PE_byL1mxj811MMM-qQWzSaITtcu5Xn0ZKz0yobnK-k,11964
|
|
212
214
|
angr/analyses/forward_analysis/__init__.py,sha256=0TNlM4hbX1KRMyUduqU_zEwbnVcuNX2A1mtVuM3KexY,144
|
|
213
|
-
angr/analyses/forward_analysis/forward_analysis.py,sha256=
|
|
215
|
+
angr/analyses/forward_analysis/forward_analysis.py,sha256=t30c02e3LNlkJsbNyNsfOrHD0vb-wUeTsdwiFTFTAcU,19939
|
|
214
216
|
angr/analyses/forward_analysis/job_info.py,sha256=5TkrqLwNWzx0ckxYm1QTV2SXzJXrP2QHcpDWl1_eCmM,1579
|
|
215
217
|
angr/analyses/forward_analysis/visitors/__init__.py,sha256=JNaPZqJfrkx6mkiM9tKm1gge-7DA_ObkuHS2D5wLVY8,174
|
|
216
218
|
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=ShxUtVN5mWSnvhfaYh3sTqtwdWL-w6lQPK48C7WoEnc,713
|
|
@@ -249,11 +251,11 @@ angr/analyses/identifier/functions/strncmp.py,sha256=XlqTTLjfPRj7LSw3-xHoH4SJyNi
|
|
|
249
251
|
angr/analyses/identifier/functions/strncpy.py,sha256=1WUrhXMS5Sd5rfgBJbChZD_BZ_D47Z_H4AZwriyqDO0,2008
|
|
250
252
|
angr/analyses/identifier/functions/strtol.py,sha256=Py_6Y9rR5dfy53LX8w9WktSBaxdyPlbrcLEiV6cWfHs,2426
|
|
251
253
|
angr/analyses/propagator/__init__.py,sha256=5-UKSiAtYocLzmQWXPzxyBnPui_c8P_r617KDwtRnNw,43
|
|
252
|
-
angr/analyses/propagator/engine_ail.py,sha256=
|
|
254
|
+
angr/analyses/propagator/engine_ail.py,sha256=R4_XLRN7Z_Il37bhFPLCBYa01fuGFCXyg7sUhbFo7mY,68660
|
|
253
255
|
angr/analyses/propagator/engine_base.py,sha256=0j5NzJ9jArF4KeysBeiPoo_RKyCvlgn-i3inSZt1cyc,1735
|
|
254
|
-
angr/analyses/propagator/engine_vex.py,sha256=
|
|
256
|
+
angr/analyses/propagator/engine_vex.py,sha256=mbFkn1LTmhL0H_etG4JLdOSBoH6Z2TG6qJJ4W5Oq_0c,12900
|
|
255
257
|
angr/analyses/propagator/outdated_definition_walker.py,sha256=OJnI9rlyutyy2qHMTqnrnQJCXKcBHvgwHfiqlWDECiY,6890
|
|
256
|
-
angr/analyses/propagator/propagator.py,sha256=
|
|
258
|
+
angr/analyses/propagator/propagator.py,sha256=IdIGtwYtxJPS4nU-ktBZBhoLz1_2JtfTVcc7kPczZxs,16134
|
|
257
259
|
angr/analyses/propagator/tmpvar_finder.py,sha256=GqP1lm-_ez4AvXraDt1BQ1o7GvdjLI7j-TUL5k-lKbU,442
|
|
258
260
|
angr/analyses/propagator/top_checker_mixin.py,sha256=8NujgeNTiaSb6JQ3J01P5QJSnQ_mnF88m7rXlATIruQ,359
|
|
259
261
|
angr/analyses/propagator/values.py,sha256=b8zg2VIPJoZj4qtF3_XRfoxA7LjXxO9OIkqZ3y0Wc_M,1991
|
|
@@ -262,13 +264,13 @@ angr/analyses/reaching_definitions/__init__.py,sha256=3itfNz4b0XcTDJJbU10gZfSuqU
|
|
|
262
264
|
angr/analyses/reaching_definitions/call_trace.py,sha256=5y8VtU-5-2ISamCkok6zoMahWASO2TBQYl5Q0pgeLGw,2217
|
|
263
265
|
angr/analyses/reaching_definitions/dep_graph.py,sha256=M4P5jyA7nVrWk9oEOB5EQUtGIf-eKCevwhH3uj-O7rQ,14886
|
|
264
266
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=uvkgtdxWxFn2ZBM6-mEhuvYEBjvdwa7PiTlN4yOKqMI,45997
|
|
265
|
-
angr/analyses/reaching_definitions/engine_vex.py,sha256=
|
|
267
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=aN1daC3XSsVSkiPcUAi5_3UvwlXA_nSuQhxMpKk2Rpc,43124
|
|
266
268
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
269
|
angr/analyses/reaching_definitions/function_handler.py,sha256=TB6yW0TBQnTdAv3SOBcui6dSCBMoviivKx0v8COY12w,26839
|
|
268
270
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=L7LCcE-QvLd_vuc0slWmQ6X73wkYNMkUEDy1cJAV818,2634
|
|
269
271
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=dZxm8H37NPJdugHS_0R2ylujjWcvUj_nBaMf1z6bjbA,11224
|
|
270
|
-
angr/analyses/reaching_definitions/rd_state.py,sha256=
|
|
271
|
-
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=
|
|
272
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=o4Ird2i2E84j75zpAFnX92mzKqrLqA8T-Tp6ii-kTg4,23986
|
|
273
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=XVM6bQSCvAeX1siqC-hPn8mMwSxBB2ihGdZgzSpKAiU,23988
|
|
272
274
|
angr/analyses/reaching_definitions/subject.py,sha256=GVaI1jM-Nv2MWaCjJ-Q_54nSS3hvAaZthz14AJJNq-A,1995
|
|
273
275
|
angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
|
|
274
276
|
angr/analyses/typehoon/dfa.py,sha256=TdA5ts4-0xQtccJdz1fMPATIKV-gWgXqmKkTM338b-g,3519
|
|
@@ -281,12 +283,12 @@ angr/analyses/typehoon/typevars.py,sha256=yZX2rdbHMPdsZXD-HJlbULVkUaXESqzv_ajxgH
|
|
|
281
283
|
angr/analyses/typehoon/variance.py,sha256=VPuBrPmbw5RgNG5SUTNFEd5rr4v3V_qD1vgilqWvdrs,158
|
|
282
284
|
angr/analyses/variable_recovery/__init__.py,sha256=j2SZyfzCAagqNTj0IcYJtOx4b3oAvhEY9GR3hb0bx4o,105
|
|
283
285
|
angr/analyses/variable_recovery/annotations.py,sha256=eAifcWVmb1xUmEGtpiy8PzIupSuZtmEDEiUav-3_z20,1403
|
|
284
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
286
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=DEotW9Pe6NyS23dOgbDZ5EAYY3qaik_mECGisuNRyb8,25716
|
|
285
287
|
angr/analyses/variable_recovery/engine_base.py,sha256=SM-BCv-UPE7bmaFCRpxLKJGL6u0WUUtQr3CgmIeqG5Y,41633
|
|
286
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=
|
|
287
|
-
angr/analyses/variable_recovery/irsb_scanner.py,sha256=
|
|
288
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=ni-OCeHFhhPRo5iH2p4AvI_43ADOO1jUc__GX0tIb-U,19215
|
|
289
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=c8SMeqX4rddO7lDtFaXvFQRwA7AnHHOpXnWOQyjgYtw,4907
|
|
288
290
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=F7dOWJVdV2kE1jjIyqEDgp0bZ03_cReEeHSPKPnhI1s,21802
|
|
289
|
-
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=
|
|
291
|
+
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=mm9p86ZRYwIXrMB-BW_s5_Aj0_PoOg865QCKDWsrBwE,14960
|
|
290
292
|
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=l2O6TRAoENsLnWQu60n_pmgAIyXrk86f1JNzlCJLLi0,24125
|
|
291
293
|
angr/angrdb/__init__.py,sha256=df9W7J7c4rD5oYx6fZGf0BIBwOqVVJlIJTDrAtQChqY,231
|
|
292
294
|
angr/angrdb/db.py,sha256=HZL4tvxNkxwqLKNTGSz0-5n07OvWcXoIqWWtpBy-M9k,6459
|
|
@@ -331,7 +333,7 @@ angr/engines/syscall.py,sha256=LNMC3zyis3OiWC7_8Zn1blMw1EDib5FjUqepXlaWDTI,2177
|
|
|
331
333
|
angr/engines/unicorn.py,sha256=gf7LjjWyaaujqSuCq3d-BGm8t5sdZjzsJeBevGfdiLw,24447
|
|
332
334
|
angr/engines/light/__init__.py,sha256=j9vH2fU9MaNVQ8NT3Ek3Tj2zkGlVxlKyzia8zVTofYs,186
|
|
333
335
|
angr/engines/light/data.py,sha256=jZBAJxor2zg5m4s63joSrjUs8H-OeHBZiqZmc3dqEQQ,23132
|
|
334
|
-
angr/engines/light/engine.py,sha256=
|
|
336
|
+
angr/engines/light/engine.py,sha256=dJxHkFrfCjufo-d4PO_SkBT8CMp3aQ7lbWpfQGImCoI,44929
|
|
335
337
|
angr/engines/pcode/__init__.py,sha256=UwMEwXQvHXIIgedJn2ZOvBBEgfHg2rfREBSpcTSXCZ4,83
|
|
336
338
|
angr/engines/pcode/behavior.py,sha256=gwMFXQ3cibqchRHnRfiVzzzLIg2mgX-2XJlkD82p8J0,28720
|
|
337
339
|
angr/engines/pcode/cc.py,sha256=lwMeO9Mg8L7-uxxPzYmu13n7YLNo-Sr3xxLk_-QHTOU,2994
|
|
@@ -440,7 +442,7 @@ angr/knowledge_plugins/indirect_jumps.py,sha256=kgUb38uqPPFhFgxCesOhSBgNdZyQTwfH
|
|
|
440
442
|
angr/knowledge_plugins/labels.py,sha256=uJy8OGT5jtU6aDPzxuAKJmaAJqdyU-RDNO0KIGsvHj8,3137
|
|
441
443
|
angr/knowledge_plugins/patches.py,sha256=Zrlwi7JUW5N9rhFa4t-B22haFbQ-TX_-9o26WKUtZ0s,4373
|
|
442
444
|
angr/knowledge_plugins/plugin.py,sha256=5x_6uCatsbqfQBHfRNqoRS9yc8JrwGnGMDyAn29u_WQ,733
|
|
443
|
-
angr/knowledge_plugins/types.py,sha256=
|
|
445
|
+
angr/knowledge_plugins/types.py,sha256=DNBPxMzFYYTtvdGL0va6irXp9z6qn0kAdlOngHwPz4U,2038
|
|
444
446
|
angr/knowledge_plugins/cfg/__init__.py,sha256=L7qgnAg6rXGq8NCfdr1RLSSPRmQ1O87ZkLEDeC6k000,382
|
|
445
447
|
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=z_wVQwneLl6qBHTSjrLbzxgz591uJku8IPgQozhPbIo,2302
|
|
446
448
|
angr/knowledge_plugins/cfg/cfg_model.py,sha256=5OQa9p_oefQsOmdwzh4_lBNnVfRSNvhDWIlw6vTgf88,41756
|
|
@@ -448,7 +450,7 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=Q_qqQ1LisCzTWROOQAfvyaBjS86zxcMw6I
|
|
|
448
450
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=yzPf1jjUNPgGP7D7IamqX6KF-EJX-heZjDEr4SRUWDA,2145
|
|
449
451
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=FzRUFltXrN0G3OeMZEbb3xc7I-W8AaomtCTSXUQlJ0g,5040
|
|
450
452
|
angr/knowledge_plugins/functions/__init__.py,sha256=6IerJjMKKvM70mcJQhmXJYiipePOQ9ZSTmavTIUgg5Q,77
|
|
451
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
453
|
+
angr/knowledge_plugins/functions/function.py,sha256=EBvfQWQqPPvAz3_Hw44kodDz9K5uGbGuhgtf57NTU-I,67184
|
|
452
454
|
angr/knowledge_plugins/functions/function_manager.py,sha256=BsVGnI-cvcCkpZ_8ssoOCspKmU58uKjLb0CBzIAKo7c,18990
|
|
453
455
|
angr/knowledge_plugins/functions/function_parser.py,sha256=cb_AD5oFqoyXapDBawnJV1D9XVRMBGa9GwwDudNSc3M,11916
|
|
454
456
|
angr/knowledge_plugins/functions/soot_function.py,sha256=2zwz_tdKbEnF8eUkOEmpNr7AUeooun2-SiIoY_xIdMw,4971
|
|
@@ -456,28 +458,28 @@ angr/knowledge_plugins/key_definitions/__init__.py,sha256=xnn-6qL8csRtqWkHn6OTHQ
|
|
|
456
458
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=9xvTDNtsXHaIviOaI5UlkhxadOLYlRQmDL1Hpjqu1dI,9753
|
|
457
459
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=bbS81EF2cXvoIS7ORxH_j3tTxBL5fUaqaZ6plBWaVKw,458
|
|
458
460
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=Mwn2R5AAAi85L2y61Ext6Y7IsMNCysuCBCl52Hy-ilE,8661
|
|
459
|
-
angr/knowledge_plugins/key_definitions/environment.py,sha256=
|
|
461
|
+
angr/knowledge_plugins/key_definitions/environment.py,sha256=ABVSrMBFcllZawb0aknA5iWNwfskoIRlldVArkKCt38,3907
|
|
460
462
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=62vX5xkT91qO-6IKtGtGNUqgkfFUU1_Al6B9vU-SA7E,922
|
|
461
463
|
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=Tzh1V39fM_fk5r6obv8z65oXHCx3Vruo381lo6gfj7E,3251
|
|
462
|
-
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=
|
|
464
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=8Oj10m-6b0hES_EFB-8G_rtdF6tSQC9Bo2MXg1qxyCY,40482
|
|
463
465
|
angr/knowledge_plugins/key_definitions/liveness.py,sha256=6LrvBdxkF-HB93PeEyLfILUuay1YlG6ss7U69OyNf7I,7140
|
|
464
466
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=-oYsPYibsx-K9mL_plMDH3iTnAJ9uoQxScvjYcUzzWw,7312
|
|
465
467
|
angr/knowledge_plugins/key_definitions/tag.py,sha256=uBHlS71E3Ok_6V3K8NkMblctCrnAHmPYikaFTA02PyA,1682
|
|
466
468
|
angr/knowledge_plugins/key_definitions/undefined.py,sha256=dv1fo4jR48tuslsbPZ40YZhqePfVxBohH9LtFKP8qhk,1236
|
|
467
469
|
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=YwA1DWBE9796BTU8KdY6xIR88IXc2KDUAZuxHEqO710,1510
|
|
468
|
-
angr/knowledge_plugins/key_definitions/uses.py,sha256=
|
|
470
|
+
angr/knowledge_plugins/key_definitions/uses.py,sha256=jjnUjwRbG9TNfo476lZSsuwq-tz4Rlq_tTx-OLSgykc,7468
|
|
469
471
|
angr/knowledge_plugins/propagations/__init__.py,sha256=YOHJ2PMz-egzFMA2H0eKa5FDMadJcp5DSdncVwQxv84,100
|
|
470
472
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=pfRYRHb1wEEhrSiSlOzuZDY9ZHeIQZM2yjA3JazPs_8,7706
|
|
471
473
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=YH-akf65ywLG3ggAph8KFyJugTtTCXW-QgwApLYzYLE,2122
|
|
472
474
|
angr/knowledge_plugins/propagations/propagation_model.py,sha256=rK5qbWREPpUtEzOBRFn2bZviN6Ux-HlN0zF_inlg104,2786
|
|
473
|
-
angr/knowledge_plugins/propagations/states.py,sha256=
|
|
475
|
+
angr/knowledge_plugins/propagations/states.py,sha256=i5LmhteV39yd9vi0vSePnvrRDX2KdbfhY8NRnGcJcHs,39023
|
|
474
476
|
angr/knowledge_plugins/structured_code/__init__.py,sha256=9edAAAVroOR8nNBThuRjOnjVUIqavnObO7mlUttxInA,43
|
|
475
477
|
angr/knowledge_plugins/structured_code/manager.py,sha256=kGncA-GlHnllk_5VFUDuZhoqJQivnrWT6A7iYFI8Q8E,2071
|
|
476
478
|
angr/knowledge_plugins/sync/__init__.py,sha256=RN3y0UhYax-GdPyAhondMXEBuWIu-enHjxjpdTKhQ58,44
|
|
477
479
|
angr/knowledge_plugins/sync/sync_controller.py,sha256=Len-odz6vq6ZhGsRxKH6dSRvjxUnca88XQbtdjdP6Us,9276
|
|
478
480
|
angr/knowledge_plugins/variables/__init__.py,sha256=tmh_2i0X6Y41TkEgxHRQ4y-kVEGZnlDIpJZ_wUkCISI,60
|
|
479
481
|
angr/knowledge_plugins/variables/variable_access.py,sha256=CtstTsBph7RCGoWTFsiaPLDMuXjKQAoQ8lgwVMESisA,3751
|
|
480
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
482
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=gm5guiCHTMJfGQFXRmO5VBAWoFC058fNsoziNpvMcZU,45603
|
|
481
483
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=-5A2h048WTRu6Et7q7bqlc-AyBXNuJ9AF9nE9zc3M4I,94
|
|
482
484
|
angr/knowledge_plugins/xrefs/xref.py,sha256=w4wjDFl4xtJYOtJplp9s1AIX3wI1RE71po3ufh1M4aY,4963
|
|
483
485
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=OLHEmgwGbFYWhm6oMgglPQ8Fe7rAvKicFeyQoGqSylc,4009
|
|
@@ -1173,7 +1175,7 @@ angr/simos/__init__.py,sha256=lqiR4H7KgNd8uzQT5OYsvrcb3l3moCoxBP-O-UMzPjM,755
|
|
|
1173
1175
|
angr/simos/cgc.py,sha256=13dtMvJhD7nCLEH1n6nAMR4IbG1WYc8jQ_ASZsP85yU,5568
|
|
1174
1176
|
angr/simos/javavm.py,sha256=NKwosYvx4-_gsT7eGmHHIZNzzdF-T0xK0BuXobrI8oQ,21461
|
|
1175
1177
|
angr/simos/linux.py,sha256=GIQMpllbbY8gES10c8fpglJNYiRv9SHQOxVUa3xERBI,23327
|
|
1176
|
-
angr/simos/simos.py,sha256=
|
|
1178
|
+
angr/simos/simos.py,sha256=UbhjUTsowcnXBBu6k31Bt5ZNx1QS1ly146q_66TY23g,18275
|
|
1177
1179
|
angr/simos/snimmuc_nxp.py,sha256=Uy43SwCjnKFo207fVz-h0vzwRk-RnIACz1C0Ly3ftw4,5679
|
|
1178
1180
|
angr/simos/userland.py,sha256=a0x1UYVQ0x7Wgnu4PtedS2-7kS4vLqoYNqEwo7Z_5fw,7351
|
|
1179
1181
|
angr/simos/windows.py,sha256=AGhVLdTzgtOsbUHApUSjsY90l2jYFKUZn1A1_ngz5nI,26047
|
|
@@ -1217,7 +1219,7 @@ angr/storage/__init__.py,sha256=X3JnQg95SqAqahP1x10Kk5E0OXxyNlV2Xk3NKyXzykA,182
|
|
|
1217
1219
|
angr/storage/file.py,sha256=Wl-6-N0cWndwgOB03vpUW0BS37SNbGzJcYx4ffUZs8g,48379
|
|
1218
1220
|
angr/storage/memory_object.py,sha256=zYGZJTtYJWol2_NgdoJUi2u8sJsrSrHXScqVoiJjyi0,6253
|
|
1219
1221
|
angr/storage/pcap.py,sha256=8n30ui0KO7qx_RgmGFL_cBYMF5AlQ5LzVFeCh9ODU6c,1940
|
|
1220
|
-
angr/storage/memory_mixins/__init__.py,sha256=
|
|
1222
|
+
angr/storage/memory_mixins/__init__.py,sha256=R4UD3XLHwUJLwSOIEov1W9vOGhXJCZV9StHUk3VSBgQ,11944
|
|
1221
1223
|
angr/storage/memory_mixins/__init__.pyi,sha256=7jA-O5r8efBzQWZa9q-5xs6HY-rYPSlgo2_42CRUYqQ,1944
|
|
1222
1224
|
angr/storage/memory_mixins/actions_mixin.py,sha256=KZSCMjGB_Sbk_rlgGxk4k02Pu3b569c6tG-xPoH31L0,3402
|
|
1223
1225
|
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=6VJ4Gg3NecygagBlNe5jrGgSmCJmfh53nnxwzIwjO0k,16569
|
|
@@ -1229,9 +1231,9 @@ angr/storage/memory_mixins/default_filler_mixin.py,sha256=aNi2UAmknGHr0JNnD7WWj9
|
|
|
1229
1231
|
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=-UDDtjEkh19Dd5paf-62NBvSiIHTmQXPM0QtriJ5eig,317
|
|
1230
1232
|
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=ciMIrmfTmxWPWVUUiIw5h8YNdHmrWg_GsK6Bzg5omzE,3668
|
|
1231
1233
|
angr/storage/memory_mixins/label_merger_mixin.py,sha256=F-1F_zotCO9OOTXaG8Ax2-Mi2F2aN7hQ8pIwxgH1nVE,858
|
|
1232
|
-
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=
|
|
1234
|
+
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=Gssxe83oAn8AsFyF2b9Ye99Y3Z6tgYos3Y-24hYVmQ0,3036
|
|
1233
1235
|
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=YOM3yDjTmybDgAVvJGHuVWUgkDqsbFsWRgkJP8vI9ho,3412
|
|
1234
|
-
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=
|
|
1236
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=KTHvca8MXCWF4W8dbnQLFd7uJ-Gsab03_3kJGfFTAyY,2596
|
|
1235
1237
|
angr/storage/memory_mixins/simplification_mixin.py,sha256=stTzmaoa0IHxhDSWsYdzKGSt2n37XRjJ7kgZdoa5Uu0,502
|
|
1236
1238
|
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=KEOCz6B_YOUXczNYeCU4UH2YMoi7k9ww86Ll5cCKNVE,5659
|
|
1237
1239
|
angr/storage/memory_mixins/slotted_memory.py,sha256=tf-SqyvUg9H9e_cAJBXD5KZ_IIL1PBz5tDiODQCMad8,4884
|
|
@@ -1246,7 +1248,7 @@ angr/storage/memory_mixins/keyvalue_memory/__init__.py,sha256=QxpAvcd8WfpgO_mrOC
|
|
|
1246
1248
|
angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py,sha256=CMji69eu0CnNgR_wQ3obWeW1UKiSrdOacEgwT7BGODo,906
|
|
1247
1249
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1248
1250
|
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=QJgzPbPFq7-fQALAhoZ1T_KAYYG2uHTedePPZ8_nwqg,10282
|
|
1249
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1251
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=dY2l0I06LyMg3_ygmmZg1Dzly2jrxZVoMdBQohumaSU,29219
|
|
1250
1252
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=jrOKLLiR48KRsHsarGRx7XZXSoO2OFMT4-l-dQ1Ytuo,2192
|
|
1251
1253
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Ls_QhPLKudESInlAhUR1GVeacJNTciz9E2DX-LatAZ4,1541
|
|
1252
1254
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=Fg_KtS7GiI6TLfBKoRAOiz4z-M9ZkcvT9UwCkAp9-rY,3283
|
|
@@ -1254,9 +1256,9 @@ angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=rwGAcESljLORCDt
|
|
|
1254
1256
|
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=wAFitUWddf8-iCuueqg-GW0aqhv7UgnwWekLI7hX3eo,12776
|
|
1255
1257
|
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=_Nn4lRfGwAHelfl4fCZo41pqH9DM_NI-VXhBPXQbI0o,3039
|
|
1256
1258
|
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=mHt5nQYXkXifwGT0_UGvKirECEC2v7jNNtf_6oY57uI,2050
|
|
1257
|
-
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=
|
|
1259
|
+
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=UpD45TazurTnukRn_t5LZAGH-dRT1TvDcVC4Vxqiasc,14644
|
|
1258
1260
|
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=Qhgy3Ie76Hektg_u35Hyt8VfCGV_HS2F5D1nkhYlmCQ,11302
|
|
1259
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=
|
|
1261
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=bxlsOlDUANb2hC6AlQk6W5YlczgSrePR40JzYPHAMRo,17713
|
|
1260
1262
|
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=Ek2YSmFOGUScFXPx8hqroNkl3gK1aqKCMv_X3_pImLs,830
|
|
1261
1263
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=oES5tahTy4SgyDi2h5oRRC0PC4JHNcIvdAC4INKkeJw,1701
|
|
1262
1264
|
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=-q0bkJvWMw-ki9AfZP6hvQeD6JljoWiYTKmuTjDRorA,19139
|
|
@@ -1272,23 +1274,23 @@ angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=I8O2DFCCA
|
|
|
1272
1274
|
angr/utils/__init__.py,sha256=XjOtDNWPHZZjayRA6OxLra78wBtR-pY_A8EC3nqCGkE,980
|
|
1273
1275
|
angr/utils/algo.py,sha256=WZrCP3a1RnbBpDw6BQQNWjng1EghMmBRlDyU83tMLuM,995
|
|
1274
1276
|
angr/utils/constants.py,sha256=hxSJHIILsDP8ZOpw76BxMLu2Q_s2-rxTjACh7RL5wJs,209
|
|
1275
|
-
angr/utils/cowdict.py,sha256=
|
|
1277
|
+
angr/utils/cowdict.py,sha256=GlvZxwYPJRPrmgbcB8Tay-q1KBNeJDU3oKwoxZ-aUFs,2160
|
|
1276
1278
|
angr/utils/dynamic_dictlist.py,sha256=80kE4ySWF3dAffUt5qlyUfK6h0A8jOVMMaNG8RNUz7s,3107
|
|
1277
1279
|
angr/utils/enums_conv.py,sha256=YdnZzvuVc_BW1EuC4OtEo7LqB35XkPrXICyWox8Posg,2091
|
|
1278
1280
|
angr/utils/env.py,sha256=wWlmjLp7CtafKItn7xq2RW3UzGGgxw58Wc8fSm3EZJQ,363
|
|
1279
1281
|
angr/utils/formatting.py,sha256=QOw75CLSrttGTn2aYQzBFIBhZj40J9ESQZxJOz0BexA,4217
|
|
1280
|
-
angr/utils/funcid.py,sha256=
|
|
1282
|
+
angr/utils/funcid.py,sha256=2qNocK4hzqvO2UaZd8GJ5mhj_tG_0wJ54h88WKR_HsA,5240
|
|
1281
1283
|
angr/utils/graph.py,sha256=z36Q_bitE9yu0CFRhrRAj6hAWe-dSvzJvDHgqz6tJMQ,28417
|
|
1282
1284
|
angr/utils/lazy_import.py,sha256=VgN0-cMsr6XdGIq56Js1X8YecfPdW9Z4NrB3d2jD-5Y,308
|
|
1283
1285
|
angr/utils/library.py,sha256=F4kRDknex_N4313vpEc7Ra6yROcpj0zhdKEI8cYOJuo,7202
|
|
1284
1286
|
angr/utils/loader.py,sha256=QdkatPiyRfz5KdfCzRI1Xp3TJL_Pa75wY0dsILgMbwk,1944
|
|
1285
|
-
angr/utils/mp.py,sha256=
|
|
1287
|
+
angr/utils/mp.py,sha256=EPeBml7i1HNOg9OFvj-hoqaGJzKD4fKyM-mHWIaJ3Ko,1825
|
|
1286
1288
|
angr/utils/segment_list.py,sha256=lhGy16YKKaD-F0JtWmjJ6a2RFcdTrKcLfPE9ILRVtCs,20431
|
|
1287
1289
|
angr/utils/timing.py,sha256=uOowCP8kotDrKDOjlAod-guBuYkAA8zEtiAwpdwMlIU,1334
|
|
1288
1290
|
angr/utils/typing.py,sha256=_I4dzZSh1_uRKQ3PpjXseA_CaJH6ru2yAxjICkJhfmI,417
|
|
1289
|
-
angr-9.2.
|
|
1290
|
-
angr-9.2.
|
|
1291
|
-
angr-9.2.
|
|
1292
|
-
angr-9.2.
|
|
1293
|
-
angr-9.2.
|
|
1294
|
-
angr-9.2.
|
|
1291
|
+
angr-9.2.98.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1292
|
+
angr-9.2.98.dist-info/METADATA,sha256=Gp-S2YVeHajTilRoayEKgiRAVso4CYYLs7mJq3ynCi0,4796
|
|
1293
|
+
angr-9.2.98.dist-info/WHEEL,sha256=eqK0rWjSY7_bgNbVXZVO2Wi8Tj4K-w2xVOdGmXi88ck,109
|
|
1294
|
+
angr-9.2.98.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1295
|
+
angr-9.2.98.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1296
|
+
angr-9.2.98.dist-info/RECORD,,
|