angr 9.2.162__cp310-abi3-manylinux2014_aarch64.whl → 9.2.164__cp310-abi3-manylinux2014_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/ailment/converter_vex.py +1 -1
- angr/ailment/expression.py +17 -1
- angr/analyses/cfg/cfg_base.py +17 -14
- angr/analyses/cfg/cfg_emulated.py +5 -1
- angr/analyses/cfg/cfg_fast.py +27 -4
- angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py +11 -1
- angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py +194 -41
- angr/analyses/decompiler/ail_simplifier.py +19 -5
- angr/analyses/decompiler/callsite_maker.py +33 -17
- angr/analyses/decompiler/clinic.py +6 -6
- angr/analyses/decompiler/graph_region.py +19 -0
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +1 -1
- angr/analyses/decompiler/region_identifier.py +22 -1
- angr/analyses/decompiler/structuring/phoenix.py +72 -20
- angr/analyses/decompiler/structuring/recursive_structurer.py +3 -4
- angr/analyses/decompiler/structuring/structurer_nodes.py +3 -0
- angr/analyses/decompiler/utils.py +17 -5
- angr/analyses/fcp/fcp.py +11 -10
- angr/analyses/flirt/flirt_sig.py +5 -2
- angr/analyses/reaching_definitions/function_handler.py +1 -1
- angr/analyses/reaching_definitions/function_handler_library/stdio.py +7 -6
- angr/analyses/reaching_definitions/function_handler_library/stdlib.py +10 -4
- angr/analyses/reaching_definitions/function_handler_library/string.py +13 -2
- angr/analyses/reaching_definitions/function_handler_library/unistd.py +7 -0
- angr/analyses/s_reaching_definitions/s_rda_view.py +2 -1
- angr/analyses/typehoon/typeconsts.py +3 -1
- angr/analyses/variable_recovery/engine_base.py +6 -10
- angr/blade.py +20 -15
- angr/engines/icicle.py +7 -2
- angr/knowledge_plugins/propagations/propagation_model.py +7 -0
- angr/project.py +5 -2
- angr/rustylib.abi3.so +0 -0
- angr/sim_type.py +18 -3
- angr/utils/constants.py +1 -1
- angr/utils/graph.py +1 -1
- angr/utils/vex.py +11 -0
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/METADATA +5 -5
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/RECORD +43 -42
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/WHEEL +0 -0
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/entry_points.txt +0 -0
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/licenses/LICENSE +0 -0
- {angr-9.2.162.dist-info → angr-9.2.164.dist-info}/top_level.txt +0 -0
angr/blade.py
CHANGED
|
@@ -40,6 +40,7 @@ class Blade:
|
|
|
40
40
|
cross_insn_opt=False,
|
|
41
41
|
max_predecessors: int = 10,
|
|
42
42
|
include_imarks: bool = True,
|
|
43
|
+
control_dependence: bool = True,
|
|
43
44
|
):
|
|
44
45
|
"""
|
|
45
46
|
:param graph: A graph representing the control flow graph. Note that it does not take
|
|
@@ -56,6 +57,8 @@ class Blade:
|
|
|
56
57
|
:param stop_at_calls: Limit slicing within a single function. Do not proceed when encounters a call
|
|
57
58
|
edge.
|
|
58
59
|
:param include_imarks: Should IMarks (instruction boundaries) be included in the slice.
|
|
60
|
+
:param control_dependence: Whether to consider control dependencies. If True, the temps controlling
|
|
61
|
+
conditional exits will be added to the tainting set.
|
|
59
62
|
:return: None
|
|
60
63
|
"""
|
|
61
64
|
|
|
@@ -70,6 +73,7 @@ class Blade:
|
|
|
70
73
|
self._cross_insn_opt = cross_insn_opt
|
|
71
74
|
self._max_predecessors = max_predecessors
|
|
72
75
|
self._include_imarks = include_imarks
|
|
76
|
+
self._control_dependence = control_dependence
|
|
73
77
|
|
|
74
78
|
self._slice = networkx.DiGraph()
|
|
75
79
|
|
|
@@ -347,7 +351,7 @@ class Blade:
|
|
|
347
351
|
except (SimTranslationError, BadJumpkindNotification):
|
|
348
352
|
return
|
|
349
353
|
|
|
350
|
-
if exit_stmt_idx is None or exit_stmt_idx == DEFAULT_STATEMENT:
|
|
354
|
+
if self._control_dependence and (exit_stmt_idx is None or exit_stmt_idx == DEFAULT_STATEMENT):
|
|
351
355
|
# Initialize the temps set with whatever in the `next` attribute of this irsb
|
|
352
356
|
next_expr = self._get_irsb(run).next
|
|
353
357
|
if type(next_expr) is pyvex.IRExpr.RdTmp:
|
|
@@ -357,20 +361,21 @@ class Blade:
|
|
|
357
361
|
self._inslice_callback(DEFAULT_STATEMENT, None, {"irsb_addr": irsb_addr, "prev": prev})
|
|
358
362
|
prev = irsb_addr, DEFAULT_STATEMENT
|
|
359
363
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
364
|
+
if self._control_dependence:
|
|
365
|
+
# if there are conditional exits, we *always* add them into the slice (so if they should not be taken, we
|
|
366
|
+
# do not lose the condition)
|
|
367
|
+
for stmt_idx_, s_ in enumerate(self._get_irsb(run).statements):
|
|
368
|
+
if type(s_) is not pyvex.IRStmt.Exit:
|
|
369
|
+
continue
|
|
370
|
+
if s_.jumpkind != "Ijk_Boring":
|
|
371
|
+
continue
|
|
372
|
+
|
|
373
|
+
if type(s_.guard) is pyvex.IRExpr.RdTmp:
|
|
374
|
+
temps.add(s_.guard.tmp)
|
|
375
|
+
|
|
376
|
+
# Put it in our slice
|
|
377
|
+
self._inslice_callback(stmt_idx_, s_, {"irsb_addr": irsb_addr, "prev": prev})
|
|
378
|
+
prev = (irsb_addr, stmt_idx_)
|
|
374
379
|
|
|
375
380
|
infodict = {"irsb_addr": irsb_addr, "prev": prev, "has_statement": False}
|
|
376
381
|
|
angr/engines/icicle.py
CHANGED
|
@@ -123,7 +123,7 @@ class IcicleEngine(ConcreteEngine):
|
|
|
123
123
|
if proj is None:
|
|
124
124
|
raise ValueError("IcicleEngine requires a project to be set")
|
|
125
125
|
|
|
126
|
-
emu = Icicle(icicle_arch, PROCESSORS_DIR)
|
|
126
|
+
emu = Icicle(icicle_arch, PROCESSORS_DIR, True)
|
|
127
127
|
|
|
128
128
|
copied_registers = set()
|
|
129
129
|
|
|
@@ -194,7 +194,8 @@ class IcicleEngine(ConcreteEngine):
|
|
|
194
194
|
addr = page_num * state.memory.page_size
|
|
195
195
|
state.memory.store(addr, emu.mem_read(addr, state.memory.page_size))
|
|
196
196
|
|
|
197
|
-
# 3. Set history
|
|
197
|
+
# 3. Set history
|
|
198
|
+
# 3.1 history.jumpkind
|
|
198
199
|
exc = emu.exception_code
|
|
199
200
|
if status == VmExit.UnhandledException:
|
|
200
201
|
if exc in (
|
|
@@ -216,6 +217,10 @@ class IcicleEngine(ConcreteEngine):
|
|
|
216
217
|
else:
|
|
217
218
|
state.history.jumpkind = "Ijk_Boring"
|
|
218
219
|
|
|
220
|
+
# 3.2 history.recent_bbl_addrs
|
|
221
|
+
# Skip the last block, because it will be added by Successors
|
|
222
|
+
state.history.recent_bbl_addrs.extend([b[0] for b in emu.recent_blocks][:-1])
|
|
223
|
+
|
|
219
224
|
# 4. Set history.recent_instruction_count
|
|
220
225
|
state.history.recent_instruction_count = emu.cpu_icount - translation_data.initial_cpu_icount
|
|
221
226
|
|
|
@@ -19,6 +19,7 @@ class PropagationModel(Serializable):
|
|
|
19
19
|
"_initial_state",
|
|
20
20
|
"block_initial_reg_values",
|
|
21
21
|
"equivalence",
|
|
22
|
+
"function_block_count",
|
|
22
23
|
"graph_visitor",
|
|
23
24
|
"input_states",
|
|
24
25
|
"key",
|
|
@@ -37,6 +38,7 @@ class PropagationModel(Serializable):
|
|
|
37
38
|
equivalence: set | None = None,
|
|
38
39
|
function: Function | None = None,
|
|
39
40
|
input_states: dict | None = None,
|
|
41
|
+
function_block_count: int | None = None,
|
|
40
42
|
):
|
|
41
43
|
self.key = prop_key
|
|
42
44
|
self.node_iterations = node_iterations if node_iterations is not None else defaultdict(int)
|
|
@@ -49,6 +51,11 @@ class PropagationModel(Serializable):
|
|
|
49
51
|
self.graph_visitor = None
|
|
50
52
|
self._initial_state = None
|
|
51
53
|
self._function = function
|
|
54
|
+
self.function_block_count = (
|
|
55
|
+
function_block_count
|
|
56
|
+
if function_block_count is not None
|
|
57
|
+
else len(function.block_addrs_set) if function is not None else None
|
|
58
|
+
)
|
|
52
59
|
|
|
53
60
|
def downsize(self):
|
|
54
61
|
self.node_iterations = None
|
angr/project.py
CHANGED
|
@@ -32,7 +32,10 @@ def load_shellcode(shellcode: bytes | str, arch, start_offset=0, load_address=0,
|
|
|
32
32
|
if not isinstance(arch, archinfo.Arch):
|
|
33
33
|
arch = archinfo.arch_from_id(arch)
|
|
34
34
|
if isinstance(shellcode, str):
|
|
35
|
-
shellcode_bytes
|
|
35
|
+
shellcode_bytes = arch.asm(shellcode, load_address, thumb=thumb)
|
|
36
|
+
if shellcode_bytes is None:
|
|
37
|
+
raise ValueError("Could not assemble shellcode")
|
|
38
|
+
assert isinstance(shellcode_bytes, bytes)
|
|
36
39
|
else:
|
|
37
40
|
shellcode_bytes = shellcode
|
|
38
41
|
if thumb:
|
|
@@ -173,7 +176,7 @@ class Project:
|
|
|
173
176
|
|
|
174
177
|
# It doesn't make any sense to have auto_load_libs
|
|
175
178
|
# if you have the concrete target, let's warn the user about this.
|
|
176
|
-
if self.concrete_target and load_options.get("auto_load_libs"
|
|
179
|
+
if self.concrete_target and load_options.get("auto_load_libs"):
|
|
177
180
|
l.critical(
|
|
178
181
|
"Incompatible options selected for this project, please disable auto_load_libs if "
|
|
179
182
|
"you want to use a concrete target."
|
angr/rustylib.abi3.so
CHANGED
|
Binary file
|
angr/sim_type.py
CHANGED
|
@@ -1789,6 +1789,7 @@ class SimCppClass(SimStruct):
|
|
|
1789
1789
|
vtable_ptrs=None,
|
|
1790
1790
|
pack: bool = False,
|
|
1791
1791
|
align=None,
|
|
1792
|
+
size: int | None = None,
|
|
1792
1793
|
):
|
|
1793
1794
|
super().__init__(members or {}, name=name, pack=pack, align=align)
|
|
1794
1795
|
self.unique_name = unique_name
|
|
@@ -1797,6 +1798,10 @@ class SimCppClass(SimStruct):
|
|
|
1797
1798
|
# this should also be added to the fields once we know the offsets of the members of this object
|
|
1798
1799
|
self.vtable_ptrs = [] if vtable_ptrs is None else vtable_ptrs
|
|
1799
1800
|
|
|
1801
|
+
# we can force the size (in bits) of a class because sometimes the class can be opaque and we don't know its
|
|
1802
|
+
# layout
|
|
1803
|
+
self._size = size
|
|
1804
|
+
|
|
1800
1805
|
@property
|
|
1801
1806
|
def members(self):
|
|
1802
1807
|
return self.fields
|
|
@@ -1805,6 +1810,12 @@ class SimCppClass(SimStruct):
|
|
|
1805
1810
|
def members(self, value):
|
|
1806
1811
|
self.fields = value
|
|
1807
1812
|
|
|
1813
|
+
@property
|
|
1814
|
+
def size(self):
|
|
1815
|
+
if self._size is not None:
|
|
1816
|
+
return self._size
|
|
1817
|
+
return super().size
|
|
1818
|
+
|
|
1808
1819
|
def __repr__(self):
|
|
1809
1820
|
return f"class {self.name}" if not self.name.startswith("class") else self.name
|
|
1810
1821
|
|
|
@@ -1848,6 +1859,7 @@ class SimCppClass(SimStruct):
|
|
|
1848
1859
|
vtable_ptrs=self.vtable_ptrs,
|
|
1849
1860
|
pack=self._pack,
|
|
1850
1861
|
align=self._align,
|
|
1862
|
+
size=self._size,
|
|
1851
1863
|
)
|
|
1852
1864
|
out._arch = arch
|
|
1853
1865
|
self._arch_memo[arch.name] = out
|
|
@@ -1877,6 +1889,7 @@ class SimCppClass(SimStruct):
|
|
|
1877
1889
|
align=self._align,
|
|
1878
1890
|
function_members=self.function_members,
|
|
1879
1891
|
vtable_ptrs=self.vtable_ptrs,
|
|
1892
|
+
size=self._size,
|
|
1880
1893
|
)
|
|
1881
1894
|
|
|
1882
1895
|
|
|
@@ -2029,6 +2042,8 @@ BASIC_TYPES: dict[str, SimType] = {
|
|
|
2029
2042
|
"long long int": SimTypeLongLong(True),
|
|
2030
2043
|
"signed long long int": SimTypeLongLong(True),
|
|
2031
2044
|
"unsigned long long int": SimTypeLongLong(False),
|
|
2045
|
+
"__int32": SimTypeInt(True),
|
|
2046
|
+
"__int64": SimTypeLongLong(True),
|
|
2032
2047
|
"__int128": SimTypeNum(128, True),
|
|
2033
2048
|
"unsigned __int128": SimTypeNum(128, False),
|
|
2034
2049
|
"__int256": SimTypeNum(256, True),
|
|
@@ -3342,7 +3357,7 @@ def _decl_to_type(
|
|
|
3342
3357
|
|
|
3343
3358
|
if decl.name is not None:
|
|
3344
3359
|
key = "struct " + decl.name
|
|
3345
|
-
struct = extra_types.get(key
|
|
3360
|
+
struct = extra_types.get(key)
|
|
3346
3361
|
from_global = False
|
|
3347
3362
|
if struct is None:
|
|
3348
3363
|
struct = ALL_TYPES.get(key)
|
|
@@ -3378,7 +3393,7 @@ def _decl_to_type(
|
|
|
3378
3393
|
|
|
3379
3394
|
if decl.name is not None:
|
|
3380
3395
|
key = "union " + decl.name
|
|
3381
|
-
union = extra_types.get(key
|
|
3396
|
+
union = extra_types.get(key)
|
|
3382
3397
|
from_global = False
|
|
3383
3398
|
if union is None and key in ALL_TYPES:
|
|
3384
3399
|
union = ALL_TYPES[key]
|
|
@@ -3563,7 +3578,7 @@ def _cpp_decl_to_type(
|
|
|
3563
3578
|
t = ALL_TYPES[lbl]
|
|
3564
3579
|
elif opaque_classes is True:
|
|
3565
3580
|
# create a class without knowing the internal members
|
|
3566
|
-
t = SimCppClass(unique_name=lbl, name=lbl, members={})
|
|
3581
|
+
t = SimCppClass(unique_name=lbl, name=lbl, members={}, size=32)
|
|
3567
3582
|
else:
|
|
3568
3583
|
raise TypeError(f'Unknown type "{lbl}"')
|
|
3569
3584
|
|
angr/utils/constants.py
CHANGED
angr/utils/graph.py
CHANGED
|
@@ -76,7 +76,7 @@ def to_acyclic_graph(
|
|
|
76
76
|
for src, dst in graph.edges():
|
|
77
77
|
src_order = node_order[src]
|
|
78
78
|
dst_order = node_order[dst]
|
|
79
|
-
if src_order
|
|
79
|
+
if src_order >= dst_order:
|
|
80
80
|
# this is a back edge, we need to remove it
|
|
81
81
|
edges_to_remove.append((src, dst))
|
|
82
82
|
|
angr/utils/vex.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from pyvex import IRSB
|
|
4
|
+
from pyvex.stmt import WrTmp
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def get_tmp_def_stmt(vex_block: IRSB, tmp_idx: int) -> int | None:
|
|
8
|
+
for i, stmt in enumerate(vex_block.statements):
|
|
9
|
+
if isinstance(stmt, WrTmp) and stmt.tmp == tmp_idx:
|
|
10
|
+
return i
|
|
11
|
+
return None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.164
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://angr.io/
|
|
@@ -16,12 +16,12 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: cxxheaderparser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: archinfo==9.2.164
|
|
20
20
|
Requires-Dist: cachetools
|
|
21
21
|
Requires-Dist: capstone==5.0.3
|
|
22
22
|
Requires-Dist: cffi>=1.14.0
|
|
23
|
-
Requires-Dist: claripy==9.2.
|
|
24
|
-
Requires-Dist: cle==9.2.
|
|
23
|
+
Requires-Dist: claripy==9.2.164
|
|
24
|
+
Requires-Dist: cle==9.2.164
|
|
25
25
|
Requires-Dist: mulpyplexer
|
|
26
26
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
27
27
|
Requires-Dist: protobuf>=5.28.2
|
|
@@ -30,7 +30,7 @@ Requires-Dist: pycparser>=2.18
|
|
|
30
30
|
Requires-Dist: pydemumble
|
|
31
31
|
Requires-Dist: pyformlang
|
|
32
32
|
Requires-Dist: pypcode<4.0,>=3.2.1
|
|
33
|
-
Requires-Dist: pyvex==9.2.
|
|
33
|
+
Requires-Dist: pyvex==9.2.164
|
|
34
34
|
Requires-Dist: rich>=13.1.0
|
|
35
35
|
Requires-Dist: sortedcontainers
|
|
36
36
|
Requires-Dist: sympy
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=CH6F91EXwthOZbyupfpEWLQ6AuJ8SZ290aETtucu03k,9246
|
|
2
2
|
angr/__main__.py,sha256=AK9V6uPZ58UuTKmmiH_Kgn5pG9AvjnmJCPOku69A-WU,4993
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
|
-
angr/blade.py,sha256=
|
|
4
|
+
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
5
5
|
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
7
|
angr/calling_conventions.py,sha256=BWed6JA8QRDwqOdDLqeSzegjHtsd4jgiVhaTIVf_NMQ,101396
|
|
@@ -13,16 +13,16 @@ angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
|
13
13
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
15
15
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
16
|
-
angr/project.py,sha256=
|
|
16
|
+
angr/project.py,sha256=AJmBgv3U8iv-hGEfnpmESVVjK16NiBAemmahLuqz7yk,38096
|
|
17
17
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
18
|
-
angr/rustylib.abi3.so,sha256=
|
|
18
|
+
angr/rustylib.abi3.so,sha256=rZPLa1r4JfPQwopdGwc5bIQ_kyvdETb-EcWo38_amB0,5567480
|
|
19
19
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
20
20
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
21
21
|
angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
22
22
|
angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
|
|
23
23
|
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
24
24
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
25
|
-
angr/sim_type.py,sha256=
|
|
25
|
+
angr/sim_type.py,sha256=Z0gWJaTVwjC6I_O7nzwa0DtEXZSFA9ekikm-U2gxCR4,135357
|
|
26
26
|
angr/sim_variable.py,sha256=3DssmMw5G7m_-MYToJ3LBP-ooy2UQEuI2YgxIuX3d4Y,13177
|
|
27
27
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
28
28
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
@@ -35,8 +35,8 @@ angr/ailment/block_walker.py,sha256=pAIHNaN0BMxz8iEy-_4qWz1xX-QFSSPr_iA1qqIWsa8,
|
|
|
35
35
|
angr/ailment/constant.py,sha256=UG4OKm6VL3uBW_0NxlosWKBqK49gyduJjw64nBcfFfE,64
|
|
36
36
|
angr/ailment/converter_common.py,sha256=6MxxI3PRZBlFlIP2uZhQAa8vDvJr0nMDd-QnTbPLn6o,180
|
|
37
37
|
angr/ailment/converter_pcode.py,sha256=gKyshI--_hzO3CgSD85ehXmgrd8DzL_Zhc740U9KOdo,23721
|
|
38
|
-
angr/ailment/converter_vex.py,sha256=
|
|
39
|
-
angr/ailment/expression.py,sha256=
|
|
38
|
+
angr/ailment/converter_vex.py,sha256=yIe0hFwuc_2mHVWw_F31u7hDPBQ-7VwuPXaQyNmqfXo,28159
|
|
39
|
+
angr/ailment/expression.py,sha256=8gmRcBOBdNitm9xLj7ZRyc8OWhYHep5ANSyQo7EIcms,48632
|
|
40
40
|
angr/ailment/manager.py,sha256=N6yMJnBdxJfj568KYZbKYERHmQIQpMf_hZPwfpdk9Y8,699
|
|
41
41
|
angr/ailment/statement.py,sha256=3JEhg-JDRrNjaeHFgO-liEIrZRW6v5sIsOqcGHiuM3A,30472
|
|
42
42
|
angr/ailment/tagged_object.py,sha256=48xIMC5WKebEpA12Zq6dQz3evvKxT3ULEu2cPdw9w-Y,1566
|
|
@@ -86,16 +86,16 @@ angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04
|
|
|
86
86
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
87
87
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
88
88
|
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
89
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
90
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
91
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
89
|
+
angr/analyses/cfg/cfg_base.py,sha256=eleUmM_znfsl6KV7T2tUmSEy2iLmPsrT3dNB2BYudd4,124964
|
|
90
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=4lKrmGVfCGt8l3Nz9zH6EcUcAVLwyOM7p81DlxUVNGA,148351
|
|
91
|
+
angr/analyses/cfg/cfg_fast.py,sha256=J1nhaV9yC6SjQ_TWOJ7e0wfiCPa11pfxjTlns9IErlg,232462
|
|
92
92
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
93
93
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
94
94
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
95
95
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
96
96
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB91fuXmmDPWQg1YkWNz015OiRQfNhE,1777
|
|
97
|
-
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=
|
|
98
|
-
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=
|
|
97
|
+
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=KzX-BYgEM1npZYipMvCU-YJ4phdLyoM5LnrxJ0LEPFg,5347
|
|
98
|
+
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=eo9Bn-lVAzsx-Y7ncr647enHmWyAZIehc9_Q6Uq7xc8,15517
|
|
99
99
|
angr/analyses/cfg/indirect_jump_resolvers/constant_value_manager.py,sha256=iADDFxnMdIOaN72a0FcODG79dcMzlesYT6LGmQKJxAc,3728
|
|
100
100
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=Gec_CgniGF9kXcbYfsocYbxhkTncI4MzfzDLxq_4cuk,1741
|
|
101
101
|
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=TNLmG4a3lZXZox5vjYmmETwS2KsNA1uJR55VwrPcrZE,103658
|
|
@@ -116,13 +116,13 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
|
|
|
116
116
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
117
117
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
118
118
|
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
119
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
119
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=s9hFXhNwU8fBKDOkw4vtSWhSWy9xBdF9p1463cO5930,93071
|
|
120
120
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
121
121
|
angr/analyses/decompiler/block_io_finder.py,sha256=9J56W0_SQPczZ2-VoxqSv61T57foHmzy7wPtUtQKffU,10943
|
|
122
122
|
angr/analyses/decompiler/block_similarity.py,sha256=S1lTlXFyOmJlQa7I3y7xgLsENLS4XGET7tdD55k_6Vg,6859
|
|
123
123
|
angr/analyses/decompiler/block_simplifier.py,sha256=XcX9wsBM4AL_WWqmFrtSUDeSv0a125cC1-Q1NhmTrNE,14777
|
|
124
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
125
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
124
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=O7vjwNTmCLijzjKgSCaoX3IX4_sC-u-OqoKhE7lahlc,23427
|
|
125
|
+
angr/analyses/decompiler/clinic.py,sha256=1TnX_kIvZ4kFoK818Tyq98ONATP82T9n7fB4akx9yHg,150921
|
|
126
126
|
angr/analyses/decompiler/condition_processor.py,sha256=g8sknCiCoBx3rXsHy2nx0VKDymSoSyLpq5zMpvFUhWg,54441
|
|
127
127
|
angr/analyses/decompiler/decompilation_cache.py,sha256=gAZtyXs-eoFj3680bTrJVAZcIoaPsFK0kayu30NYLb4,1509
|
|
128
128
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
@@ -130,18 +130,18 @@ angr/analyses/decompiler/decompiler.py,sha256=3TsG9Tz4OQInSXcHhoASqxY7VhRsaK8xw-
|
|
|
130
130
|
angr/analyses/decompiler/empty_node_remover.py,sha256=4CdxTM1AVmRoEdRIwJg1YEy10AgkEoRmJ8SU7xGbKnM,7424
|
|
131
131
|
angr/analyses/decompiler/expression_narrower.py,sha256=lBtcsPu4V5JJ_u25GF-BJ3vaybu8TRr9XxmnjOrA4J8,10367
|
|
132
132
|
angr/analyses/decompiler/goto_manager.py,sha256=wVoeXJcadIda84LloGgqW-rL0QHLv3fx4vZHLhmz-_o,4027
|
|
133
|
-
angr/analyses/decompiler/graph_region.py,sha256=
|
|
133
|
+
angr/analyses/decompiler/graph_region.py,sha256=uSDdCLXfLZJVcb0wMdgBh-KtBJUUhLGHQ-Ap4dNs8wo,18186
|
|
134
134
|
angr/analyses/decompiler/jump_target_collector.py,sha256=CucT99luxIVrioM-keMMjyNKWE5QaXEFQOFphtyU8b4,1189
|
|
135
135
|
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
136
136
|
angr/analyses/decompiler/label_collector.py,sha256=fsCkldy8ZKH4FjkREByg-NDmfCd7Pmuz2K1Dks9oVjM,814
|
|
137
137
|
angr/analyses/decompiler/redundant_label_remover.py,sha256=QV0puQwNprJUBQxU6NOAjcozowrvQSdoVOnuzAXdkiU,5895
|
|
138
|
-
angr/analyses/decompiler/region_identifier.py,sha256=
|
|
138
|
+
angr/analyses/decompiler/region_identifier.py,sha256=nEF81cgJolpFBMBv2COehOJKFUJ1fYFil2PMB_Kdr4w,52132
|
|
139
139
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
140
140
|
angr/analyses/decompiler/return_maker.py,sha256=b7R8ipU-sdFfXEHVDGt4_eNXz0Nv4kawzzPNAP6v_p0,2566
|
|
141
141
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=4-tqstendHHO2J0WD3JHQkm8c4c2KG3AO3mYWrn4xvg,569
|
|
142
142
|
angr/analyses/decompiler/sequence_walker.py,sha256=zLwCK1_T9ufGH3RCGjLAyWJTwrBSy8IG-2e-zlgBEow,9933
|
|
143
143
|
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
144
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
144
|
+
angr/analyses/decompiler/utils.py,sha256=uDB7rFq4_Vityq6DZhgE5dS8nd_nDJHqJ5YEAdl1XAk,40914
|
|
145
145
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
146
146
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=8LA05CKwFzoNAloOJ3KF4AkFM3bDTQdstr1_46WauxM,24958
|
|
147
147
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=9BiexqY0fgB_UTmjcql71tg9HALx2mFhQMP1IVYAJpw,512
|
|
@@ -166,7 +166,7 @@ angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=8UBN1
|
|
|
166
166
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=-vvd0QvLCmnRREmvN5LCLeKpUqisyPWj0yw1CHY8TwQ,10505
|
|
167
167
|
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=uccjVWihM5Vu7k8JcEwDhvuAQqdmbOWDBQ6Df0frdzo,13260
|
|
168
168
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
169
|
-
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=
|
|
169
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=RMvKYw0aWrisO6DB_g3BTY9CgIgAJ6JZXpOnOOm7fpo,2737
|
|
170
170
|
angr/analyses/decompiler/optimization_passes/determine_load_sizes.py,sha256=cyDEGP7be5FAHX32eTE6FD_RZHF6G3vRo5rCYrNCfJM,2246
|
|
171
171
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=di_yaOo_cBzau7tNZHmozCwNNkNou1LH99cUrsU2AKg,18744
|
|
172
172
|
angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py,sha256=O5EVUgJxPnRXBaReF8gxQlWFeFr3V1V313qe_QFS7bY,7087
|
|
@@ -284,11 +284,11 @@ angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbej
|
|
|
284
284
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
285
285
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
286
286
|
angr/analyses/decompiler/structuring/dream.py,sha256=_4JrXwF32UKoUOak_matUa81MwRptyXvEmOfygt-ix0,48736
|
|
287
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
288
|
-
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=
|
|
287
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=3FZ9mxnFhqUExqW9DdTKQagtyiFuUJI1LvtRCI0Pd38,144326
|
|
288
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=iWFZdM54C1q2ezL7ouhH6rygJiGO2OCUH5JKXKgrf6w,7422
|
|
289
289
|
angr/analyses/decompiler/structuring/sailr.py,sha256=aJCES4r5HaLs-l1tXagIPtXpWnqY_uTlJn7wCYKnwTg,6127
|
|
290
290
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=HDztcvr4eJx5oqzZIXRjS8AhYBT1RESxLnaC4C4ISoI,47427
|
|
291
|
-
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=
|
|
291
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=3T6QPeD1KlLkcjMDBblQCb1Cf50VF36C-hlFhiKi9nc,12823
|
|
292
292
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
293
293
|
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
294
294
|
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=jtUxKYTdmGu0c_8zmP8V3JUYzTcac0j1CNctic3e7QA,2215
|
|
@@ -298,7 +298,7 @@ angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2Mioo
|
|
|
298
298
|
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=YzrsEKsUaUPshB8LqfwDso8aK7m0ySmR3i50T5ZiwNo,5360
|
|
299
299
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=_VQv2E2yOAZDAi53smQL5KcSLNe5FMqNUYC8jNSYXGs,1957
|
|
300
300
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
301
|
-
angr/analyses/fcp/fcp.py,sha256=
|
|
301
|
+
angr/analyses/fcp/fcp.py,sha256=djkJsvSja_De7ptNwllmTHjvVl62BFcH_haBhwhzFtw,16373
|
|
302
302
|
angr/analyses/flirt/__init__.py,sha256=1jKkwUDhwwnxG5BRcYtwogLHLBvtZApXgvcAcHrJrdw,1293
|
|
303
303
|
angr/analyses/flirt/consts.py,sha256=9ldvicgtJZa8Hw8cWOKxGkCYtc09I2q5ZWxctXcg20w,4861
|
|
304
304
|
angr/analyses/flirt/flirt.py,sha256=UNXtUBs11WafKeMAW2BwqKJLFhOyObqmRhfCqYdsJpc,10762
|
|
@@ -306,7 +306,7 @@ angr/analyses/flirt/flirt_function.py,sha256=IHskIu5XTTCLKfmow23ig4HIqzs7oGbw7ik
|
|
|
306
306
|
angr/analyses/flirt/flirt_matcher.py,sha256=nzhvPTIlVwHrn07qLLSRvgfpyOnlNRsziDCls_xh0Gg,6353
|
|
307
307
|
angr/analyses/flirt/flirt_module.py,sha256=pUP6vbujzceJMXFxvLAPgek5Y2qPv3KTlKY8ZWHeIQU,920
|
|
308
308
|
angr/analyses/flirt/flirt_node.py,sha256=ecfJq4Ymp38zzvoZPDfLcLSR045GNOM9je-F_NPM5e0,638
|
|
309
|
-
angr/analyses/flirt/flirt_sig.py,sha256=
|
|
309
|
+
angr/analyses/flirt/flirt_sig.py,sha256=9cWSXqFBEIpui7pluMTaskfD0mVMomNt1mPXN6pIdjg,11574
|
|
310
310
|
angr/analyses/flirt/flirt_utils.py,sha256=ojZ_01s7O23vU7dN6xZL7Wyx5M3pgm43frxjbZzSmyU,819
|
|
311
311
|
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
312
312
|
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
@@ -360,27 +360,27 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquq
|
|
|
360
360
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=PPIqp8XaERWXLNUQN_ALzFcQeKHQe5nZdwoHtoLxWwg,46639
|
|
361
361
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
|
|
362
362
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
363
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
363
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=MoZSB49ia7BXzdRmlYJgUFY36IDuEpY8FSn99eBjrq4,29217
|
|
364
364
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
365
365
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
366
366
|
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
367
367
|
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=EeA2qJZYOtnb_cbIj8YJQMCtUt_ra0faDiRCMjtw4ho,23719
|
|
368
368
|
angr/analyses/reaching_definitions/subject.py,sha256=DxhzWhZz_EJo-Cs-u-kB29M-sVxCqtfXkSv72WEYZp0,2021
|
|
369
369
|
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=elHg3doPsR68R3mZJM85qmDhy2OaCc347O-RaUaTDqY,458
|
|
370
|
-
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=
|
|
371
|
-
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=
|
|
372
|
-
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=
|
|
373
|
-
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=
|
|
370
|
+
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=dPGE2mjCFCCKX-0ixzJ_dwU97QAte3jzkLZGdRMz4YQ,11416
|
|
371
|
+
angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=YRNWe87eQ9aJo-m0IvN_nRIqQLFJxb9kfN3cboN3218,8124
|
|
372
|
+
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qh7XJXiSuT5dwUjnYKSo6RhGQbsMjJm97mma1gypNG0,8825
|
|
373
|
+
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=oO2HROZZWsjPlCLMxEo7T4M5JkYRlkc9BLLYLwY1SfQ,2370
|
|
374
374
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
375
375
|
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=FJSge_31FFzyzBJA1xm7dQz40TfuNna6v_RWAZMZvi0,5801
|
|
376
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
376
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=r0UThjO4ZhrlCUuMYflzMoH5spObH25A65-S2koY5vM,13807
|
|
377
377
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=gNdg8xpu5by_McWU8j0g0502yQsO2evkTlben9yimV0,7826
|
|
378
378
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
379
379
|
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
380
380
|
angr/analyses/typehoon/lifter.py,sha256=hxYJmM_A0Kl6YgY7NyWBtA3ieaY49Ey3ESCHC61lMys,4000
|
|
381
381
|
angr/analyses/typehoon/simple_solver.py,sha256=CCGsuxzcRwPxh3S3fU_CJNQ7KVJaTP_SzH5ZImuPhDw,67609
|
|
382
382
|
angr/analyses/typehoon/translator.py,sha256=_UE1JC4KNDXXl4plula9OApK1ee07z9BFdX9HKa5uqw,10568
|
|
383
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
383
|
+
angr/analyses/typehoon/typeconsts.py,sha256=5xyZakTTra4K4-8icVqT5JMM__ZfnBVEBV_1kydQn50,8028
|
|
384
384
|
angr/analyses/typehoon/typehoon.py,sha256=qj5MBJdzVB-5f73N_Da0gs5fG-eIFN272VNfsdYn7lo,12777
|
|
385
385
|
angr/analyses/typehoon/typevars.py,sha256=ZDnKaGEwBTzYWUPQzacQkJ4rMpUDlnLzzJuKyQuEEtA,17839
|
|
386
386
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
@@ -390,7 +390,7 @@ angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL
|
|
|
390
390
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
391
391
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
392
392
|
angr/analyses/variable_recovery/engine_ail.py,sha256=8yqrl_qfO_DCvaIxwsa_eits5rIbly4rBEFh5W_U2O4,33709
|
|
393
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
393
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=MJ6h-dq_0r-3I3ZOhR8E4So2VqxlyudNeSrAHyQCNRg,53171
|
|
394
394
|
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
395
395
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
396
396
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=I45eVUpOOcSobA_QyXl3aRNa0kppJH_7YOj95fPPTdE,22272
|
|
@@ -434,7 +434,7 @@ angr/engines/concrete.py,sha256=kEt6Dyp8QAIaOP3oW5lRcDs_2UMP2vbiNzylGiqvf7g,2143
|
|
|
434
434
|
angr/engines/engine.py,sha256=2kwOT-sbxKXAVX2PmsPTr8Ax36Vxq6hkRdDKaITBQNc,657
|
|
435
435
|
angr/engines/failure.py,sha256=redqmkSuJoIc828hpmX3CTk4EqQ-PeEn7MK2uIqSAc0,1040
|
|
436
436
|
angr/engines/hook.py,sha256=lAEYYAXQY_GDOpsz3JZ7IswxrBccZnZ6EaQwyNBb4W8,2590
|
|
437
|
-
angr/engines/icicle.py,sha256=
|
|
437
|
+
angr/engines/icicle.py,sha256=SzqHmA0bo4ThrfR1k5FNpYwmLg07LW8kUMu2ZaHQgkc,10079
|
|
438
438
|
angr/engines/procedure.py,sha256=8kgFH56nkqSWm0p1apuGBaFngl-4BnAzE0bXhq9mc6Y,2561
|
|
439
439
|
angr/engines/successors.py,sha256=oQCW7Knxb4zz7EP6Mi6RrRNrwuhbv5fnX8UL76nn0sY,29501
|
|
440
440
|
angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
@@ -580,7 +580,7 @@ angr/knowledge_plugins/key_definitions/uses.py,sha256=BQqNeI4Ow29oWpCrkZbw8bLSKU
|
|
|
580
580
|
angr/knowledge_plugins/propagations/__init__.py,sha256=tG2ER9gilu212YgjfNB7-J8cLSw8kuE1m-UaM8wjljE,202
|
|
581
581
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=FFRNqHaEKzYF4sIMRoqemoEqTJxyrI9kvTgC5MdzEK4,7597
|
|
582
582
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
583
|
-
angr/knowledge_plugins/propagations/propagation_model.py,sha256=
|
|
583
|
+
angr/knowledge_plugins/propagations/propagation_model.py,sha256=IL8cxQ1uBiUQ8-GkMGVICpV5Gfftv-PNR7OX-6NdR5o,2898
|
|
584
584
|
angr/knowledge_plugins/propagations/states.py,sha256=lcjKdXShcahTXVUpeJoxYEdjBLBZosOot5qz1kTJ_EI,18956
|
|
585
585
|
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
586
586
|
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
@@ -1377,7 +1377,7 @@ angr/utils/__init__.py,sha256=kBUIJCp9WSgzb62zMg4puUUeheMSl9U4RFqkfiL3en8,1159
|
|
|
1377
1377
|
angr/utils/ail.py,sha256=-N59ISc-k-0jHFu0Bg5FIhvhBY8HT6zK3OYSVhXawWo,2838
|
|
1378
1378
|
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1379
1379
|
angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
1380
|
-
angr/utils/constants.py,sha256=
|
|
1380
|
+
angr/utils/constants.py,sha256=8tQ1QnFw9U1kM9Q8YQ7StWxXHiqQHbWvrZanQK0eY2A,269
|
|
1381
1381
|
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1382
1382
|
angr/utils/cpp.py,sha256=k6ZOUNIqYxLd5WSRKP2T3li-3zt06PtneLgaBWPOtiU,516
|
|
1383
1383
|
angr/utils/doms.py,sha256=l5_GUvVcjfwglZTqGYKOx5QvJ_pE_PWBIhH8fTk_e80,5356
|
|
@@ -1387,7 +1387,7 @@ angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
|
1387
1387
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1388
1388
|
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
1389
1389
|
angr/utils/funcid.py,sha256=Rd4r8juv2IpeMtCpPp4wxJoEZTnZZ1NsxdT42tvrKVA,6353
|
|
1390
|
-
angr/utils/graph.py,sha256
|
|
1390
|
+
angr/utils/graph.py,sha256=aOAJIxzURwC-0wPEjpZBJj-bjGSo5vPjtCBqipDNGqA,32955
|
|
1391
1391
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1392
1392
|
angr/utils/library.py,sha256=_3R3so_CApzIFE4n87atJgWLkvzt3yHPEttUJsenqXw,7342
|
|
1393
1393
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
@@ -1396,12 +1396,13 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
|
1396
1396
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1397
1397
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1398
1398
|
angr/utils/types.py,sha256=688trvR0_j93sfeRgFT1npcmjNGSx99m_IPe9Xyy9WY,4967
|
|
1399
|
+
angr/utils/vex.py,sha256=epcrCexi_NjKnPGM2gfpiRsUea_Scd-71UMuF32ZAQo,306
|
|
1399
1400
|
angr/utils/ssa/__init__.py,sha256=xbuVllFoPane9lHACdRQP5OO99Mca-4sqpFrtoAvnxo,17464
|
|
1400
1401
|
angr/utils/ssa/tmp_uses_collector.py,sha256=digAUQpYoFR1VYfwoXlF3T1pYdDi6Pdq_ck54SjMabQ,813
|
|
1401
1402
|
angr/utils/ssa/vvar_uses_collector.py,sha256=HewqUQluNE9EsaiLeFo7LaBvws_DDBDYNt9RBExy464,1367
|
|
1402
|
-
angr-9.2.
|
|
1403
|
-
angr-9.2.
|
|
1404
|
-
angr-9.2.
|
|
1405
|
-
angr-9.2.
|
|
1406
|
-
angr-9.2.
|
|
1407
|
-
angr-9.2.
|
|
1403
|
+
angr-9.2.164.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
1404
|
+
angr-9.2.164.dist-info/METADATA,sha256=cpVl8QOG2eWP9ie_kmOfjnHLjOY2el7_ZD8QuCPizWU,4343
|
|
1405
|
+
angr-9.2.164.dist-info/WHEEL,sha256=-b00sLH3UnxFBjNQ7S7EFPw4mOqhGcI2pA2tUueoluM,112
|
|
1406
|
+
angr-9.2.164.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1407
|
+
angr-9.2.164.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1408
|
+
angr-9.2.164.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|