angr 9.2.123__py3-none-macosx_11_0_arm64.whl → 9.2.124__py3-none-macosx_11_0_arm64.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/indirect_jump_resolvers/mips_elf_fast.py +11 -8
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +2 -2
- angr/analyses/decompiler/ail_simplifier.py +16 -19
- angr/analyses/decompiler/callsite_maker.py +8 -7
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +24 -2
- angr/analyses/decompiler/clinic.py +27 -1
- angr/analyses/decompiler/condition_processor.py +10 -3
- angr/analyses/decompiler/decompilation_cache.py +2 -0
- angr/analyses/decompiler/decompiler.py +50 -8
- angr/analyses/decompiler/dephication/graph_vvar_mapping.py +10 -2
- angr/analyses/decompiler/dephication/rewriting_engine.py +64 -1
- angr/analyses/decompiler/expression_narrower.py +5 -1
- angr/analyses/decompiler/optimization_passes/div_simplifier.py +4 -1
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +7 -0
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +23 -4
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +3 -1
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +8 -5
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +10 -5
- angr/analyses/decompiler/optimization_passes/return_duplicator_low.py +18 -7
- angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py +6 -0
- angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py +8 -2
- angr/analyses/decompiler/region_identifier.py +36 -0
- angr/analyses/decompiler/region_simplifiers/loop.py +2 -8
- angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py +9 -3
- angr/analyses/decompiler/ssailification/rewriting.py +5 -2
- angr/analyses/decompiler/ssailification/rewriting_engine.py +151 -25
- angr/analyses/decompiler/ssailification/rewriting_state.py +1 -0
- angr/analyses/decompiler/ssailification/ssailification.py +17 -9
- angr/analyses/decompiler/ssailification/traversal.py +3 -1
- angr/analyses/decompiler/ssailification/traversal_engine.py +35 -8
- angr/analyses/decompiler/ssailification/traversal_state.py +1 -0
- angr/analyses/decompiler/structured_codegen/c.py +42 -4
- angr/analyses/decompiler/structuring/phoenix.py +3 -0
- angr/analyses/propagator/engine_ail.py +10 -3
- angr/analyses/reaching_definitions/engine_ail.py +10 -15
- angr/analyses/s_propagator.py +16 -9
- angr/analyses/s_reaching_definitions/s_rda_view.py +127 -63
- angr/analyses/variable_recovery/engine_ail.py +14 -0
- angr/analyses/variable_recovery/engine_base.py +11 -0
- angr/engines/light/engine.py +12 -0
- angr/knowledge_plugins/__init__.py +2 -0
- angr/knowledge_plugins/decompilation.py +45 -0
- angr/knowledge_plugins/key_definitions/atoms.py +8 -0
- angr/lib/angr_native.dylib +0 -0
- angr/procedures/definitions/parse_win32json.py +2 -1
- angr/storage/memory_mixins/actions_mixin.py +7 -7
- angr/storage/memory_mixins/address_concretization_mixin.py +5 -5
- angr/storage/memory_mixins/bvv_conversion_mixin.py +1 -1
- angr/storage/memory_mixins/clouseau_mixin.py +3 -3
- angr/storage/memory_mixins/conditional_store_mixin.py +3 -3
- angr/storage/memory_mixins/default_filler_mixin.py +3 -3
- angr/storage/memory_mixins/memory_mixin.py +45 -34
- angr/storage/memory_mixins/paged_memory/page_backer_mixins.py +15 -14
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +27 -16
- angr/storage/memory_mixins/paged_memory/pages/cooperation.py +18 -9
- angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +5 -5
- angr/storage/memory_mixins/paged_memory/pages/multi_values.py +89 -55
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +16 -25
- angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +11 -9
- angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +23 -7
- angr/storage/memory_mixins/paged_memory/privileged_mixin.py +1 -1
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +9 -7
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +9 -9
- angr/storage/memory_mixins/regioned_memory/static_find_mixin.py +1 -0
- angr/storage/memory_mixins/simple_interface_mixin.py +2 -2
- angr/storage/memory_mixins/simplification_mixin.py +2 -2
- angr/storage/memory_mixins/size_resolution_mixin.py +1 -1
- angr/storage/memory_mixins/slotted_memory.py +3 -3
- angr/storage/memory_mixins/smart_find_mixin.py +1 -0
- angr/storage/memory_mixins/underconstrained_mixin.py +5 -5
- angr/storage/memory_mixins/unwrapper_mixin.py +4 -4
- angr/storage/memory_object.py +4 -3
- angr/utils/constants.py +1 -1
- angr/utils/graph.py +15 -0
- angr/vaults.py +2 -2
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/METADATA +6 -6
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/RECORD +84 -83
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/WHEEL +1 -1
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/LICENSE +0 -0
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/entry_points.txt +0 -0
- {angr-9.2.123.dist-info → angr-9.2.124.dist-info}/top_level.txt +0 -0
|
@@ -22,15 +22,15 @@ class UnderconstrainedMixin(MemoryMixin):
|
|
|
22
22
|
out._unconstrained_range = self._unconstrained_range
|
|
23
23
|
return out
|
|
24
24
|
|
|
25
|
-
def load(self, addr, **kwargs):
|
|
25
|
+
def load(self, addr, size=None, **kwargs):
|
|
26
26
|
self._constrain_underconstrained_index(addr)
|
|
27
|
-
return super().load(addr, **kwargs)
|
|
27
|
+
return super().load(addr, size, **kwargs)
|
|
28
28
|
|
|
29
|
-
def store(self, addr, data, **kwargs):
|
|
29
|
+
def store(self, addr, data, size=None, **kwargs):
|
|
30
30
|
self._constrain_underconstrained_index(addr)
|
|
31
|
-
super().store(addr, data, **kwargs)
|
|
31
|
+
super().store(addr, data, size, **kwargs)
|
|
32
32
|
|
|
33
|
-
def _default_value(self, addr, size, name=None, key=None, inspect=True, events=True, **kwargs):
|
|
33
|
+
def _default_value(self, addr, size, *, name=None, key=None, inspect=True, events=True, **kwargs):
|
|
34
34
|
if o.UNDER_CONSTRAINED_SYMEXEC in self.state.options and type(addr) is int:
|
|
35
35
|
if self.category == "mem":
|
|
36
36
|
alloc_depth = self.state.uc_manager.get_alloc_depth(addr)
|
|
@@ -8,18 +8,18 @@ class UnwrapperMixin(MemoryMixin):
|
|
|
8
8
|
This mixin processes SimActionObjects by passing on their .ast field.
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
def store(self, addr, data, size=None, condition=None, **kwargs):
|
|
11
|
+
def store(self, addr, data, size=None, *, condition=None, **kwargs):
|
|
12
12
|
return super().store(
|
|
13
13
|
_raw_ast(addr), _raw_ast(data), size=_raw_ast(size), condition=_raw_ast(condition), **kwargs
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
def load(self, addr, size=None, condition=None, fallback=None, **kwargs):
|
|
16
|
+
def load(self, addr, size=None, *, condition=None, fallback=None, **kwargs):
|
|
17
17
|
return super().load(
|
|
18
18
|
_raw_ast(addr), size=_raw_ast(size), condition=_raw_ast(condition), fallback=_raw_ast(fallback), **kwargs
|
|
19
19
|
)
|
|
20
20
|
|
|
21
|
-
def find(self, addr,
|
|
22
|
-
return super().find(_raw_ast(addr), _raw_ast(
|
|
21
|
+
def find(self, addr, data, max_search, *, default=None, **kwargs):
|
|
22
|
+
return super().find(_raw_ast(addr), _raw_ast(data), max_search, default=_raw_ast(default), **kwargs)
|
|
23
23
|
|
|
24
24
|
def copy_contents(self, dst, src, size, condition=None, **kwargs):
|
|
25
25
|
return super().copy_contents(_raw_ast(dst), _raw_ast(src), _raw_ast(size), _raw_ast(condition), **kwargs)
|
angr/storage/memory_object.py
CHANGED
|
@@ -42,7 +42,7 @@ class SimMemoryObject:
|
|
|
42
42
|
raise SimMemoryError("bytes can only be stored big-endian")
|
|
43
43
|
self._byte_width = byte_width
|
|
44
44
|
self.base = base
|
|
45
|
-
self.object = obj
|
|
45
|
+
self.object: claripy.ast.BV | claripy.ast.FP = obj
|
|
46
46
|
self.length = obj_bit_size(obj) // self._byte_width if length is None else length
|
|
47
47
|
self.endness = endness
|
|
48
48
|
self._concrete_bytes: bytes | None = None
|
|
@@ -98,8 +98,9 @@ class SimMemoryObject:
|
|
|
98
98
|
return o if allow_concrete else claripy.BVV(o)
|
|
99
99
|
|
|
100
100
|
offset = addr - self.base
|
|
101
|
+
bv_obj = claripy.fpToIEEEBV(self.object) if isinstance(self.object, claripy.ast.FP) else self.object
|
|
101
102
|
try:
|
|
102
|
-
thing = bv_slice(
|
|
103
|
+
thing = bv_slice(bv_obj, offset, length, self.endness == "Iend_LE", self._byte_width)
|
|
103
104
|
except claripy.ClaripyOperationError:
|
|
104
105
|
# hacks to handle address space wrapping
|
|
105
106
|
if offset >= 0:
|
|
@@ -110,7 +111,7 @@ class SimMemoryObject:
|
|
|
110
111
|
offset += 2**64
|
|
111
112
|
else:
|
|
112
113
|
raise
|
|
113
|
-
thing = bv_slice(
|
|
114
|
+
thing = bv_slice(bv_obj, offset, length, self.endness == "Iend_LE", self._byte_width)
|
|
114
115
|
|
|
115
116
|
if self.endness != endness:
|
|
116
117
|
thing = thing.reversed
|
angr/utils/constants.py
CHANGED
angr/utils/graph.py
CHANGED
|
@@ -414,6 +414,7 @@ class Dominators:
|
|
|
414
414
|
container_nodes = {}
|
|
415
415
|
|
|
416
416
|
traversed_nodes = set()
|
|
417
|
+
endnode_encountered = False
|
|
417
418
|
while queue:
|
|
418
419
|
node = queue.pop()
|
|
419
420
|
|
|
@@ -433,9 +434,11 @@ class Dominators:
|
|
|
433
434
|
# may end with a loop.
|
|
434
435
|
if self._reverse:
|
|
435
436
|
# Add an edge between the start node and this node
|
|
437
|
+
endnode_encountered = True
|
|
436
438
|
new_graph.add_edge(start_node, container_node)
|
|
437
439
|
else:
|
|
438
440
|
# Add an edge between our this node and end node
|
|
441
|
+
endnode_encountered = True
|
|
439
442
|
new_graph.add_edge(container_node, end_node)
|
|
440
443
|
|
|
441
444
|
for s in successors:
|
|
@@ -451,6 +454,18 @@ class Dominators:
|
|
|
451
454
|
if container_s not in traversed_nodes:
|
|
452
455
|
queue.append(s)
|
|
453
456
|
|
|
457
|
+
if not endnode_encountered:
|
|
458
|
+
# the graph is a circle with no end node. we run it with DFS to identify an end node
|
|
459
|
+
nn = next((nn for nn in networkx.dfs_postorder_nodes(graph) if nn in container_nodes), None)
|
|
460
|
+
if nn is not None:
|
|
461
|
+
if self._reverse:
|
|
462
|
+
new_graph.add_edge(start_node, container_nodes[nn])
|
|
463
|
+
else:
|
|
464
|
+
new_graph.add_edge(container_nodes[nn], end_node)
|
|
465
|
+
else:
|
|
466
|
+
# the graph must be empty - totally unexpected!
|
|
467
|
+
raise RuntimeError("Cannot find any end node candidates in the graph. Is the graph empty?")
|
|
468
|
+
|
|
454
469
|
if self._reverse:
|
|
455
470
|
# Add the end node
|
|
456
471
|
new_graph.add_edge(container_nodes[n], end_node)
|
angr/vaults.py
CHANGED
|
@@ -311,7 +311,7 @@ class VaultShelf(VaultDict):
|
|
|
311
311
|
|
|
312
312
|
def __init__(self, path=None):
|
|
313
313
|
self._path = tempfile.mktemp() if path is None else path
|
|
314
|
-
s = shelve.open(self._path, protocol=-1)
|
|
314
|
+
s = shelve.open(self._path, protocol=-1) # noqa: SIM115
|
|
315
315
|
super().__init__(s)
|
|
316
316
|
|
|
317
317
|
def close(self):
|
|
@@ -334,7 +334,7 @@ class VaultDirShelf(VaultDict):
|
|
|
334
334
|
@contextlib.contextmanager
|
|
335
335
|
def _locked_shelve(self, shelve_path):
|
|
336
336
|
with self._lock:
|
|
337
|
-
self._dict = shelve.open(shelve_path, protocol=-1)
|
|
337
|
+
self._dict = shelve.open(shelve_path, protocol=-1) # noqa: SIM115
|
|
338
338
|
yield
|
|
339
339
|
self._dict.close()
|
|
340
340
|
self._dict = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.124
|
|
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
|
|
@@ -16,13 +16,13 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: CppHeaderParser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: ailment==9.2.124
|
|
20
|
+
Requires-Dist: archinfo==9.2.124
|
|
21
21
|
Requires-Dist: cachetools
|
|
22
22
|
Requires-Dist: capstone==5.0.3
|
|
23
23
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
24
|
+
Requires-Dist: claripy==9.2.124
|
|
25
|
+
Requires-Dist: cle==9.2.124
|
|
26
26
|
Requires-Dist: itanium-demangler
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: nampa
|
|
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=5.28.2
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: pycparser>=2.18
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.124
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=LP2q5oYZ83AH1Es8f-vhT-XMCgT_HqDb_S7z8EdaSNI,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=5fiS9TPt5r1_8g_qSfD2XkETlBdm5MTClBIQKqhm040,10624
|
|
4
4
|
angr/blade.py,sha256=GpbEumxMsb_6qD7TbtfZuW2CMzV7W1iwqYzQWYlXnxM,15394
|
|
@@ -25,7 +25,7 @@ angr/sim_variable.py,sha256=oN0EIj8Y7vpdZgX0Hp8OMix40EvAvFBmNSH2KkgtAPM,16404
|
|
|
25
25
|
angr/slicer.py,sha256=74ujgNMKcEIHM8lqal69Cbls07yCxpxvi-jUYeScfaU,10668
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
27
27
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
28
|
-
angr/vaults.py,sha256=
|
|
28
|
+
angr/vaults.py,sha256=v_RBKEGN2wkyOoskC_akKSlawcRtMicukKh1O1hxrJk,9719
|
|
29
29
|
angr/analyses/__init__.py,sha256=jipIm_HhzMFYr_mtI1OaRUStb-hYW7wS0AKYAVKslC0,3060
|
|
30
30
|
angr/analyses/analysis.py,sha256=ggR1xFe0HSpLhkqiJtmzm8qmS5H-7xZDwhYf4IyBNf8,14551
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=pLMeo7Y2niifNmtfIzMbQDlRy_w5GbKi1sYa0XVhPBA,27228
|
|
@@ -52,7 +52,7 @@ angr/analyses/loopfinder.py,sha256=C9Vo-Lv4a0SL7xbfzlWt9nFbv6tOjaEHgY1cW3M2Nyg,7
|
|
|
52
52
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
53
53
|
angr/analyses/reassembler.py,sha256=y41XIGWqCVvwFlE3uACEMFLR-vByKkOazC405UPCOpM,98524
|
|
54
54
|
angr/analyses/s_liveness.py,sha256=YI-N62--Wo8B4yB5lvUi4mFBNqxwRxYq-p3zXR4qFNs,5213
|
|
55
|
-
angr/analyses/s_propagator.py,sha256=
|
|
55
|
+
angr/analyses/s_propagator.py,sha256=vmOnkwrBQTvh3WJbAXY7R4imAW_AKzYoeRM311oXVsA,11311
|
|
56
56
|
angr/analyses/soot_class_hierarchy.py,sha256=AtvXMAlz6CVvfbtkPY4ghouH_1mNnPg9s9jFhZwWvEw,8741
|
|
57
57
|
angr/analyses/stack_pointer_tracker.py,sha256=5NZf4muUFIJX-F605n5LMw8ihA648-FA4Bm5mAcsHBE,31379
|
|
58
58
|
angr/analyses/static_hooker.py,sha256=lSVOZWiLl3fArz41fEbPMPvdsmlo40BeOeaVmeDxFow,1765
|
|
@@ -77,8 +77,8 @@ angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=AIA6YeWlzBAOwhd
|
|
|
77
77
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=xD-iVlOmYljEwubiff5tNPvdEl7aQhzMQWWjA7l2C_s,5277
|
|
78
78
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=v555keK0pfM451YzWbIC0pMG1pQu1wCme1moWaMPqGo,1541
|
|
79
79
|
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=PjBF1a_tnaj1_vTQJgUd-ALM_oCX9mpBrfQBIOaJ6nk,101797
|
|
80
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=
|
|
81
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=
|
|
80
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
81
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
82
82
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=ppqn5vYGOD8HknweabD7NWgZmoBgjkOC6m9t-XD46T0,992
|
|
83
83
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
84
84
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=ddM_NmkLJNiU8fo-gxaA-iyrNX4CLoRYEtgjeuQbj_Q,2921
|
|
@@ -92,32 +92,32 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=QN_m2yDyOWnRHg1l4n6dKD
|
|
|
92
92
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
93
93
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
94
94
|
angr/analyses/decompiler/__init__.py,sha256=JAHy5toHIzNxlRnht8geYexKueYhhCGHs7GM4E11AN4,1162
|
|
95
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
95
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=F47aJt_0BIowrmT4CDhJ0uarnbvb-WUxnn_nOQYhRN8,71814
|
|
96
96
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
97
97
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
98
98
|
angr/analyses/decompiler/block_similarity.py,sha256=ISMoOm-TGJ_1wD2i_4m8IYTletgnP66gReQESJnfvS0,6873
|
|
99
99
|
angr/analyses/decompiler/block_simplifier.py,sha256=_WYyfFW8bJ_-RkrudJIlDdHh9fc6_aHkuwzW9gylY-k,13922
|
|
100
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
101
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
102
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
103
|
-
angr/analyses/decompiler/decompilation_cache.py,sha256=
|
|
100
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=BcXjx58pC5GyveGdyLIICMhC9pzG4uKcVak5OkR_iIU,18491
|
|
101
|
+
angr/analyses/decompiler/clinic.py,sha256=MaHsTU_zQ1cGQW_PECQ7AN9tXbbx3jQc0JjNnw8NiGQ,104867
|
|
102
|
+
angr/analyses/decompiler/condition_processor.py,sha256=mBJrBnCP3Y3JkJXzihaJwGgelbWmLl561FjD49yevVU,51155
|
|
103
|
+
angr/analyses/decompiler/decompilation_cache.py,sha256=dnlY0w4-ViAFz_M1qCjXbGNOLiMlDG8hJW6z2x-VKEs,1230
|
|
104
104
|
angr/analyses/decompiler/decompilation_options.py,sha256=QWUGnfQ0FUekGs_I6X-ZKvAvL39VX2hFRcZrlXd72fY,7957
|
|
105
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
105
|
+
angr/analyses/decompiler/decompiler.py,sha256=EUqb_ePQcAIHocG7c7IZg1_UblUD-bu4kk2NuF5QMvs,26501
|
|
106
106
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
107
|
-
angr/analyses/decompiler/expression_narrower.py,sha256=
|
|
107
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=TvkqtgNI9aDsquqyNFH5kXLW04rP_J940GFhrGopxP4,10343
|
|
108
108
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
109
109
|
angr/analyses/decompiler/graph_region.py,sha256=PqXOqxOtk8haGNB7zlPzvXgkE0JdeGCIpLIUSeKswo8,16661
|
|
110
110
|
angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1LGX31o3_Cz1Z5wRyMIl8,1173
|
|
111
111
|
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
112
112
|
angr/analyses/decompiler/redundant_label_remover.py,sha256=J9hpP3C_P08v84FjVU0q5Rmj5M1N9q3HKWSWsA2u7Yg,5879
|
|
113
|
-
angr/analyses/decompiler/region_identifier.py,sha256=
|
|
113
|
+
angr/analyses/decompiler/region_identifier.py,sha256=FUynH4k09y5NiTdor8PLiPFviDcdWpzwz0xa9fRocJs,47293
|
|
114
114
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
115
115
|
angr/analyses/decompiler/return_maker.py,sha256=mCJdEcnU8P5sld5B-b5e2YLilct98gJa7VWAMXT2wIY,2502
|
|
116
116
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
117
117
|
angr/analyses/decompiler/sequence_walker.py,sha256=ODDPnChZ3Li0JyIXDR41JW9zvCsfPF5JvGYDL52wAYI,9375
|
|
118
118
|
angr/analyses/decompiler/utils.py,sha256=ldej1mpMKsWYgENa5qG4VTeoCrID-9JudTaaFLTQEco,30456
|
|
119
119
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=pTCBcuro4f8bnK7N6D48Y7Dh-2QwyzgVY33LlUBHcZE,137
|
|
120
|
-
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=
|
|
120
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=5yFpxu2U9ySRGx0F5NOOgHKpYlZ57Bswe-uIOTc-du4,23422
|
|
121
121
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=8UyvC5BfQmYWJ_WPn7Vrt3c6YlEr0PdSzd8sPOvwlds,496
|
|
122
122
|
angr/analyses/decompiler/counters/__init__.py,sha256=IkNt9hIc8UMTxv72r0NNUiXYSLWROWQyxe7Vn0UNiGE,480
|
|
123
123
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
@@ -128,8 +128,8 @@ angr/analyses/decompiler/dephication/__init__.py,sha256=0Ufg3SSL7VkKBn-sfMZg2XRA
|
|
|
128
128
|
angr/analyses/decompiler/dephication/dephication_base.py,sha256=UToP1wF9814qxzJpQcqGljYlOkYA7mwvLveGn41089o,3132
|
|
129
129
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
130
130
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=R0rlwYL0Cnt1UPjdEJZG4kEvruKPr8I1hfhTMTZnBxA,3405
|
|
131
|
-
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=
|
|
132
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
131
|
+
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=KeZ6VIQAB-Jy4bGUychFCKyinK3rKwy8E9_25ImlKhQ,13724
|
|
132
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=3KUIxwUmfTZj2Jm1mB98J5vMkHqy4LLPYTrLzZfLbBA,10442
|
|
133
133
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=q29kS8lOs_-mxgJMtQvoZdw6l3q2lUDeXcTcGienIrY,4343
|
|
134
134
|
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=HcewOuaA5dafuSHaXAvViAxasqbVJRVQ2qMuDCSi00s,4205
|
|
135
135
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
@@ -139,26 +139,26 @@ angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=ApFU3WFWd2em
|
|
|
139
139
|
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=D0M5-RosTsHQC4cnPmsByhC-szOpykLN-XCuJ06GAos,13117
|
|
140
140
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
141
141
|
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=xa8I8GqGybGqQY_5bljBYb69Nke0r1q3Rt9rAs38aIQ,2365
|
|
142
|
-
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=
|
|
142
|
+
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=Cju0NE3fo_ZC65M3Jl_Y67uK9I8XWEjOFuJonAd1jRM,17458
|
|
143
143
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=Wxx1vNKJ6uX8vgQXf6iXbb0wpj4r1g50G8vO0PdD4lg,11168
|
|
144
144
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
145
145
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=ULonaiVMx2g7bflZrfoEgjrW7yQJDsfdieTdV7kfGug,4031
|
|
146
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
146
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=FoqkKQM5MC2Pc4gTCKaTg9VKq_6NmmUL8fdWySIh4uc,19217
|
|
147
147
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
148
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=
|
|
148
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=zTplo_VsSfY6WR_F4SIwHFvAySUo3USDntnniD23i-A,13201
|
|
149
149
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=1Yto_EBmmB5FkwZzaAO7S0MEvbQNEknFbbq-nUU0Eao,38818
|
|
150
150
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=papR480h-t_wEWMEdu6UTmc33lPSy_MOmiMgidPGnxc,3115
|
|
151
151
|
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=sIp2YISvafpyFzn8sgGMfohJsARiS3JFX_Y3IUXD_vo,10119
|
|
152
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=Ot9iYGqHK_5TZM8cU8IUaUazDH8LJjf1EcG4Av0Udv8,21382
|
|
153
153
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=tc4FruEl0sFpm1DUu9g8gWlueRm0t9rhfHsdUrVplBo,7932
|
|
154
154
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
155
155
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
157
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=
|
|
158
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256
|
|
156
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=7QO_sJBR8WgjRxD8PXwxu0NeoCQchNJNClcwMzEmOsU,24921
|
|
157
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=ICDYwQJt5E2OVasdqn42jzbjwUXhSj6Plh3Y1iUHpAQ,2178
|
|
158
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
159
159
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=cEbZ5jyYbRiBJSzVJbnqssUY5MzirXXgzvzpxllY_Zk,14343
|
|
160
|
-
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=
|
|
161
|
-
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=
|
|
160
|
+
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=pxb0jyDQ5BXkjzzo4JiHEA1NZeKVmp0G5Pd-T5_UIa8,4758
|
|
161
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=cpbsP6_ilZDu2M_jX8TEnwVrsQXljHEjSMw25HyK6PM,12806
|
|
162
162
|
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=6NxaX2oT6BMkevb8xt9vlS3Jl-CmSK59F0FVab68B48,3088
|
|
163
163
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
164
164
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=nLu-s4wn6b3z6MlItwCH1kWpeAc4C-fP3MNN3WRCSuo,21666
|
|
@@ -183,7 +183,7 @@ angr/analyses/decompiler/peephole_optimizations/bswap.py,sha256=UTkF5sYZcC45tXt9
|
|
|
183
183
|
angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=4ERanmpCQq06B6RE-AO_-jgPloyP9Jg5wcUja9iA_gI,2652
|
|
184
184
|
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=xZ129l0U5hoPXtczxZFUfZL59V7d0u2amQTO4phIpQU,1409
|
|
185
185
|
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=h3m9FIxsMpElPE3ecFfa0vnzuxwG5oJLNEqvLuMpMgI,1062
|
|
186
|
-
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=
|
|
186
|
+
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KTxUUlK74T1bcuufBRgexhDA8M_TAG_2Nqi7e2lZJg,7469
|
|
187
187
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=KTGrECpzRuIjsthtcl6IhxNPLibuclzlUCcTE11nrio,1701
|
|
188
188
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
189
189
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
@@ -194,7 +194,7 @@ angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,
|
|
|
194
194
|
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=Ji4AtQnbBjIXKc3jwlF-eYMYdWZ6gvffUBfUGVlte04,6777
|
|
195
195
|
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=xmfB1dnSvzxFzi2W5qv-ehQdD4u0HS9ECC-WEwoTb68,1985
|
|
196
196
|
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=7R_rVBIbk-tFUYU8LMJI2RCtLJuvUMOhUL1jqE9D4u8,1135
|
|
197
|
-
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=
|
|
197
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=ut3wAJxwWTW4i4uglNEXrONG5PzNUniBGtUUZ9vmWe4,1815
|
|
198
198
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
199
199
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=ex6S-SaoIsHum5gTKFqvdx2f2Q46K_LJV-HSDR33-p4,1026
|
|
200
200
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
@@ -225,27 +225,27 @@ angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=EGHbx4qB7bPyo
|
|
|
225
225
|
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=HKAh1m8WryAR2WMGjmFIvO6DOYymlA7sKRnKfbyJfvk,6100
|
|
226
226
|
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=rLH5csZCB5-cCsWJh2SdvWLVqgGfnfi7YqQlE7M328I,4406
|
|
227
227
|
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
228
|
-
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=
|
|
228
|
+
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=uKieYMvygDt8GhK1b_EjHTP064I1FTEZd6HIEntB0K8,6315
|
|
229
229
|
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=LY7TH54eCZOqKW67b0OVfS_-35rRoHPhazdyB8Ng4vE,600
|
|
230
230
|
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=ByEbrHPAn0fA333QUi08IXRPEEaxymwDeEDK1FWAljE,8316
|
|
231
|
-
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
231
|
+
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=lsTKhU6aljpXPSz-K9qDhgySuB2FsGrF9j7buWqiYr0,24980
|
|
232
232
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
233
233
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
234
|
-
angr/analyses/decompiler/ssailification/rewriting.py,sha256=
|
|
235
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
236
|
-
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=
|
|
237
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
238
|
-
angr/analyses/decompiler/ssailification/traversal.py,sha256=
|
|
239
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
240
|
-
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=
|
|
234
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=Ee4BZSFCjgv4q24ARNzUkbuZIXa6KbiPf_WM0kz3d64,12152
|
|
235
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=Zc5lAgjSlD0hntCk_GBhnMQ0lMI1NEl2IlAlXwenhmc,27003
|
|
236
|
+
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
237
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=bTMTwS4auYQCnY9cNwqbgdYksFym0Iro5e7qRIDmlME,8711
|
|
238
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=Er6XFmgwmpTf6W8vg9vZupO5MDvsE2y4wONYIYYXzAQ,2949
|
|
239
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=YBsWyuXyt_3q1yTnxqVaU6vL2nM3okUb9vkSGdHvJj8,5307
|
|
240
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=_AsCnLiI2HFdM6WrPyAudhc0X4aU_PziznbOgmzpDzQ,1313
|
|
241
241
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=unzkTPhZbpjf5J3GWg1iAFkW17aHFHzuByZCMKE4onQ,633
|
|
242
242
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=9Zfp2d8Oqp6TAgLJyu7v214YDBtdy3Qx8rs801wIsv0,3796
|
|
243
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
243
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=ry6_o-aClSstQXIblbk1Oq-nYBX1ZF02qsKw72o-XQs,138204
|
|
244
244
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
245
245
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=Lf4DKgDs17ohKH8UmCrnJI1BVmPrx2oIb3zXvJ7qc4U,6819
|
|
246
246
|
angr/analyses/decompiler/structuring/__init__.py,sha256=u2SGBezMdqQF_2ixo8wr66vCMedAMY-cSjQyq2m-nR8,711
|
|
247
247
|
angr/analyses/decompiler/structuring/dream.py,sha256=mPNNsNvNb-LoDcoU_HjUejRytIFY_ZyCAbK4tNq_5lM,48254
|
|
248
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
248
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=uJ6V7DMoc7DOH2b_NfnuRPvyKvB31eUIUOmuWmC7Sz4,120632
|
|
249
249
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=HRUpZiD8xlpJjHWL8WHORakuBw_ip7h8K9ichyLX1j8,7075
|
|
250
250
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
251
251
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=ql8HoTn9SG6snNmgEx1xQVeIHAlvdkASQpDwNR04YKw,41547
|
|
@@ -290,7 +290,7 @@ angr/analyses/identifier/functions/strncmp.py,sha256=CXoeiJmlEUSGW48SFkpcJoN3ZeC
|
|
|
290
290
|
angr/analyses/identifier/functions/strncpy.py,sha256=y1w7A9255j91TGKVuJLXj67lADci16EzVqQWzJAkTHo,2046
|
|
291
291
|
angr/analyses/identifier/functions/strtol.py,sha256=e_XbqYSa-s3CjDcPJkSaVnDjnTp2Z3ian67BXMxkrnE,2437
|
|
292
292
|
angr/analyses/propagator/__init__.py,sha256=lxvNUfUJYOPqO8se8Nej_NNCObLt90QFIrZhzgt5a_o,114
|
|
293
|
-
angr/analyses/propagator/engine_ail.py,sha256=
|
|
293
|
+
angr/analyses/propagator/engine_ail.py,sha256=suaYW7MzCsAN3cK_iO-i9iUGFlAbHemBreI_WgNJiCQ,68566
|
|
294
294
|
angr/analyses/propagator/engine_base.py,sha256=Q6AS10TxVTCvMf5nx2XcNuAbbe9F3TNaWYIN_uZWznY,1759
|
|
295
295
|
angr/analyses/propagator/engine_vex.py,sha256=GOO4LL_7-hyLrYlTVh39M91PbgRnscKgFVzJs5KePJ4,12735
|
|
296
296
|
angr/analyses/propagator/outdated_definition_walker.py,sha256=Ru53mz41_cUounWPQyFpBa8eUKQJnbkP_BycyG97fWw,6772
|
|
@@ -302,7 +302,7 @@ angr/analyses/propagator/vex_vars.py,sha256=-wtTnlTfSdqENVjwWi6bvGdf9bYb_n1ccsvg
|
|
|
302
302
|
angr/analyses/reaching_definitions/__init__.py,sha256=2vDM6WG6fTTw0rDO8xKJ457mGRGgqG7alxSemwEutJk,2000
|
|
303
303
|
angr/analyses/reaching_definitions/call_trace.py,sha256=KA9Pk3tC78RGi-86NBlmGEZAmrQBi6QHNHoKHzcUTio,2172
|
|
304
304
|
angr/analyses/reaching_definitions/dep_graph.py,sha256=vPDIDQDKVJR5zBWr-0D9WREpCc0BW0_Pem1kKpIRHDw,15903
|
|
305
|
-
angr/analyses/reaching_definitions/engine_ail.py,sha256=
|
|
305
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=coaXa7oVmaHAqJdsxXDCYQ271hwrLyWgLvgN7aSKtxg,45051
|
|
306
306
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=m_YRPb7wzgHd_YWaMFLDMYUHgPeNow44J1HGG587gaY,43099
|
|
307
307
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
308
308
|
angr/analyses/reaching_definitions/function_handler.py,sha256=-LVRNIDvrFzFEThewfRtfpd0-8vcXL5nOVk-_RX5hiY,28134
|
|
@@ -318,7 +318,7 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qUV
|
|
|
318
318
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
319
319
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
320
320
|
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=XBrKqy6Ky9aHqTiWiaJPMQTM4aZT9aF9OKOtiylybUM,5009
|
|
321
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
321
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=6mTtDtbBt2-C25O5ITv27oyejy5j2FNURSkBiYbMO98,11645
|
|
322
322
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=GSt-yp59h4saWx9DeL4Rp-9SaZ87hnuMD2m1pTdL3iQ,7072
|
|
323
323
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
324
324
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
@@ -331,8 +331,8 @@ angr/analyses/typehoon/typevars.py,sha256=F7CBFVplF_xy1gsUkUXnxEhBVeceXb-VvnYwnt
|
|
|
331
331
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
332
332
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
333
333
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
334
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
335
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
334
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=oOlvhYyU9FkAcWcpRE9G_simBdDMrsCEyZRasr9TzlI,28546
|
|
335
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=PKPz2OOmEYUNKiiXHZIS1LA3jBG03d-TwfdGaHfKu3Q,50374
|
|
336
336
|
angr/analyses/variable_recovery/engine_vex.py,sha256=iC9FB_wYLxJAdTsOQ8QBtIN_SXKnIDrW8eNGZgv-0-Q,18835
|
|
337
337
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=HlH_Hd6z5i3MTBHRoWq1k4tGudz8PewiM76hYv8d3ZQ,4913
|
|
338
338
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=pBXY1fb3jR2pDpLMtOjL8rH_tkjyvatObW12gYb-r1g,21742
|
|
@@ -381,7 +381,7 @@ angr/engines/syscall.py,sha256=HPAygXTIb8e4_j2DBS4LCCaAz9DNyji5mucfoYck_Dc,2162
|
|
|
381
381
|
angr/engines/unicorn.py,sha256=8ggDUXdEQl1EMiY-Tp4CnyzzMK0zZrkGObLvBwPU9uU,24496
|
|
382
382
|
angr/engines/light/__init__.py,sha256=3arK8vMsnu6TRxa1_sVWBfD7fRDHFL5kBbl9q-ui9Zw,435
|
|
383
383
|
angr/engines/light/data.py,sha256=W4g-RZcLyhqXMiyrQBhNYaf8a3NIemq4iQpbPsl_Cdg,21243
|
|
384
|
-
angr/engines/light/engine.py,sha256=
|
|
384
|
+
angr/engines/light/engine.py,sha256=wJiS2i5TMN4cuHXZbJhJvT3MjcOlhGX8OHI1hEQuBiY,46031
|
|
385
385
|
angr/engines/pcode/__init__.py,sha256=aoEeroPopUOmSplbB9XMz9ke9LXO6jtFMmI_e8X4i28,195
|
|
386
386
|
angr/engines/pcode/behavior.py,sha256=UZHWTPyRnWN28i8I6o6YgnsIa4CaN_yP36fyNu45heg,29406
|
|
387
387
|
angr/engines/pcode/cc.py,sha256=vPT7FA2tmlPUVA2ptHDNVqhAZEuZZaJYajBEIctXH54,3180
|
|
@@ -479,12 +479,13 @@ angr/exploration_techniques/unique.py,sha256=uA-BynLkUw9V1QJGdVGHDMmH020I5LWH8xd
|
|
|
479
479
|
angr/exploration_techniques/veritesting.py,sha256=XmMuNcvV3lxbAyjtuFdgB8pfGiAtvfGxRPbr1MZrDBc,1388
|
|
480
480
|
angr/flirt/__init__.py,sha256=O6Qo4OKaEkpq1kxluphTNauGjBH2WS5AuX91xlToyzA,4403
|
|
481
481
|
angr/flirt/build_sig.py,sha256=3vQl6gZWWcF2HRgTQzFP6G3st8q2vpPHzRa3GfwkBnY,10036
|
|
482
|
-
angr/knowledge_plugins/__init__.py,sha256=
|
|
482
|
+
angr/knowledge_plugins/__init__.py,sha256=03TMAHhh9o7KyFhyfKBt9FAJJ_02GslLiWQIvhCKpvY,1177
|
|
483
483
|
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
484
484
|
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
485
485
|
angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipYKJgGH9vxLLA,1037
|
|
486
486
|
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
487
487
|
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
488
|
+
angr/knowledge_plugins/decompilation.py,sha256=izceZ5UEhnF7q5EO0D1Hd7_LLKk1QHXfdv4g4kIbFS4,1346
|
|
488
489
|
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
489
490
|
angr/knowledge_plugins/labels.py,sha256=H9_as9RFSKmth-Dxwq-iibXo007ayvS7nFGnYtnN8jE,3146
|
|
490
491
|
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
@@ -503,7 +504,7 @@ angr/knowledge_plugins/functions/function_manager.py,sha256=I3CIEUjBtw2gjQiHOuS8
|
|
|
503
504
|
angr/knowledge_plugins/functions/function_parser.py,sha256=7md9BANfgtlioDJc_Zt9Jo5qffvJACM3V98iQA5L0JU,11821
|
|
504
505
|
angr/knowledge_plugins/functions/soot_function.py,sha256=oBWuhdw3LvZORVhuh98sf2UeqOLtkjt6j4Awf4NBvtc,4972
|
|
505
506
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=fVWRMdY8j2mUWwBKlgcmtnNDGS8WF1UbKjfb6xpeCM8,432
|
|
506
|
-
angr/knowledge_plugins/key_definitions/atoms.py,sha256=
|
|
507
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=0Tzu3YQatyft6PG5K2sGnn38d41fOmrRhXU51TjpoFk,11069
|
|
507
508
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=i-44XCfMyS2pK8AwW2rL0prhtxvsWB64E9pm4eDSUcY,673
|
|
508
509
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=XQaOFmDX3RpR3KpkOZQjo0RvlZ24aB3lZwssv9zAl8o,8574
|
|
509
510
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
@@ -528,7 +529,7 @@ angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyC
|
|
|
528
529
|
angr/knowledge_plugins/xrefs/xref.py,sha256=ROo_kAEKwB51whVYcGtTV0QRtYmQZV8nEoEtbQWyC9U,4883
|
|
529
530
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=Yb88z3L8Y26TfGeRHdsGWQlT9f6oWntjEg6s-kcVtUQ,4040
|
|
530
531
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
531
|
-
angr/lib/angr_native.dylib,sha256=
|
|
532
|
+
angr/lib/angr_native.dylib,sha256=C6wolEZZMV2JpRHw6-EtciOtcxMgv8xWaJJCRpPveQ4,16187984
|
|
532
533
|
angr/misc/__init__.py,sha256=ZPHXbrIdsfe_qdmq8CnXuS_bBWOy4MDT2NjwUnPgHZc,355
|
|
533
534
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
534
535
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
@@ -560,7 +561,7 @@ angr/procedures/definitions/linux_kernel.py,sha256=6um0rDrSiglpbic3OPblsfQ7oVn5r
|
|
|
560
561
|
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
561
562
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
562
563
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=lON1hncNDZrblzUM5W7CF5GA2bOQe5jIPSfkEfBhzE0,1829
|
|
563
|
-
angr/procedures/definitions/parse_win32json.py,sha256=
|
|
564
|
+
angr/procedures/definitions/parse_win32json.py,sha256=9Pp_mx4b6aJmBmoe1m8A2J5I8Xc1qsoNvPWhJQ9pq4U,110485
|
|
564
565
|
angr/procedures/definitions/types_win32.py,sha256=Iv1JT_JwzhfUpnxcKMgAwSw_huuwhi_rKkD7NMO8sow,9998099
|
|
565
566
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=dC8j-gGlKujHqmTaVvMhgUjvTPEEJ3oZ2h1MODBK7a8,1450
|
|
566
567
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=ay_JhCAB5sn6mKm_l7wjfi7PTqLdKQmHoDNwgdGl5dA,992
|
|
@@ -1259,63 +1260,63 @@ angr/state_plugins/heap/heap_ptmalloc.py,sha256=isriAHefkPwdqdkVWLzTivNYsibvhEXv
|
|
|
1259
1260
|
angr/state_plugins/heap/utils.py,sha256=GnVCryZeTWiFvYYq1xTOd59A46wvqMygSRS5z6wUuwM,830
|
|
1260
1261
|
angr/storage/__init__.py,sha256=VxLrsF_UhChqNiwnUAyTa7bstc7yd1uYnHzt54m5qUk,294
|
|
1261
1262
|
angr/storage/file.py,sha256=6gNxcp6b9XOVTa9iNi1JQwYZr3M4K9Xwa6HQKNlFPxU,48092
|
|
1262
|
-
angr/storage/memory_object.py,sha256=
|
|
1263
|
+
angr/storage/memory_object.py,sha256=1uL3r5Nw4Lni1s9D29s4mv3KSbqzqsnp2SuOjjonngE,6242
|
|
1263
1264
|
angr/storage/memory_mixins/__init__.py,sha256=f3zMGSnjtE4QpI8lDvYOv4e82-fHUa4LQh83ubmrnQI,8597
|
|
1264
1265
|
angr/storage/memory_mixins/__init__.pyi,sha256=937j60XMozvVAkjhMS7eORFTRnze8KDbRUo2gWiVt6c,1865
|
|
1265
|
-
angr/storage/memory_mixins/actions_mixin.py,sha256=
|
|
1266
|
-
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=
|
|
1267
|
-
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=
|
|
1268
|
-
angr/storage/memory_mixins/clouseau_mixin.py,sha256=
|
|
1269
|
-
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=
|
|
1266
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=L9FlA0oyQ3gvEENfs5nvHhCYBeuKeyk_TyBh5sgiF64,3493
|
|
1267
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=XtX-JgLtmV-_G4Mn8RBD6J1VH1qmSTcEsk-cbjz2l_Y,16553
|
|
1268
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=_uTB8-nu3mm789Y_dmiBgouKcOaW37iptKXASD455og,2888
|
|
1269
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=uEP0dh_s3kwzwnAY7Rf_lqj8hmFfnguuzz_ghr9EEkw,5581
|
|
1270
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=OekCAvHcwnzUbRN5OTzlWL-H_x0gaFr-iB6xUdjDeVc,1025
|
|
1270
1271
|
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=gLmp7bPvXRLGWFEHWuyAHQ1BdI5K9-47JhgdYyX2978,10290
|
|
1271
|
-
angr/storage/memory_mixins/default_filler_mixin.py,sha256=
|
|
1272
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=wbpMjzzchmLVyBByb0mDAu8WEyEWxwgP0hyi7sUoURQ,6014
|
|
1272
1273
|
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=qAS2QKTimhZMZ-m9QSMi9DgFQeNMmISj7S8VS-3m9hI,391
|
|
1273
1274
|
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBitcIPv-RBpcPhvFk718,3678
|
|
1274
1275
|
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=o5dat1GN646v_icb5ToeTFk8_ruywtj_QPfpdVrdDO4,15464
|
|
1275
1276
|
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=tqjpvMaGyXeKIPTO669qMhKgFwQac2h53AvpRASi3fM,1195
|
|
1276
1277
|
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
1277
|
-
angr/storage/memory_mixins/memory_mixin.py,sha256=
|
|
1278
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=ccvxbjLMO98C-PPlRCtTKDrB53eWtq2VAkhSkcADOiM,6474
|
|
1278
1279
|
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
1279
1280
|
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=xlpK_Dwhxey1_ipyutUzywdUUS2M0YbUXsjEjH93rsQ,3399
|
|
1280
|
-
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=
|
|
1281
|
-
angr/storage/memory_mixins/simplification_mixin.py,sha256=
|
|
1282
|
-
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=
|
|
1283
|
-
angr/storage/memory_mixins/slotted_memory.py,sha256=
|
|
1284
|
-
angr/storage/memory_mixins/smart_find_mixin.py,sha256=
|
|
1281
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=isJ3_vuElWtLTW7MxweHs5WJOuawr1LmLlS7-yakWd4,2576
|
|
1282
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=ajjiQ4ulbVQ1WgygR7WuM7vrOzsFGa4D-11R7ipmr1c,594
|
|
1283
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=7LwcgsuJpwPlQ8LzX5q0bZj2PTkLs_cngrd3lDiHd2s,5728
|
|
1284
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=ualfyGbaBqb0hjfde_YomZYT-6U_und_wj7KV_z8wKY,4966
|
|
1285
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=bYGZCtd9OOJqs5fbBUSQgBjVgLQokT7BBT4PYpZc1eo,5725
|
|
1285
1286
|
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=3YirCfFTWcdYwmfM0X5yJMiJ2s80a75Ha43WNnhTwnA,501
|
|
1286
1287
|
angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhwwf4tmI4mWlxS0zVYBM,721
|
|
1287
|
-
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=
|
|
1288
|
-
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=
|
|
1288
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=ipMIH7Te1F4yXpXtvpOhSN_0hfYcesm3MQ63d-WKuFY,2641
|
|
1289
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=SDSVg1w9xQVGktBBh8_e9UZqEnz2-Qadd--ePBDqsvE,1112
|
|
1289
1290
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1290
|
-
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=
|
|
1291
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1291
|
+
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=JXGbywe5hLJF74yokUTyQo92fwPZ3ayvyLIqqFPSFxY,10550
|
|
1292
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=JF17l3VGCCRI79khjZpbguGsWasQt32SZu7Xj8wm6HQ,29487
|
|
1292
1293
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1293
|
-
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=
|
|
1294
|
+
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=1j2xIfr9n0JztbsY0w9PfDr-N0HUVAb1m8Y-Sv2hdDM,1579
|
|
1294
1295
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
1295
1296
|
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=J_9a9OmfklxLGRrzkuYc3_gTfFnsFru9IQMfYTYNdbA,1744
|
|
1296
|
-
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=
|
|
1297
|
+
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=1-gi9LooOPxYGzwPuLwzRcPANLSg5Ad-eB5YV1DsoyY,13242
|
|
1297
1298
|
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=PZnWHtzOWeekHQ--JgGXPn5AGDqYS40LvpkwP9I-w7A,3037
|
|
1298
|
-
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=
|
|
1299
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
1299
1300
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=uqxaCFMqo0XlMQGN-iqUYm_IqMTOXOnnp_vCtWL4Yug,14413
|
|
1300
|
-
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=
|
|
1301
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=
|
|
1302
|
-
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=
|
|
1301
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=a6M-lgeAgYUQkebLrJsK2y_Z5bckP5qNADf3Z5c1GBk,13018
|
|
1302
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=eBgOZR4g4J0xmAMPjGABmiymhSRk_lvTTczN_kbSa1o,16939
|
|
1303
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
1303
1304
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
1304
|
-
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=
|
|
1305
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=dy7K6QdYFKkAKcBLd24rB3K-eL8frPvIggyO3q7Mi38,20369
|
|
1305
1306
|
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=IDqg70J_-ueYoIdZAEa6DAsXEC1Sy7VKuT-eC8lgi-8,577
|
|
1306
1307
|
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
1307
1308
|
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=5Vvgi3aiqxidClEfOoa1qTyHcMuyv3tnrKaPdeoXjCE,857
|
|
1308
1309
|
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=wcvhmzDyuPqmHYFkawr-no6J8d9t1Rhlz1Iu27ae3-E,201
|
|
1309
1310
|
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=4dvk4OVqudKV6DcIh7Z0O3J7HUSvMNhn53Ghi7g6Nf8,9177
|
|
1310
|
-
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=
|
|
1311
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=zk_nLTyXbFvlCRnqxr1rAs_WbCmv1wTE2W8M2ZerPcs,7834
|
|
1311
1312
|
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=Sa_UmOMho3_6P4WG_c989zfU8ucO4oNgnfLAnKEOuU4,4946
|
|
1312
|
-
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=
|
|
1313
|
-
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=
|
|
1313
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=D1iSkeTPMdduLBNo7A9FNjeyeL9tIO0aY_yiWddHyvI,17820
|
|
1314
|
+
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=tWyiNrMxmGv-OSSkJq1ZvGUiZg2JUIeETcYa_EULIcs,2173
|
|
1314
1315
|
angr/utils/__init__.py,sha256=knkVHIwNqvlu-QgvPorAscSpyPWogzfZwP5OnYmLbmk,1159
|
|
1315
1316
|
angr/utils/ail.py,sha256=8_FloZ6cP89D2Nfc_2wCPcuVv7ny-aP-OKS3syCSMLk,1054
|
|
1316
1317
|
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1317
1318
|
angr/utils/bits.py,sha256=-yXIHPsJ3nYNNdnAnqLCmjAm_beAfZdbWHVQGWuAGd8,294
|
|
1318
|
-
angr/utils/constants.py,sha256=
|
|
1319
|
+
angr/utils/constants.py,sha256=ZnK6Ed-1U_8yaw-7ZaCLSM0-z7bSuKPg715bBrquxKE,257
|
|
1319
1320
|
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1320
1321
|
angr/utils/dynamic_dictlist.py,sha256=n-HlT1H8yk4KowLTJ6II5ioJr5qn66DW3t4hhesx1Vs,3048
|
|
1321
1322
|
angr/utils/endness.py,sha256=wBcek3rwRQCYdMVFOV5h5q16Ahgjn2x_zZdPeZQEui0,501
|
|
@@ -1323,7 +1324,7 @@ angr/utils/enums_conv.py,sha256=dQqZwspTq8tR5auBEnbpigk9CLkYqduAFgfBsOXqPms,2129
|
|
|
1323
1324
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1324
1325
|
angr/utils/formatting.py,sha256=6szFjm3RtlD3G_csDmRgEB8JFNGC3GfZC8YdGYa1ZHg,4242
|
|
1325
1326
|
angr/utils/funcid.py,sha256=dSGbKUWpTzy48374lJqHyRefJ6K7B7jRVhYHmpGmD3I,5256
|
|
1326
|
-
angr/utils/graph.py,sha256=
|
|
1327
|
+
angr/utils/graph.py,sha256=Sjm1rV1OWInzHVGcyecerNhHRn3eqqQhEjcEhrFLK8M,30489
|
|
1327
1328
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1328
1329
|
angr/utils/library.py,sha256=29153tRKqamfxwpmG4bOpv5hMenX94MNxZ0lqmV8Sqo,7140
|
|
1329
1330
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
@@ -1334,9 +1335,9 @@ angr/utils/timing.py,sha256=ELuRPzdRSHzOATgtAzTFByMlVr021ypMrsvtpopreLg,1481
|
|
|
1334
1335
|
angr/utils/ssa/__init__.py,sha256=Z7yXY0xe4X-T4bfdK0YtL9ZFnYF-JhQuJ16ZW-wpSZI,7886
|
|
1335
1336
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1336
1337
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1337
|
-
angr-9.2.
|
|
1338
|
-
angr-9.2.
|
|
1339
|
-
angr-9.2.
|
|
1340
|
-
angr-9.2.
|
|
1341
|
-
angr-9.2.
|
|
1342
|
-
angr-9.2.
|
|
1338
|
+
angr-9.2.124.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1339
|
+
angr-9.2.124.dist-info/METADATA,sha256=V5f1NckrmQjlwlc786BRKwSxCERShpNQXNeB8AY_CEg,4762
|
|
1340
|
+
angr-9.2.124.dist-info/WHEEL,sha256=Ufp67CyBeCju7UpQuXLCaDyT7GL0lf--69EKPdd8agU,105
|
|
1341
|
+
angr-9.2.124.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1342
|
+
angr-9.2.124.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1343
|
+
angr-9.2.124.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|