angr 9.2.163__cp310-abi3-win_amd64.whl → 9.2.165__cp310-abi3-win_amd64.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 +5 -1
- angr/analyses/analysis.py +27 -4
- angr/analyses/cfg/cfg_base.py +16 -13
- angr/analyses/cfg/cfg_emulated.py +5 -1
- angr/analyses/cfg/cfg_fast.py +43 -5
- 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/condition_processor.py +9 -8
- angr/analyses/decompiler/graph_region.py +19 -0
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +1 -1
- angr/analyses/decompiler/peephole_optimizations/__init__.py +2 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_memcpy.py +78 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +67 -10
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +10 -13
- 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/deobfuscator/string_obf_finder.py +130 -32
- angr/analyses/s_reaching_definitions/s_rda_view.py +2 -1
- angr/analyses/typehoon/typeconsts.py +3 -1
- angr/blade.py +20 -15
- angr/engines/icicle.py +16 -3
- angr/knowledge_plugins/propagations/propagation_model.py +7 -0
- angr/rustylib.pyd +0 -0
- angr/sim_type.py +16 -1
- angr/state_plugins/history.py +16 -0
- angr/unicornlib.dll +0 -0
- angr/utils/constants.py +1 -1
- angr/utils/graph.py +1 -1
- angr/utils/vex.py +11 -0
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/METADATA +5 -5
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/RECORD +42 -40
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/WHEEL +0 -0
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/entry_points.txt +0 -0
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/licenses/LICENSE +0 -0
- {angr-9.2.163.dist-info → angr-9.2.165.dist-info}/top_level.txt +0 -0
|
@@ -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/rustylib.pyd
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),
|
|
@@ -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/state_plugins/history.py
CHANGED
|
@@ -59,6 +59,9 @@ class SimStateHistory(SimStatePlugin):
|
|
|
59
59
|
self.recent_syscall_count = 0 if clone is None else clone.recent_syscall_count
|
|
60
60
|
self.recent_instruction_count = -1 if clone is None else clone.recent_instruction_count
|
|
61
61
|
|
|
62
|
+
# afl-style hitmap
|
|
63
|
+
self.edge_hitmap: bytes | None = None if clone is None else clone.edge_hitmap
|
|
64
|
+
|
|
62
65
|
# satness stuff
|
|
63
66
|
self._all_constraints = ()
|
|
64
67
|
self._satisfiable = None
|
|
@@ -402,6 +405,19 @@ class SimStateHistory(SimStatePlugin):
|
|
|
402
405
|
def stack_actions(self):
|
|
403
406
|
return LambdaIterIter(self, operator.attrgetter("recent_stack_actions"))
|
|
404
407
|
|
|
408
|
+
@property
|
|
409
|
+
def last_edge_hitmap(self) -> bytes | None:
|
|
410
|
+
"""
|
|
411
|
+
Returns the last edge hitmap in the history chain, or None if there is no edge hitmap.
|
|
412
|
+
"""
|
|
413
|
+
history = self
|
|
414
|
+
while history is not None:
|
|
415
|
+
if history.edge_hitmap is not None:
|
|
416
|
+
return history.edge_hitmap
|
|
417
|
+
# Traverse to the previous state in the history chain
|
|
418
|
+
history = history.parent
|
|
419
|
+
return None
|
|
420
|
+
|
|
405
421
|
#
|
|
406
422
|
# Merging support
|
|
407
423
|
#
|
angr/unicornlib.dll
CHANGED
|
Binary file
|
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.165
|
|
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.165
|
|
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.165
|
|
24
|
+
Requires-Dist: cle==9.2.165
|
|
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.165
|
|
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=Jzf5SkZpGKPPRzfua6STXqvMfUyT2S0lcUDuVZKeRGk,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
|
|
@@ -15,19 +15,19 @@ angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
|
15
15
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
16
16
|
angr/project.py,sha256=AJmBgv3U8iv-hGEfnpmESVVjK16NiBAemmahLuqz7yk,38096
|
|
17
17
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
18
|
-
angr/rustylib.pyd,sha256=
|
|
18
|
+
angr/rustylib.pyd,sha256=IRycDjBKxFY8O2UK9VnuWqDhf16cNEPcgwyvGWQxGWM,4456960
|
|
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
|
|
29
29
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
30
|
-
angr/unicornlib.dll,sha256=
|
|
30
|
+
angr/unicornlib.dll,sha256=x615-V8z6ATaO7xNGK-H1OYtFJxBJnueHMd0UfA3PNQ,813568
|
|
31
31
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
32
32
|
angr/ailment/__init__.py,sha256=X1LTS6MuTovGtbXBjZendUVOzRk-ib-bP0imuqJDOYI,2039
|
|
33
33
|
angr/ailment/block.py,sha256=rkmimsNPhrUabVVbRd2IgCaW0hA2_isvAsKlYtHZhgY,2428
|
|
@@ -35,14 +35,14 @@ 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
|
|
43
43
|
angr/ailment/utils.py,sha256=YprhO7yJcd5jUKDbCXFMmPdCd8BIOhqXti-zb3mtxRQ,2830
|
|
44
44
|
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
45
|
-
angr/analyses/analysis.py,sha256=
|
|
45
|
+
angr/analyses/analysis.py,sha256=2ABUppMZr97ZEAmxOQuXo-eyw5aF0ZASAii8SuuncNo,15685
|
|
46
46
|
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
47
47
|
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
48
48
|
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
@@ -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=e0rl_AIM1ne-GZK7yuDPNkceyNSZIYY77sg0-jvjsyo,232943
|
|
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,32 +116,32 @@ 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=
|
|
124
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=O7vjwNTmCLijzjKgSCaoX3IX4_sC-u-OqoKhE7lahlc,23427
|
|
125
125
|
angr/analyses/decompiler/clinic.py,sha256=1TnX_kIvZ4kFoK818Tyq98ONATP82T9n7fB4akx9yHg,150921
|
|
126
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
126
|
+
angr/analyses/decompiler/condition_processor.py,sha256=ECv0HHJt48tOGjzKUQezZ1lUS3_Qqu2a8E-6W5SMerI,54425
|
|
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
|
|
129
129
|
angr/analyses/decompiler/decompiler.py,sha256=3TsG9Tz4OQInSXcHhoASqxY7VhRsaK8xw-ZV9-Y-zhc,30533
|
|
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
|
|
@@ -197,7 +197,7 @@ angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_re
|
|
|
197
197
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
198
198
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=H9FGTyxHm-KbqgxuTe2qjMotboRbUyOTeiPVcD_8DSk,4411
|
|
199
199
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=_WiRuxiMaxRAYtU5LiHGQ383PiI0sCt-KgG2QFG0KX4,5176
|
|
200
|
-
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=
|
|
200
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=TSpLThx8U5YK05r779be8SozeTya0zbziPOZDKCGa6M,4930
|
|
201
201
|
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=HY6EQkThiyMaahz3bodJUqLBKWY2n4aKGbKyspMXN50,1641
|
|
202
202
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=-V60wMaBKz1Ld1NcaQ8Dl0T4Xo9Qq6nfAQpXJ-MNsDI,1379
|
|
203
203
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py,sha256=5Gsq3DSQEWt3tZSkrxnbAEePkKC_dmpoQHZ2PVNlSfs,1158
|
|
@@ -221,8 +221,9 @@ angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=4f
|
|
|
221
221
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=STmu5FE0EHOkCdxFJt44DhMAjbAagnuics5VV6aNmnM,2110
|
|
222
222
|
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=t1Kn5ffzwio7AUO3EDtAbGvBFiR2gaRLIXBpOZ9LSIU,20612
|
|
223
223
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=NU1D1xqyQi4SaCUrJ9bk51-hjcFNseQgqD0wgQkh558,2049
|
|
224
|
-
angr/analyses/decompiler/peephole_optimizations/
|
|
225
|
-
angr/analyses/decompiler/peephole_optimizations/
|
|
224
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_memcpy.py,sha256=5OAgdFMTRlTggLQSUbVcUdgUmkJN7_p4wYkqt1A4AYQ,2944
|
|
225
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=q2IVsIFhfo0TGY3PfeOmCZqdpzUI2B3Tjv_p3_jpwl4,8668
|
|
226
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=d-O_rIm0OrwK88P0zYBZcOY0ewTdCp4bnkJZDdWUUVw,4883
|
|
226
227
|
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=irbBK2HB75f27L2EnHPuwDHumz1GBYqVwB96zoe-SFM,6787
|
|
227
228
|
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=hRx0tuK_s47AEgPfaWYbzh5lPfBhx_anGDTVoIxHYkg,1990
|
|
228
229
|
angr/analyses/decompiler/peephole_optimizations/modulo_simplifier.py,sha256=M09Whprj6tOJdFI5n9a7b-82YZOgnm3QvIbISJ9Lvaw,3724
|
|
@@ -284,17 +285,17 @@ angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbej
|
|
|
284
285
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
285
286
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
286
287
|
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=
|
|
288
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=3FZ9mxnFhqUExqW9DdTKQagtyiFuUJI1LvtRCI0Pd38,144326
|
|
289
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=iWFZdM54C1q2ezL7ouhH6rygJiGO2OCUH5JKXKgrf6w,7422
|
|
289
290
|
angr/analyses/decompiler/structuring/sailr.py,sha256=aJCES4r5HaLs-l1tXagIPtXpWnqY_uTlJn7wCYKnwTg,6127
|
|
290
291
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=HDztcvr4eJx5oqzZIXRjS8AhYBT1RESxLnaC4C4ISoI,47427
|
|
291
|
-
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=
|
|
292
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=3T6QPeD1KlLkcjMDBblQCb1Cf50VF36C-hlFhiKi9nc,12823
|
|
292
293
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
293
294
|
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
294
295
|
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=jtUxKYTdmGu0c_8zmP8V3JUYzTcac0j1CNctic3e7QA,2215
|
|
295
296
|
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
296
297
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
297
|
-
angr/analyses/deobfuscator/string_obf_finder.py,sha256=
|
|
298
|
+
angr/analyses/deobfuscator/string_obf_finder.py,sha256=cbwako92izix5V6tct95PpqK6nUE7YEUyNU8EAcyTes,40528
|
|
298
299
|
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=YzrsEKsUaUPshB8LqfwDso8aK7m0ySmR3i50T5ZiwNo,5360
|
|
299
300
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=_VQv2E2yOAZDAi53smQL5KcSLNe5FMqNUYC8jNSYXGs,1957
|
|
300
301
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
@@ -373,14 +374,14 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=qh7
|
|
|
373
374
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=oO2HROZZWsjPlCLMxEo7T4M5JkYRlkc9BLLYLwY1SfQ,2370
|
|
374
375
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
375
376
|
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=
|
|
377
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=r0UThjO4ZhrlCUuMYflzMoH5spObH25A65-S2koY5vM,13807
|
|
377
378
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=gNdg8xpu5by_McWU8j0g0502yQsO2evkTlben9yimV0,7826
|
|
378
379
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
379
380
|
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
380
381
|
angr/analyses/typehoon/lifter.py,sha256=hxYJmM_A0Kl6YgY7NyWBtA3ieaY49Ey3ESCHC61lMys,4000
|
|
381
382
|
angr/analyses/typehoon/simple_solver.py,sha256=CCGsuxzcRwPxh3S3fU_CJNQ7KVJaTP_SzH5ZImuPhDw,67609
|
|
382
383
|
angr/analyses/typehoon/translator.py,sha256=_UE1JC4KNDXXl4plula9OApK1ee07z9BFdX9HKa5uqw,10568
|
|
383
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
384
|
+
angr/analyses/typehoon/typeconsts.py,sha256=5xyZakTTra4K4-8icVqT5JMM__ZfnBVEBV_1kydQn50,8028
|
|
384
385
|
angr/analyses/typehoon/typehoon.py,sha256=qj5MBJdzVB-5f73N_Da0gs5fG-eIFN272VNfsdYn7lo,12777
|
|
385
386
|
angr/analyses/typehoon/typevars.py,sha256=ZDnKaGEwBTzYWUPQzacQkJ4rMpUDlnLzzJuKyQuEEtA,17839
|
|
386
387
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
@@ -434,7 +435,7 @@ angr/engines/concrete.py,sha256=kEt6Dyp8QAIaOP3oW5lRcDs_2UMP2vbiNzylGiqvf7g,2143
|
|
|
434
435
|
angr/engines/engine.py,sha256=2kwOT-sbxKXAVX2PmsPTr8Ax36Vxq6hkRdDKaITBQNc,657
|
|
435
436
|
angr/engines/failure.py,sha256=redqmkSuJoIc828hpmX3CTk4EqQ-PeEn7MK2uIqSAc0,1040
|
|
436
437
|
angr/engines/hook.py,sha256=lAEYYAXQY_GDOpsz3JZ7IswxrBccZnZ6EaQwyNBb4W8,2590
|
|
437
|
-
angr/engines/icicle.py,sha256=
|
|
438
|
+
angr/engines/icicle.py,sha256=8mAL_YEumoP95C3p0r7yoGdi68Xq2sz9-qpGjAu5ffE,10333
|
|
438
439
|
angr/engines/procedure.py,sha256=8kgFH56nkqSWm0p1apuGBaFngl-4BnAzE0bXhq9mc6Y,2561
|
|
439
440
|
angr/engines/successors.py,sha256=oQCW7Knxb4zz7EP6Mi6RrRNrwuhbv5fnX8UL76nn0sY,29501
|
|
440
441
|
angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
@@ -580,7 +581,7 @@ angr/knowledge_plugins/key_definitions/uses.py,sha256=BQqNeI4Ow29oWpCrkZbw8bLSKU
|
|
|
580
581
|
angr/knowledge_plugins/propagations/__init__.py,sha256=tG2ER9gilu212YgjfNB7-J8cLSw8kuE1m-UaM8wjljE,202
|
|
581
582
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=FFRNqHaEKzYF4sIMRoqemoEqTJxyrI9kvTgC5MdzEK4,7597
|
|
582
583
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
583
|
-
angr/knowledge_plugins/propagations/propagation_model.py,sha256=
|
|
584
|
+
angr/knowledge_plugins/propagations/propagation_model.py,sha256=IL8cxQ1uBiUQ8-GkMGVICpV5Gfftv-PNR7OX-6NdR5o,2898
|
|
584
585
|
angr/knowledge_plugins/propagations/states.py,sha256=lcjKdXShcahTXVUpeJoxYEdjBLBZosOot5qz1kTJ_EI,18956
|
|
585
586
|
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
586
587
|
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
@@ -1291,7 +1292,7 @@ angr/state_plugins/debug_variables.py,sha256=LR-lsjnn6FVrEr8RCVkhA_gyeeh1jiHC92u
|
|
|
1291
1292
|
angr/state_plugins/filesystem.py,sha256=qkM2zCfcrSBjt-g3RO1VYbjHPNRSdvsNRQR_M47pqFU,15765
|
|
1292
1293
|
angr/state_plugins/gdb.py,sha256=CrilA-FPDNm7Fk5fWx9wOn_gVb4SRJyFyNPcef7oOr0,5175
|
|
1293
1294
|
angr/state_plugins/globals.py,sha256=pU8_VPSjLLsW2x7vr_f2uFRMEIobqDjXQJUp5YDbkNU,1593
|
|
1294
|
-
angr/state_plugins/history.py,sha256=
|
|
1295
|
+
angr/state_plugins/history.py,sha256=f_d3QxcN0TYe2tZxCz1ojBKmb2oNjIAuKWYNZFEfL8I,19782
|
|
1295
1296
|
angr/state_plugins/inspect.py,sha256=9hXBRAL9C8rGqGdS9joydSsBsIrgu_pVLNmZeO_fqFs,11350
|
|
1296
1297
|
angr/state_plugins/javavm_classloader.py,sha256=QOkvHSVnoiaEKX6HK520viBemFpxXBcaXeC_csLSmhY,5589
|
|
1297
1298
|
angr/state_plugins/jni_references.py,sha256=ufNi66U9-O2c7bzOv1cAxykcEu3uj6PvbIOy_CV2Z2I,3451
|
|
@@ -1377,7 +1378,7 @@ angr/utils/__init__.py,sha256=kBUIJCp9WSgzb62zMg4puUUeheMSl9U4RFqkfiL3en8,1159
|
|
|
1377
1378
|
angr/utils/ail.py,sha256=-N59ISc-k-0jHFu0Bg5FIhvhBY8HT6zK3OYSVhXawWo,2838
|
|
1378
1379
|
angr/utils/algo.py,sha256=4TaEFE4tU-59KyRVFASqXeoiwH01ZMj5fZd_JVcpdOY,1038
|
|
1379
1380
|
angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
1380
|
-
angr/utils/constants.py,sha256=
|
|
1381
|
+
angr/utils/constants.py,sha256=8tQ1QnFw9U1kM9Q8YQ7StWxXHiqQHbWvrZanQK0eY2A,269
|
|
1381
1382
|
angr/utils/cowdict.py,sha256=qx2iO1rrCDTQUGX9dqi9ZAly2Dgm6bCEgdSAQw9MxRM,2159
|
|
1382
1383
|
angr/utils/cpp.py,sha256=k6ZOUNIqYxLd5WSRKP2T3li-3zt06PtneLgaBWPOtiU,516
|
|
1383
1384
|
angr/utils/doms.py,sha256=l5_GUvVcjfwglZTqGYKOx5QvJ_pE_PWBIhH8fTk_e80,5356
|
|
@@ -1387,7 +1388,7 @@ angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
|
1387
1388
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1388
1389
|
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
1389
1390
|
angr/utils/funcid.py,sha256=Rd4r8juv2IpeMtCpPp4wxJoEZTnZZ1NsxdT42tvrKVA,6353
|
|
1390
|
-
angr/utils/graph.py,sha256
|
|
1391
|
+
angr/utils/graph.py,sha256=aOAJIxzURwC-0wPEjpZBJj-bjGSo5vPjtCBqipDNGqA,32955
|
|
1391
1392
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1392
1393
|
angr/utils/library.py,sha256=_3R3so_CApzIFE4n87atJgWLkvzt3yHPEttUJsenqXw,7342
|
|
1393
1394
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
@@ -1396,12 +1397,13 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
|
1396
1397
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1397
1398
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1398
1399
|
angr/utils/types.py,sha256=688trvR0_j93sfeRgFT1npcmjNGSx99m_IPe9Xyy9WY,4967
|
|
1400
|
+
angr/utils/vex.py,sha256=epcrCexi_NjKnPGM2gfpiRsUea_Scd-71UMuF32ZAQo,306
|
|
1399
1401
|
angr/utils/ssa/__init__.py,sha256=xbuVllFoPane9lHACdRQP5OO99Mca-4sqpFrtoAvnxo,17464
|
|
1400
1402
|
angr/utils/ssa/tmp_uses_collector.py,sha256=digAUQpYoFR1VYfwoXlF3T1pYdDi6Pdq_ck54SjMabQ,813
|
|
1401
1403
|
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.
|
|
1404
|
+
angr-9.2.165.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
1405
|
+
angr-9.2.165.dist-info/METADATA,sha256=RgxSY1QhXwxPTOYdu6EUkhQuZyh3g5HvWk15uifPayU,4453
|
|
1406
|
+
angr-9.2.165.dist-info/WHEEL,sha256=OJ2zpOfp3Fst0GC5jHtFuY8tAf46LLgZ9O920dE4b3c,100
|
|
1407
|
+
angr-9.2.165.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1408
|
+
angr-9.2.165.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1409
|
+
angr-9.2.165.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|