angr 9.2.145__py3-none-manylinux2014_x86_64.whl → 9.2.147__py3-none-manylinux2014_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/bindiff.py +343 -68
- angr/analyses/cfg/cfg_arch_options.py +10 -0
- angr/analyses/cfg/cfg_base.py +39 -15
- angr/analyses/cfg/cfg_fast.py +19 -3
- angr/analyses/decompiler/optimization_passes/engine_base.py +9 -1
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +11 -0
- angr/analyses/decompiler/ssailification/ssailification.py +1 -1
- angr/analyses/flirt/__init__.py +47 -0
- angr/analyses/flirt/consts.py +160 -0
- angr/analyses/{flirt.py → flirt/flirt.py} +99 -38
- angr/analyses/flirt/flirt_function.py +20 -0
- angr/analyses/flirt/flirt_matcher.py +351 -0
- angr/analyses/flirt/flirt_module.py +32 -0
- angr/analyses/flirt/flirt_node.py +23 -0
- angr/analyses/flirt/flirt_sig.py +356 -0
- angr/analyses/flirt/flirt_utils.py +31 -0
- angr/analyses/stack_pointer_tracker.py +34 -0
- angr/analyses/typehoon/lifter.py +11 -1
- angr/analyses/typehoon/simple_solver.py +9 -0
- angr/analyses/typehoon/translator.py +16 -0
- angr/analyses/typehoon/typeconsts.py +8 -8
- angr/analyses/vfg.py +1 -1
- angr/block.py +6 -6
- angr/engines/vex/heavy/concretizers.py +10 -0
- angr/flirt/__init__.py +15 -44
- angr/knowledge_plugins/functions/function.py +4 -4
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/METADATA +6 -7
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/RECORD +33 -25
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/WHEEL +1 -1
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/LICENSE +0 -0
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/entry_points.txt +0 -0
- {angr-9.2.145.dist-info → angr-9.2.147.dist-info}/top_level.txt +0 -0
angr/flirt/__init__.py
CHANGED
|
@@ -6,44 +6,16 @@ import json
|
|
|
6
6
|
from collections import defaultdict
|
|
7
7
|
import logging
|
|
8
8
|
|
|
9
|
-
import
|
|
9
|
+
from angr.analyses.flirt import (
|
|
10
|
+
FlirtSignature,
|
|
11
|
+
FlirtSignatureParsed,
|
|
12
|
+
FlirtSignatureError,
|
|
13
|
+
flirt_arch_to_arch_name,
|
|
14
|
+
flirt_os_type_to_os_name,
|
|
15
|
+
)
|
|
10
16
|
|
|
11
|
-
_l = logging.getLogger(__name__)
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class FlirtSignature:
|
|
15
|
-
"""
|
|
16
|
-
This class describes a FLIRT signature.
|
|
17
|
-
"""
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
self,
|
|
21
|
-
arch: str,
|
|
22
|
-
platform: str,
|
|
23
|
-
sig_name: str,
|
|
24
|
-
sig_path: str,
|
|
25
|
-
unique_strings: set[str] | None = None,
|
|
26
|
-
compiler: str | None = None,
|
|
27
|
-
compiler_version: str | None = None,
|
|
28
|
-
os_name: str | None = None,
|
|
29
|
-
os_version: str | None = None,
|
|
30
|
-
):
|
|
31
|
-
self.arch = arch
|
|
32
|
-
self.platform = platform
|
|
33
|
-
self.sig_name = sig_name
|
|
34
|
-
self.sig_path = sig_path
|
|
35
|
-
self.unique_strings = unique_strings
|
|
36
|
-
self.compiler = compiler
|
|
37
|
-
self.compiler_version = compiler_version
|
|
38
|
-
self.os_name = os_name
|
|
39
|
-
self.os_version = os_version
|
|
40
|
-
|
|
41
|
-
def __repr__(self):
|
|
42
|
-
if self.os_name:
|
|
43
|
-
if self.os_version:
|
|
44
|
-
return f"<{self.sig_name}@{self.arch}-{self.os_name}-{self.os_version}>"
|
|
45
|
-
return f"<{self.sig_name}@{self.arch}-{self.os_name}>"
|
|
46
|
-
return f"<{self.sig_name}@{self.arch}-{self.platform}>"
|
|
18
|
+
_l = logging.getLogger(__name__)
|
|
47
19
|
|
|
48
20
|
|
|
49
21
|
FS = FlirtSignature
|
|
@@ -72,8 +44,8 @@ def load_signatures(path: str) -> None:
|
|
|
72
44
|
sig_path = os.path.join(root, filename)
|
|
73
45
|
try:
|
|
74
46
|
with open(sig_path, "rb") as f:
|
|
75
|
-
|
|
76
|
-
except
|
|
47
|
+
sig_parsed = FlirtSignatureParsed.parse(f)
|
|
48
|
+
except FlirtSignatureError:
|
|
77
49
|
_l.warning("Failed to load FLIRT signature file %s.", sig_path)
|
|
78
50
|
continue
|
|
79
51
|
|
|
@@ -84,8 +56,8 @@ def load_signatures(path: str) -> None:
|
|
|
84
56
|
with open(meta_path) as f:
|
|
85
57
|
meta = json.load(f)
|
|
86
58
|
|
|
87
|
-
arch = meta.get("arch",
|
|
88
|
-
platform = meta.get("platform",
|
|
59
|
+
arch = str(meta.get("arch", "Unknown"))
|
|
60
|
+
platform = str(meta.get("platform", "UnknownOS"))
|
|
89
61
|
os_name = meta.get("os", None)
|
|
90
62
|
os_version = meta.get("os_version", None)
|
|
91
63
|
compiler = meta.get("compiler", None)
|
|
@@ -94,9 +66,8 @@ def load_signatures(path: str) -> None:
|
|
|
94
66
|
|
|
95
67
|
else:
|
|
96
68
|
# nope... we need to extract information from the signature file
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
platform = flirt_header.os_types
|
|
69
|
+
arch = flirt_arch_to_arch_name(sig_parsed.arch, sig_parsed.app_types)
|
|
70
|
+
platform = flirt_os_type_to_os_name(sig_parsed.os_types)
|
|
100
71
|
os_name = None
|
|
101
72
|
os_version = None
|
|
102
73
|
unique_strings = None
|
|
@@ -106,7 +77,7 @@ def load_signatures(path: str) -> None:
|
|
|
106
77
|
signature = FlirtSignature(
|
|
107
78
|
arch,
|
|
108
79
|
platform,
|
|
109
|
-
|
|
80
|
+
sig_parsed.libname,
|
|
110
81
|
sig_path,
|
|
111
82
|
unique_strings=unique_strings,
|
|
112
83
|
compiler=compiler,
|
|
@@ -218,7 +218,7 @@ class Function(Serializable):
|
|
|
218
218
|
self.is_default_name = False
|
|
219
219
|
self._name = name
|
|
220
220
|
self.previous_names = []
|
|
221
|
-
self.from_signature = None
|
|
221
|
+
self.from_signature: str | None = None
|
|
222
222
|
|
|
223
223
|
# Determine the name the binary where this function is.
|
|
224
224
|
if binary_name is not None:
|
|
@@ -612,7 +612,7 @@ class Function(Serializable):
|
|
|
612
612
|
|
|
613
613
|
@property
|
|
614
614
|
def size(self):
|
|
615
|
-
return sum(
|
|
615
|
+
return sum(self._block_sizes.values())
|
|
616
616
|
|
|
617
617
|
@property
|
|
618
618
|
def binary(self):
|
|
@@ -638,12 +638,12 @@ class Function(Serializable):
|
|
|
638
638
|
return self.binary.loader.find_symbol(self.addr)
|
|
639
639
|
|
|
640
640
|
@property
|
|
641
|
-
def pseudocode(self) -> str:
|
|
641
|
+
def pseudocode(self) -> str | None:
|
|
642
642
|
"""
|
|
643
643
|
:return: the function's pseudocode
|
|
644
644
|
"""
|
|
645
645
|
dec = self.project.analyses.Decompiler(self, cfg=self._function_manager._kb.cfgs.get_most_accurate())
|
|
646
|
-
return dec.codegen.text
|
|
646
|
+
return dec.codegen.text if dec.codegen else None
|
|
647
647
|
|
|
648
648
|
def add_jumpout_site(self, node: CodeNode):
|
|
649
649
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.147
|
|
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/
|
|
@@ -17,22 +17,21 @@ Description-Content-Type: text/markdown
|
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: CppHeaderParser
|
|
19
19
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: ailment==9.2.
|
|
21
|
-
Requires-Dist: archinfo==9.2.
|
|
20
|
+
Requires-Dist: ailment==9.2.147
|
|
21
|
+
Requires-Dist: archinfo==9.2.147
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone==5.0.3
|
|
24
24
|
Requires-Dist: cffi>=1.14.0
|
|
25
|
-
Requires-Dist: claripy==9.2.
|
|
26
|
-
Requires-Dist: cle==9.2.
|
|
25
|
+
Requires-Dist: claripy==9.2.147
|
|
26
|
+
Requires-Dist: cle==9.2.147
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
|
-
Requires-Dist: nampa
|
|
29
28
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
30
29
|
Requires-Dist: protobuf>=5.28.2
|
|
31
30
|
Requires-Dist: psutil
|
|
32
31
|
Requires-Dist: pycparser>=2.18
|
|
33
32
|
Requires-Dist: pydemumble
|
|
34
33
|
Requires-Dist: pyformlang
|
|
35
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.147
|
|
36
35
|
Requires-Dist: rich>=13.1.0
|
|
37
36
|
Requires-Dist: sortedcontainers
|
|
38
37
|
Requires-Dist: sympy
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=VFwqi4hqitVtpIR0N3MNM4I8z3c-U-jQ6kpT7ThSAoI,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
4
|
angr/blade.py,sha256=NhesOPloKJC1DQJRv_HBT18X7oNxK16JwAfNz2Lc1o0,15384
|
|
5
|
-
angr/block.py,sha256=
|
|
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=6g-jU6Jt6bi0ZwihG1OT7Nq7_uNp52qA2o0Gq__DkWQ,97388
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
@@ -30,7 +30,7 @@ angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,347
|
|
|
30
30
|
angr/analyses/analysis.py,sha256=k6hAtEjwMpIIl4tewmu1mpVACVvw9lIb6dV_AV4NXIE,15078
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
32
32
|
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
33
|
-
angr/analyses/bindiff.py,sha256=
|
|
33
|
+
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
34
34
|
angr/analyses/boyscout.py,sha256=KIxl1chV_hQV2Unn-vnoYne1dmFVy1WTUdoidkUpQ8I,2469
|
|
35
35
|
angr/analyses/callee_cleanup_finder.py,sha256=lQRn5rHS6mGNOqDh-UsxX-gs4cDpwQ6KNjvzQFVCdio,2800
|
|
36
36
|
angr/analyses/cdg.py,sha256=UxKp30a1pq0q-FsgmutHU3sdXFwXOjlcal0wzX4EYJM,6229
|
|
@@ -45,7 +45,6 @@ angr/analyses/disassembly.py,sha256=u-O42jtW8IRQH-MDXKhCy5wCL-ZAIHlyeQ5g0GDVgK8,
|
|
|
45
45
|
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
46
46
|
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
47
47
|
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
48
|
-
angr/analyses/flirt.py,sha256=cly_6Xodsgmf5gEagYBH5HXdjhKaY2HwyUW7porEzU8,7798
|
|
49
48
|
angr/analyses/init_finder.py,sha256=lSiBfmKExmhK7wsLGsBaJYQKjW9t7S5mlcH3U--B6CI,9259
|
|
50
49
|
angr/analyses/loop_analysis.py,sha256=up6N3SZzya6N6OlKldo_MP36DqiY_tMbVdFWSM8fByU,9311
|
|
51
50
|
angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7030
|
|
@@ -57,10 +56,10 @@ angr/analyses/s_liveness.py,sha256=K4soSrcQE9pIn7Yf2Lb3LZEu1ymuQVpWzOqLKunFDGQ,7
|
|
|
57
56
|
angr/analyses/s_propagator.py,sha256=ChFdiT4wCN0p5mY0UsFGopH3ZH0zM5V_2Ur5cN15Kcc,23667
|
|
58
57
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
59
58
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
60
|
-
angr/analyses/stack_pointer_tracker.py,sha256=
|
|
59
|
+
angr/analyses/stack_pointer_tracker.py,sha256=OeAWCHdyjwfvR3cUM_HaFchE8v0vFRmVM-r-vgbKCag,37708
|
|
61
60
|
angr/analyses/static_hooker.py,sha256=8aine4A1KnkWNfn7IarlWUyX7NjygbFDYbE3_ptCPlA,1764
|
|
62
61
|
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
63
|
-
angr/analyses/vfg.py,sha256=
|
|
62
|
+
angr/analyses/vfg.py,sha256=04X_mup9P82bkQIXMju3_DBPPJB1TytA_7RR9uAu3tU,72868
|
|
64
63
|
angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,16136
|
|
65
64
|
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
66
65
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
@@ -71,10 +70,10 @@ angr/analyses/calling_convention/utils.py,sha256=WjpagYFRgJkukNzGN-H7N_vuIxMGJmg
|
|
|
71
70
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
72
71
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
73
72
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
74
|
-
angr/analyses/cfg/cfg_arch_options.py,sha256=
|
|
75
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
73
|
+
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
74
|
+
angr/analyses/cfg/cfg_base.py,sha256=d_OIE2Sdk7DjoEZfmQKeD4zP5ThT47WKgaMTT4YykaY,125902
|
|
76
75
|
angr/analyses/cfg/cfg_emulated.py,sha256=JgAen52lAK0v2f_EwiB_gS9BBhg8oqTALN7IVFd80Hk,148051
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
76
|
+
angr/analyses/cfg/cfg_fast.py,sha256=kwDO6JZlO_LyIJ2kgQ57TTwrNz25SWwIEoY0ROt1BbI,227716
|
|
78
77
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=X2uroCSbtfgugO33pbIU_hx62bHzZTBweO35iLwEaLo,25906
|
|
79
78
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
80
79
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
@@ -154,7 +153,7 @@ angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=-Y8JX
|
|
|
154
153
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
155
154
|
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4Kw7Bf_HqyACLhdsuj2XQhiSXjd02f7Wubf2A,2707
|
|
156
155
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
157
|
-
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=
|
|
156
|
+
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=pc81VuwPCnJlcUv2cBR2xNt9Egrv-Txua1n_3DXhd9I,16934
|
|
158
157
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
159
158
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=q2ZOxKQUXUwQNEDjEnj-ji32f6n_XR8M82lr_0ImJdM,5079
|
|
160
159
|
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=_rqXGIs03Idkw7IOtxHhapQ-qCMO_mKlJ_FfHAM6TAo,24842
|
|
@@ -204,7 +203,7 @@ angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KT
|
|
|
204
203
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=5ThmIgu38Un_N5AltnQtcTnoEnOT45HRu6NehB3rG5M,1713
|
|
205
204
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
206
205
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
207
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=
|
|
206
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=igDQmyEQtOT6KgBH_yfgm_JUBaycHBfytdLV1uxGFVE,17550
|
|
208
207
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
209
208
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=40RcqWIMALxfA-LG-DN2N_yK5uW2HWF_x4AquCTMbNU,6245
|
|
210
209
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=wKj38t6sTd6wpbVpbPG7Nxiz9vU5K_TvL4sws04TsDk,4681
|
|
@@ -253,7 +252,7 @@ angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQR
|
|
|
253
252
|
angr/analyses/decompiler/ssailification/rewriting.py,sha256=JW_StoLWuDs2LGyG8XjRUbzvQl7-7s2B8j1GKVaYoDo,15045
|
|
254
253
|
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=Jtjg_o0EyZFgadKhAulNMmDEK3wsvbRn_XbnaRjqlMM,37631
|
|
255
254
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
256
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
255
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=kEEph4IyCNY55XJvZU8RK3_y8TVZhBM2Yll2VGzGCzw,9897
|
|
257
256
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
258
257
|
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=BiXCqC3M3-reyq1Pxspo31Rnr9mTOojiFXa3tGlxipY,10512
|
|
259
258
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
@@ -279,6 +278,15 @@ angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=zJ10ql44q-Fyc6TQ-qJW7
|
|
|
279
278
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=SlzSTIZos_pMiC_VavvbfjAaYDoCA_ffj5vblhaBI-0,1947
|
|
280
279
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
281
280
|
angr/analyses/fcp/fcp.py,sha256=mJzCZ-JQ9Rv15qnVyqAzAhS8UJHldxbjvLieffG-nn0,16285
|
|
281
|
+
angr/analyses/flirt/__init__.py,sha256=1jKkwUDhwwnxG5BRcYtwogLHLBvtZApXgvcAcHrJrdw,1293
|
|
282
|
+
angr/analyses/flirt/consts.py,sha256=9ldvicgtJZa8Hw8cWOKxGkCYtc09I2q5ZWxctXcg20w,4861
|
|
283
|
+
angr/analyses/flirt/flirt.py,sha256=UNXtUBs11WafKeMAW2BwqKJLFhOyObqmRhfCqYdsJpc,10762
|
|
284
|
+
angr/analyses/flirt/flirt_function.py,sha256=IHskIu5XTTCLKfmow23ig4HIqzs7oGbw7iktIfv40O8,420
|
|
285
|
+
angr/analyses/flirt/flirt_matcher.py,sha256=nzhvPTIlVwHrn07qLLSRvgfpyOnlNRsziDCls_xh0Gg,6353
|
|
286
|
+
angr/analyses/flirt/flirt_module.py,sha256=pUP6vbujzceJMXFxvLAPgek5Y2qPv3KTlKY8ZWHeIQU,920
|
|
287
|
+
angr/analyses/flirt/flirt_node.py,sha256=ecfJq4Ymp38zzvoZPDfLcLSR045GNOM9je-F_NPM5e0,638
|
|
288
|
+
angr/analyses/flirt/flirt_sig.py,sha256=Kcxt7TU76HVW-06amqGlF6HuuG6uyQxjHnZV4uCXP1g,11398
|
|
289
|
+
angr/analyses/flirt/flirt_utils.py,sha256=ojZ_01s7O23vU7dN6xZL7Wyx5M3pgm43frxjbZzSmyU,819
|
|
282
290
|
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
283
291
|
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
284
292
|
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
@@ -348,10 +356,10 @@ angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=g3ESg9G7eLllEawCPN892u
|
|
|
348
356
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=_SooCn9qpwwCLsZ8end3Gos6XZbzjiBjWVjxG-VaNso,7596
|
|
349
357
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
350
358
|
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
351
|
-
angr/analyses/typehoon/lifter.py,sha256=
|
|
352
|
-
angr/analyses/typehoon/simple_solver.py,sha256=
|
|
353
|
-
angr/analyses/typehoon/translator.py,sha256
|
|
354
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
359
|
+
angr/analyses/typehoon/lifter.py,sha256=3GX0QzjzIyFAiF3R_e2BlvbGwqcDFWy51BF7rQpwSl4,3250
|
|
360
|
+
angr/analyses/typehoon/simple_solver.py,sha256=tIzhZ1H_DwbwGCpgspBBBjXvLiHyPGZD9le7r93s6rU,53307
|
|
361
|
+
angr/analyses/typehoon/translator.py,sha256=-SSTU_9vGlRun7msRll22OLYoVFHvlFJxEyctMVKjeU,10454
|
|
362
|
+
angr/analyses/typehoon/typeconsts.py,sha256=lh5nygChVPwI4IOLy8QnkBvqxfO22dDK_tKfAE0cYlg,7677
|
|
355
363
|
angr/analyses/typehoon/typehoon.py,sha256=ek7g_5v1bLNi8fv5FgYmMQrsOWj19qM8WvZvjzXd2NU,11420
|
|
356
364
|
angr/analyses/typehoon/typevars.py,sha256=cvbeeEDapb0LgGgtgUVpbhAcfuaylk7vEiwCqPxvtQo,16332
|
|
357
365
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
@@ -470,7 +478,7 @@ angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8El
|
|
|
470
478
|
angr/engines/vex/claripy/irop.py,sha256=aN5-kY_OCR2_Z6GrhxY03jv49GsdCOauHuaXeBJUtMw,46240
|
|
471
479
|
angr/engines/vex/heavy/__init__.py,sha256=XkIvjUOyEY9XN_zjM3ozzdSDqbMJHGm1XbehwhshlBE,376
|
|
472
480
|
angr/engines/vex/heavy/actions.py,sha256=Q08wb2TK5HfDduAf8PRXY58h8iIOeCuArNzALzIf0Tk,8668
|
|
473
|
-
angr/engines/vex/heavy/concretizers.py,sha256=
|
|
481
|
+
angr/engines/vex/heavy/concretizers.py,sha256=SHojrhwpJHlSTOPooX_2IZOv0kOOr9D6PJs52rdUlIQ,14826
|
|
474
482
|
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
475
483
|
angr/engines/vex/heavy/heavy.py,sha256=tbLzoyzKKTTfhqxT_VUR0ANkcRwCaF-Cj9UvHuLS1EU,15571
|
|
476
484
|
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
@@ -506,7 +514,7 @@ angr/exploration_techniques/timeout.py,sha256=JbKoV1MXYHVaiMERUy0gbEV7yeRy_uDjsg
|
|
|
506
514
|
angr/exploration_techniques/tracer.py,sha256=QqxsNn4jPwbpquZfjZDMlyIyAoZa1cOodDJhvS41Cx4,50111
|
|
507
515
|
angr/exploration_techniques/unique.py,sha256=UqB8dUzvgaSfYBfm15g8XYlBsS8Out0z1loN4sjBsNw,4453
|
|
508
516
|
angr/exploration_techniques/veritesting.py,sha256=8F7emyvQa8SOjr7Ztk7Bw-aIrYjrvmXBeaavMlNLvxs,1392
|
|
509
|
-
angr/flirt/__init__.py,sha256=
|
|
517
|
+
angr/flirt/__init__.py,sha256=uPA4ff2d8FQYfGzq2rgM5pJ9PAH82275On3EFKqXktE,3514
|
|
510
518
|
angr/flirt/build_sig.py,sha256=AO48uuWi76eMiw4-RTJn58j6DDyziy7HCuWMNpApcOQ,10020
|
|
511
519
|
angr/knowledge_plugins/__init__.py,sha256=T8ovRNYYhqk_QkKN2OU5JXzeYZob8iq3v0ZlnX8_Hho,1160
|
|
512
520
|
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
@@ -528,7 +536,7 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
528
536
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
529
537
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
530
538
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
531
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
539
|
+
angr/knowledge_plugins/functions/function.py,sha256=M5dNun1Mi15AIiYloKmmaFX-Mv_FOITzMjrbLlhyBQI,67545
|
|
532
540
|
angr/knowledge_plugins/functions/function_manager.py,sha256=gdXZY5__a8c_ItQoDkJq4ZBVk-ZLHnmBPYsHA6uEjeA,20001
|
|
533
541
|
angr/knowledge_plugins/functions/function_parser.py,sha256=Ma_51hPet3iVJgMtBhKaT48CcNnxCNv2ys5oMrqJ3bw,11821
|
|
534
542
|
angr/knowledge_plugins/functions/soot_function.py,sha256=lYMe4qbkhAkXqGHTVb0-RM_kB8xWYUocuioK7UmKZgQ,4847
|
|
@@ -1369,9 +1377,9 @@ angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
|
|
|
1369
1377
|
angr/utils/ssa/__init__.py,sha256=ohP9IJh9ZvdVH8nH-ZrYA8hwIi8L98XQ6NMNL6q_pJ0,13649
|
|
1370
1378
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1371
1379
|
angr/utils/ssa/vvar_uses_collector.py,sha256=O2aNZeM5DL8qatyhYuMhgbYGFp6Onm2yr9pKq1wRjA0,1347
|
|
1372
|
-
angr-9.2.
|
|
1373
|
-
angr-9.2.
|
|
1374
|
-
angr-9.2.
|
|
1375
|
-
angr-9.2.
|
|
1376
|
-
angr-9.2.
|
|
1377
|
-
angr-9.2.
|
|
1380
|
+
angr-9.2.147.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1381
|
+
angr-9.2.147.dist-info/METADATA,sha256=eBYQdfbT559De0QnHgLeCYffaeP56V_Z37GCs8E_v7w,4888
|
|
1382
|
+
angr-9.2.147.dist-info/WHEEL,sha256=Tk7MZKPRlLhwojX8s_v6dBkHHfFBWBk5_0_9xO1vu1Y,108
|
|
1383
|
+
angr-9.2.147.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1384
|
+
angr-9.2.147.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1385
|
+
angr-9.2.147.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|