angr 9.2.138__py3-none-macosx_11_0_arm64.whl → 9.2.139__py3-none-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/calling_convention/fact_collector.py +59 -12
- angr/analyses/calling_convention/utils.py +2 -2
- angr/analyses/cfg/cfg_fast.py +12 -4
- angr/analyses/decompiler/ail_simplifier.py +14 -3
- angr/analyses/decompiler/block_simplifier.py +0 -2
- angr/analyses/decompiler/callsite_maker.py +80 -14
- angr/analyses/decompiler/clinic.py +31 -37
- angr/analyses/decompiler/condition_processor.py +2 -2
- angr/analyses/decompiler/decompiler.py +2 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +16 -7
- angr/analyses/decompiler/optimization_passes/__init__.py +3 -0
- angr/analyses/decompiler/optimization_passes/condition_constprop.py +149 -0
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +12 -3
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +1 -1
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +5 -2
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +15 -7
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +7 -10
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +12 -1
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +61 -25
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +50 -1
- angr/analyses/decompiler/presets/fast.py +2 -0
- angr/analyses/decompiler/presets/full.py +2 -0
- angr/analyses/decompiler/region_simplifiers/region_simplifier.py +4 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +20 -2
- angr/analyses/decompiler/ssailification/traversal_engine.py +4 -3
- angr/analyses/decompiler/structured_codegen/c.py +10 -3
- angr/analyses/decompiler/structuring/dream.py +7 -2
- angr/analyses/decompiler/structuring/phoenix.py +101 -49
- angr/analyses/decompiler/structuring/structurer_base.py +85 -36
- angr/analyses/decompiler/structuring/structurer_nodes.py +3 -1
- angr/analyses/deobfuscator/api_obf_finder.py +6 -1
- angr/analyses/deobfuscator/api_obf_type2_finder.py +158 -0
- angr/analyses/s_propagator.py +127 -50
- angr/analyses/s_reaching_definitions/s_rda_view.py +2 -2
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +3 -1
- angr/analyses/variable_recovery/engine_ail.py +1 -1
- angr/analyses/variable_recovery/engine_base.py +55 -62
- angr/analyses/variable_recovery/engine_vex.py +1 -1
- angr/analyses/variable_recovery/irsb_scanner.py +2 -2
- angr/calling_conventions.py +66 -9
- angr/engines/engine.py +2 -18
- angr/engines/light/engine.py +3 -8
- angr/engines/pcode/emulate.py +2 -2
- angr/engines/pcode/lifter.py +2 -2
- angr/engines/successors.py +1 -8
- angr/engines/vex/lifter.py +2 -2
- angr/engines/vex/light/light.py +2 -2
- angr/knowledge_plugins/cfg/cfg_model.py +3 -2
- angr/knowledge_plugins/labels.py +2 -2
- angr/knowledge_plugins/obfuscations.py +1 -0
- angr/knowledge_plugins/xrefs/xref_manager.py +4 -0
- angr/lib/angr_native.dylib +0 -0
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/METADATA +6 -6
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/RECORD +59 -57
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/LICENSE +0 -0
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/WHEEL +0 -0
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/entry_points.txt +0 -0
- {angr-9.2.138.dist-info → angr-9.2.139.dist-info}/top_level.txt +0 -0
angr/engines/successors.py
CHANGED
|
@@ -7,6 +7,7 @@ import claripy
|
|
|
7
7
|
from archinfo.arch_soot import ArchSoot, SootAddressDescriptor
|
|
8
8
|
|
|
9
9
|
from angr import sim_options as o
|
|
10
|
+
from angr.calling_conventions import SYSCALL_CC
|
|
10
11
|
from angr.errors import SimSolverModeError, AngrUnsupportedSyscallError, AngrSyscallError, SimValueError, SimUnsatError
|
|
11
12
|
from angr.storage import DUMMY_SYMBOLIC_READ_VALUE
|
|
12
13
|
from angr.state_plugins.inspect import BP_BEFORE, BP_AFTER
|
|
@@ -66,10 +67,6 @@ class SimSuccessors:
|
|
|
66
67
|
self.sort: str | None = None
|
|
67
68
|
self.artifacts = {}
|
|
68
69
|
|
|
69
|
-
@classmethod
|
|
70
|
-
def failure(cls):
|
|
71
|
-
return cls(None, None)
|
|
72
|
-
|
|
73
70
|
def __repr__(self):
|
|
74
71
|
if self.processed:
|
|
75
72
|
successor_strings = []
|
|
@@ -542,7 +539,3 @@ class SimSuccessors:
|
|
|
542
539
|
addrs = state.solver.eval_upto(ip, limit)
|
|
543
540
|
|
|
544
541
|
return [(ip == addr, addr) for addr in addrs]
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
# pylint: disable=wrong-import-position
|
|
548
|
-
from angr.calling_conventions import SYSCALL_CC
|
angr/engines/vex/lifter.py
CHANGED
|
@@ -8,7 +8,7 @@ import cle
|
|
|
8
8
|
from archinfo import ArchARM
|
|
9
9
|
import claripy
|
|
10
10
|
|
|
11
|
-
from angr.engines.engine import
|
|
11
|
+
from angr.engines.engine import SimEngine
|
|
12
12
|
from angr.state_plugins.inspect import BP_AFTER, BP_BEFORE, NO_OVERRIDE
|
|
13
13
|
from angr.misc.ux import once
|
|
14
14
|
from angr.errors import SimEngineError, SimTranslationError, SimError
|
|
@@ -20,7 +20,7 @@ VEX_IRSB_MAX_SIZE = 400
|
|
|
20
20
|
VEX_IRSB_MAX_INST = 99
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
class VEXLifter(
|
|
23
|
+
class VEXLifter(SimEngine):
|
|
24
24
|
"""
|
|
25
25
|
Implements the VEX lifter engine mixin.
|
|
26
26
|
"""
|
angr/engines/vex/light/light.py
CHANGED
|
@@ -3,7 +3,7 @@ import logging
|
|
|
3
3
|
|
|
4
4
|
import pyvex
|
|
5
5
|
|
|
6
|
-
from angr.engines.engine import
|
|
6
|
+
from angr.engines.engine import SimEngine
|
|
7
7
|
from angr.utils.constants import DEFAULT_STATEMENT
|
|
8
8
|
|
|
9
9
|
l = logging.getLogger(name=__name__)
|
|
@@ -11,7 +11,7 @@ l = logging.getLogger(name=__name__)
|
|
|
11
11
|
# pylint:disable=arguments-differ,unused-argument,no-self-use
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
class VEXMixin(
|
|
14
|
+
class VEXMixin(SimEngine):
|
|
15
15
|
def __init__(self, project, **kwargs):
|
|
16
16
|
super().__init__(project, **kwargs)
|
|
17
17
|
self._vex_expr_handlers = []
|
|
@@ -631,8 +631,9 @@ class CFGModel(Serializable):
|
|
|
631
631
|
|
|
632
632
|
if boundary is not None:
|
|
633
633
|
data.max_size = boundary - data_addr
|
|
634
|
-
|
|
635
|
-
|
|
634
|
+
else:
|
|
635
|
+
# boundary does not exist, which means the data address is not mapped at all
|
|
636
|
+
data.max_size = 0
|
|
636
637
|
|
|
637
638
|
keys = sorted(self.memory_data.keys())
|
|
638
639
|
|
angr/knowledge_plugins/labels.py
CHANGED
|
@@ -95,14 +95,14 @@ class Labels(KnowledgeBasePlugin):
|
|
|
95
95
|
:return: A unique label name.
|
|
96
96
|
"""
|
|
97
97
|
|
|
98
|
-
if label not in self.
|
|
98
|
+
if label not in self._reverse_labels:
|
|
99
99
|
return label
|
|
100
100
|
|
|
101
101
|
# use it as the prefix
|
|
102
102
|
i = 1
|
|
103
103
|
while True:
|
|
104
104
|
new_label = f"{label}_{i}"
|
|
105
|
-
if new_label not in self.
|
|
105
|
+
if new_label not in self._reverse_labels:
|
|
106
106
|
return new_label
|
|
107
107
|
i += 1
|
|
108
108
|
|
|
@@ -24,6 +24,10 @@ class XRefManager(KnowledgeBasePlugin, Serializable):
|
|
|
24
24
|
xm.xrefs_by_dst = self.xrefs_by_dst.copy()
|
|
25
25
|
return xm
|
|
26
26
|
|
|
27
|
+
def clear(self):
|
|
28
|
+
self.xrefs_by_ins_addr = defaultdict(set)
|
|
29
|
+
self.xrefs_by_dst = defaultdict(set)
|
|
30
|
+
|
|
27
31
|
def add_xref(self, xref):
|
|
28
32
|
to_remove = set()
|
|
29
33
|
# Overwrite existing "offset" refs
|
angr/lib/angr_native.dylib
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.139
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
Home-page: https://github.com/angr/angr
|
|
6
6
|
License: BSD-2-Clause
|
|
@@ -16,13 +16,13 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: CppHeaderParser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: ailment==9.2.139
|
|
20
|
+
Requires-Dist: archinfo==9.2.139
|
|
21
21
|
Requires-Dist: cachetools
|
|
22
22
|
Requires-Dist: capstone==5.0.3
|
|
23
23
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
24
|
+
Requires-Dist: claripy==9.2.139
|
|
25
|
+
Requires-Dist: cle==9.2.139
|
|
26
26
|
Requires-Dist: itanium-demangler
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: nampa
|
|
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=5.28.2
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: pycparser>=2.18
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.139
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=QUM4Le23GktI3KZcDRXBzoX6DbQzWHXvFux8zmJaACg,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
5
|
angr/block.py,sha256=nTIXI9H8kLrJUvAiuzrjTYD568YFvAzULrnaw7rj_sA,16469
|
|
6
6
|
angr/callable.py,sha256=ioy94hgdQLSqMwxPzYqWMIx2WCNzUwVxgm6BxRr64D0,6063
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=V-P-zA5QF75R4PUkfd9XFSv209WGg2UIZi9pb8Myo08,96167
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
@@ -54,7 +54,7 @@ angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,1
|
|
|
54
54
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
55
55
|
angr/analyses/reassembler.py,sha256=dc1bM-4pxVa2dypC7qL2REdKhpyKhSbQPf-LCDIBEwA,98351
|
|
56
56
|
angr/analyses/s_liveness.py,sha256=4BR_E3_Is7urOkKgtB1hgGpRoyqfytv9WcqrpSXc74k,5881
|
|
57
|
-
angr/analyses/s_propagator.py,sha256=
|
|
57
|
+
angr/analyses/s_propagator.py,sha256=TCRr_LSQ9BurcF4KfyVxQHZlg5VzfuvudOnCEIab0RQ,24476
|
|
58
58
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
59
59
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
60
60
|
angr/analyses/stack_pointer_tracker.py,sha256=msazJUmyMdvWVc0fRmiVTitWXGDQUunpdT2R2OO5LKs,32991
|
|
@@ -66,15 +66,15 @@ angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
|
66
66
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
67
67
|
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
68
68
|
angr/analyses/calling_convention/calling_convention.py,sha256=aWAe5MDKcw0enZf9poZYVoucIKxWrL7p5lLpiO_CfwM,39774
|
|
69
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
70
|
-
angr/analyses/calling_convention/utils.py,sha256=
|
|
69
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=21zePCKqAzKved30HZJV1kCTG6_TNb_yKejHk8uOG8w,24236
|
|
70
|
+
angr/analyses/calling_convention/utils.py,sha256=JBLI3W_Tw-P6lzVMbUSiVEkjQFlOm5YpGCY8ANcH80I,2051
|
|
71
71
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
72
72
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
73
73
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
74
74
|
angr/analyses/cfg/cfg_arch_options.py,sha256=QpC_sonf0eODcIxWtjVrW6E-gFRGvvdataqGEp9DFFI,3142
|
|
75
75
|
angr/analyses/cfg/cfg_base.py,sha256=7RRJ3omI-SYzeegrYYSrcU2GDcq9Uy2SaJdOvVHvjOQ,121985
|
|
76
76
|
angr/analyses/cfg/cfg_emulated.py,sha256=DkLzdePp50ecbFDhpqEtK43V8H1K4BnQe9NdjlNnonY,147826
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
77
|
+
angr/analyses/cfg/cfg_fast.py,sha256=1LvVSmW7EXuyI08GTal_TaVNRgzWUepmInqsEWVrp18,225968
|
|
78
78
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=X2uroCSbtfgugO33pbIU_hx62bHzZTBweO35iLwEaLo,25906
|
|
79
79
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=6P6GXkJ0v_WlWtz7aRpGXuY8LlfqTN3A703b1VnH5IQ,766
|
|
@@ -100,17 +100,17 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
|
|
|
100
100
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
101
101
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
102
102
|
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
103
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
103
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=NzBaT-mDqKgX28bDA0RShF_wr_66D_htWGBaiDmrTus,73771
|
|
104
104
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
105
105
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
106
106
|
angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
|
|
107
|
-
angr/analyses/decompiler/block_simplifier.py,sha256=
|
|
108
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
109
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
110
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
107
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
108
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=BRCbGj06JMcovtIc_xgZwHMJ5Vlr87G-Mv3plQPD_5c,21653
|
|
109
|
+
angr/analyses/decompiler/clinic.py,sha256=nXqOLy5XTys08hzE6uGa2T_Wq0tp0Ld89bJKGJmPIMg,127542
|
|
110
|
+
angr/analyses/decompiler/condition_processor.py,sha256=9-0RVyDKP-pSMdEK_pRw-s95mKV3nfYeoQCgRMHclAs,53782
|
|
111
111
|
angr/analyses/decompiler/decompilation_cache.py,sha256=raMsZL9i5ajKP-lO_Qo_1gP2bsDccTNP9cNhINbk8ac,1375
|
|
112
112
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
113
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
113
|
+
angr/analyses/decompiler/decompiler.py,sha256=QQsADrLsUFrdl37REqyLhY655_MgdcmphdIxgUx0A6M,28786
|
|
114
114
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
115
115
|
angr/analyses/decompiler/expression_narrower.py,sha256=hEL9ZkmUpX6wAv_hBcIV4jwTuiHpbZTNjGodfV0VsnI,10343
|
|
116
116
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
@@ -139,31 +139,32 @@ angr/analyses/decompiler/dephication/dephication_base.py,sha256=9HdE_zKnakLSYJZr
|
|
|
139
139
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
140
140
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=vhBGSu1VN2Yl7eethD5fiatHPOjGNs4JSov5x-SMFFw,3400
|
|
141
141
|
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=jYMpzmQ_r8ojLldZ2e_M20E3wRqWKlQZKfWeCd-_YqA,14060
|
|
142
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
142
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=OPhLBkJOPEyxjmioFy3fYpESjkxg-wWsJ8rBjwkW8_g,15493
|
|
143
143
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=Y5On7C6glk3VztwbQFzKYlTTRf2vu9bB5fcRH3rbuhQ,4802
|
|
144
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
144
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=nv2cTSPfQAaYXHBqeEhHcU4iYxoG5E6FT7TNkvTsnAk,5007
|
|
145
145
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
146
146
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
147
147
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
148
|
+
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=HJQ1H5CAeJCJT9kvLNc0_MXCZm3B7O0GNs3l7DsldKc,5742
|
|
148
149
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIaVZddpFY1quHQOPEbBRnuQvmXEyiPHo0,10490
|
|
149
150
|
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=D0M5-RosTsHQC4cnPmsByhC-szOpykLN-XCuJ06GAos,13117
|
|
150
151
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
151
|
-
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4Kw7Bf_HqyACLhdsuj2XQhiSXjd02f7Wubf2A,2707
|
|
152
153
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
153
154
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=PiCFksceRfu0nPPSKfzTsMmrAJ1YaHMEjcuCHcaYbgM,16662
|
|
154
155
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
155
156
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=lS70nBKCSWQ69vcvazAI24zgUdEFtbg33wr6t78XFqI,4029
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
157
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=_rqXGIs03Idkw7IOtxHhapQ-qCMO_mKlJ_FfHAM6TAo,24842
|
|
157
158
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
158
159
|
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=gFEgdVcsWOCex1VZMRY5kBgjL4LGE9yXp8N5y6LY7ws,13168
|
|
159
160
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=qxSCQD5vtCzweHX9p6CY2REc0fIbk53igmAnIDmKprk,38819
|
|
160
161
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=BzgSGM39Uv1WAGPM831wLnKW8t-mw9tQoV07ZlxbU_Y,3379
|
|
161
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=tTWi8GsqFZSTUdimMuIgUKUDGRfhXvEyHrw1uA3f_Sw,22648
|
|
162
163
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=X6A252YhqUvT7A6J5NqCKBom2PRlh5NDHpAjXfNvBfg,7854
|
|
163
164
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
164
165
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
165
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
166
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=ASW0-1n_ytW7vzC4KFp6hTV4q65mwQaia3X6LizcTRY,25011
|
|
167
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=EgDtVm175NStVFcppjnTrlE-aP0F2oW0tgK3_kpp6xA,2054
|
|
167
168
|
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
168
169
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=wRa-_zwogSbqgxKu-apHp-fSMwuiBFrKgXa29BiY4YE,14422
|
|
169
170
|
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=gvGpjP3t-an8iIBkmPGXob0-aRHL2idGZpd7hErlgFo,6461
|
|
@@ -199,7 +200,7 @@ angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KT
|
|
|
199
200
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=5ThmIgu38Un_N5AltnQtcTnoEnOT45HRu6NehB3rG5M,1713
|
|
200
201
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
201
202
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
202
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=
|
|
203
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=ZIucLTDC8hxj3kn7muEpITAm3Hv1z5suqOx-rSOzWCU,15692
|
|
203
204
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
204
205
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=40RcqWIMALxfA-LG-DN2N_yK5uW2HWF_x4AquCTMbNU,6245
|
|
205
206
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=wKj38t6sTd6wpbVpbPG7Nxiz9vU5K_TvL4sws04TsDk,4681
|
|
@@ -210,12 +211,12 @@ angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,
|
|
|
210
211
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
211
212
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=v4v56O-fUdhJkR9dqkzK1MgHyNTQ0182hp7TuA6n1G8,1783
|
|
212
213
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
213
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=
|
|
214
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=d-Ma-WmI5H_g26KUcubQttExEeCZdyhl9y1BP64VzDQ,9392
|
|
214
215
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
215
216
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
216
217
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
217
218
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=DqGdwso3CuulthzNNjUseNF2eb8VMQhhritjWSwCViE,1425
|
|
218
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=
|
|
219
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=7nScYJZpXo9M8hcdu4FSWOGb_5Ey9F_sQhopqCMQooM,3992
|
|
219
220
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=MHkgIgOMWaAVqe5q4X-yzIxkPzd2KyTngvhxtXorOi4,1605
|
|
220
221
|
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=DPiL5gstqkiQicWlLABiQwgpUoiunZNGiIg7tUUpAkA,3295
|
|
221
222
|
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=-bENfNstVil2AW-AUsQHr6GTt6TyhISw2jaNpHkheuU,1904
|
|
@@ -229,8 +230,8 @@ angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=RRzuc2
|
|
|
229
230
|
angr/analyses/decompiler/peephole_optimizations/utils.py,sha256=AjnndY2RIRg9R2vzVnEleq_IJgbtBPK3NlfK5vM0UYw,719
|
|
230
231
|
angr/analyses/decompiler/presets/__init__.py,sha256=NWARH5yOyBz4-5qKhzH56PNfPNRViNKMDeESlpplFxo,375
|
|
231
232
|
angr/analyses/decompiler/presets/basic.py,sha256=KDHlMq_XWonN2-JIYYVIhbI6FbfzXttmkgXFrwi5MiA,803
|
|
232
|
-
angr/analyses/decompiler/presets/fast.py,sha256=
|
|
233
|
-
angr/analyses/decompiler/presets/full.py,sha256=
|
|
233
|
+
angr/analyses/decompiler/presets/fast.py,sha256=1NJfllSuvmBOQNwbpvMwL2fBfXf5ULsmk97wh7V5hZ4,1490
|
|
234
|
+
angr/analyses/decompiler/presets/full.py,sha256=zEtJ-dWYU3xpl1hwX1A3CeaXsFF2NXgsEyzG8x60faw,1734
|
|
234
235
|
angr/analyses/decompiler/presets/preset.py,sha256=sTK5fJfx_Cdx0Gjn7y4bOrDp-2eFPeg1e1d5Eyc9uXk,1256
|
|
235
236
|
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
236
237
|
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=qLs1LxEYHdPrh5c33IdkHJqtjBU7z4Sz6fxOK4Fn0Oc,3816
|
|
@@ -241,32 +242,33 @@ angr/analyses/decompiler/region_simplifiers/if_.py,sha256=rLH5csZCB5-cCsWJh2SdvW
|
|
|
241
242
|
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
242
243
|
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=uKieYMvygDt8GhK1b_EjHTP064I1FTEZd6HIEntB0K8,6315
|
|
243
244
|
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=LY7TH54eCZOqKW67b0OVfS_-35rRoHPhazdyB8Ng4vE,600
|
|
244
|
-
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=
|
|
245
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=nVGWdOaAvWBKPnzQ_3HuCudpAOZLOYONYQMjzAEQGhk,8475
|
|
245
246
|
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=sYhRG2kti3NZOZf5f94Z2eX9tunTAUrzT83KlkUyk8A,24900
|
|
246
247
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
247
248
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
248
249
|
angr/analyses/decompiler/ssailification/rewriting.py,sha256=49OcvTm3NDbF7xGNkJaYa9KyHqpdsS8-_GRetoZYExg,12833
|
|
249
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
250
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=JmsUNeUgh-8x2-7ZG3sPdLnUqLfS7DBAvg1_-gjLZSE,32949
|
|
250
251
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
251
252
|
angr/analyses/decompiler/ssailification/ssailification.py,sha256=4GpmHJflyEpecW3vFaUImeFAsK7D5cqzq4m-fmhGxUs,9358
|
|
252
253
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
253
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
254
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=fdYGD_032HZrtEBvphR6RgBUJgeNDpGzCpABpA-Zgdg,9804
|
|
254
255
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
255
256
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
256
257
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
257
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
258
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=W0KElgzS20XEoAks9I0Q2PGW-oLnyianu4BkJjrD2VU,142828
|
|
258
259
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
259
260
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
260
261
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
261
|
-
angr/analyses/decompiler/structuring/dream.py,sha256=
|
|
262
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=f-aZrUpH2kmL0rxUGaiIkebbe-i4pNiyc0KWUMck6I8,48436
|
|
263
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=j7oA3FWP8TWWYDSrpsJeLYO9R0OMI1p3jQWoSns6OOg,133045
|
|
263
264
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=wxMiixVpmao1Rpuo3wN-gxkPh2YrgTTW4usgtdjdY9E,7150
|
|
264
265
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
265
|
-
angr/analyses/decompiler/structuring/structurer_base.py,sha256=
|
|
266
|
-
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=bHFoqPOaoVLeu5UrC_KeDjCtz9CvMznEm5PSZ-iVQFE,45718
|
|
267
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=Y0oKxBcqG-sIh4epHU9gp_e48-pelad0TBos7QC0otk,12281
|
|
267
268
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
268
|
-
angr/analyses/deobfuscator/api_obf_finder.py,sha256=
|
|
269
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=2VhsehDWy1e_lHaYa0EO45dWpZC13cdHvJdt8AGigQo,13415
|
|
269
270
|
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=VTxw3FPV7-OCPwAy6LLPnBWtiD2eDxYwAF0g3h4YOCM,2207
|
|
271
|
+
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=Sv7xQAH4D6mv6yZ--iF9MLa5ejkV1lGcelsXGvluKko,6073
|
|
270
272
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
271
273
|
angr/analyses/deobfuscator/string_obf_finder.py,sha256=gVwt31nZNG_b49T7y9IHrEQ6xemoBR2N3lqzP5ohvK8,33190
|
|
272
274
|
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=zJ10ql44q-Fyc6TQ-qJW7cZHlk80RI2VlCzqG1-h9FM,5345
|
|
@@ -338,8 +340,8 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=14g
|
|
|
338
340
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
339
341
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
340
342
|
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=88s0atY64Aay1_xi4UWhAeMjiHsc1_xE8PxVDgzv_3w,5055
|
|
341
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
342
|
-
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=
|
|
343
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=xGcRtLXLPCHy0GRrum6zhj8bBpAdR5kfW9rlAknvH9A,12733
|
|
344
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=4J9dIyklZodWAn1DGzMflNRwFuprhS2mwM1ud_yAK0c,7815
|
|
343
345
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
344
346
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
345
347
|
angr/analyses/typehoon/lifter.py,sha256=iLl9F7RZtyth3qEeTvJGyvrKxrmaLn8LxS9DUbkoz4k,2823
|
|
@@ -354,10 +356,10 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
354
356
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
355
357
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
356
358
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
357
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
358
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
359
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=
|
|
360
|
-
angr/analyses/variable_recovery/irsb_scanner.py,sha256=
|
|
359
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=NJSTLRLVjkS1JHVB9WEjBzYHiOQ3SV2kD4znrEvSuRc,31888
|
|
360
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=sHoDCNJihgLQPBmIeKGmRS4H_0LFOjDWm1kJlTCafYY,51273
|
|
361
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=jQEM7ruKhjQczkKqWcvpl5dVig-B6KyUiS_KuQrRaUs,20644
|
|
362
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
361
363
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
362
364
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
363
365
|
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=FdUYHFVRHFA5nCUIOUl4_HgvRSSpQ7w8nD3gRovKp_0,26730
|
|
@@ -395,22 +397,22 @@ angr/distributed/__init__.py,sha256=OPxtG89oy5LO_vmrjv_E5e6SOKjIYAyhMx4FhUhqBwI,
|
|
|
395
397
|
angr/distributed/server.py,sha256=g3STpFQ48AScjXciwCt1sGE-qWAvi3GHwb8tdScL1CE,6645
|
|
396
398
|
angr/distributed/worker.py,sha256=MZVlxC9ksC6xUG2fy5h08Vv9R8RiG7QBQIomPYdFIJs,6065
|
|
397
399
|
angr/engines/__init__.py,sha256=BAJiIrk434Sjx0uVAPTSQLuI5hyto-g6oxHYnw2KVyE,1660
|
|
398
|
-
angr/engines/engine.py,sha256=
|
|
400
|
+
angr/engines/engine.py,sha256=XjdaZ623tqQ0ufwkhfokIzCDRXFAANYmYvqI0ExTx8U,6268
|
|
399
401
|
angr/engines/failure.py,sha256=4HMJ6E4CODc9TScGeOozHzEBqN9rmkeFPbM2nOwSmr0,1034
|
|
400
402
|
angr/engines/hook.py,sha256=jMPgloeh6rZIx_OtsCec6Ct04xx5xQLez9_XZfiW2TI,2581
|
|
401
403
|
angr/engines/procedure.py,sha256=iQoFIF9YwsK2KkxRjZbfmnuuL-hZgRdlvm4y6VWnxQY,2555
|
|
402
|
-
angr/engines/successors.py,sha256=
|
|
404
|
+
angr/engines/successors.py,sha256=v-XVOQ9EYnkuc8LWnwN6tfPABUxo6TbYaueyVpCIC7I,24212
|
|
403
405
|
angr/engines/syscall.py,sha256=BoC2dtkBvi82y91A2BRxFxm3nbXWCTnsJHaTKD2e-bU,2160
|
|
404
406
|
angr/engines/unicorn.py,sha256=KNuBWIYTWP2l4NHjV1HW4Ggiiyn4gfOxLJYi_M0f5Us,24506
|
|
405
407
|
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
406
408
|
angr/engines/light/data.py,sha256=3bvC-7e6isb4aGM7IrdpZelJDSWQ0KflC-oNpCDT7tI,21243
|
|
407
|
-
angr/engines/light/engine.py,sha256=
|
|
409
|
+
angr/engines/light/engine.py,sha256=x_as89HY2EkWfJWnpq28BoWCE_dy2KaDFr1bI7aJSKo,45934
|
|
408
410
|
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
409
411
|
angr/engines/pcode/behavior.py,sha256=ycNNTNHlCJFG6fPtOwRHbI3c0fkY5pYyPA--k3Kz-WY,29406
|
|
410
412
|
angr/engines/pcode/cc.py,sha256=brVglfSNnpDbRRcG-KO9EZ5NMMlmtDzP1n4kap7gKRY,3236
|
|
411
|
-
angr/engines/pcode/emulate.py,sha256=
|
|
413
|
+
angr/engines/pcode/emulate.py,sha256=36RgLy9bmpB3r_RCyDh3iudhKyaaBtlvLYPf3X1LlOA,16732
|
|
412
414
|
angr/engines/pcode/engine.py,sha256=ZCBTxvdmLrYxMYqHaQDIu-WcFl7YN_RHkJ8Z9WlJaWI,10486
|
|
413
|
-
angr/engines/pcode/lifter.py,sha256=
|
|
415
|
+
angr/engines/pcode/lifter.py,sha256=Nx7dMzovx76oIJZGWSSiYcHagqtw7DNEsdgh6llJyxU,52231
|
|
414
416
|
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
415
417
|
angr/engines/soot/engine.py,sha256=23sv3_qn85Dnzi_ttIMyJ9PLL70auVKPZgZsraEhi8M,17059
|
|
416
418
|
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
@@ -457,7 +459,7 @@ angr/engines/soot/values/staticfieldref.py,sha256=fYucDqKryaZbCWm2iOSsVi7FdGRIm9
|
|
|
457
459
|
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
458
460
|
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
459
461
|
angr/engines/vex/__init__.py,sha256=k8cIQpJO2Wv6erLCOa4boEywRcwlFOTgAgGP6wNQcwM,525
|
|
460
|
-
angr/engines/vex/lifter.py,sha256=
|
|
462
|
+
angr/engines/vex/lifter.py,sha256=BqeajzzpLL32nmGaszWASBPDhluhTec2m3ods1ZTIIo,17207
|
|
461
463
|
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
462
464
|
angr/engines/vex/claripy/ccall.py,sha256=Q8u0DOsjkr-4PHgnpciWGocm4q783c9n4CgzuUAY-J4,81744
|
|
463
465
|
angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8ElSuJcFzNQ,4971
|
|
@@ -471,7 +473,7 @@ angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mj
|
|
|
471
473
|
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
472
474
|
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
473
475
|
angr/engines/vex/light/__init__.py,sha256=U31OCY_B_kjtpewghpiFa7mYNBGNVj6CoeOiKAhUUkE,224
|
|
474
|
-
angr/engines/vex/light/light.py,sha256=
|
|
476
|
+
angr/engines/vex/light/light.py,sha256=YBBUOIJrE8YkbW_JNBVyjqpwVymsf1mOuqYl6bpUE_0,21685
|
|
475
477
|
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
476
478
|
angr/engines/vex/light/slicing.py,sha256=JtUtOeE9h-xBtrrVvY9T8ttYG-T4cllhRyR6zUcxiG4,2009
|
|
477
479
|
angr/exploration_techniques/__init__.py,sha256=5LJEn_hYBNxcMA_gnMFU_fkGp4NBRowQPVWpJTqF0pM,1390
|
|
@@ -509,15 +511,15 @@ angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipY
|
|
|
509
511
|
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
510
512
|
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
511
513
|
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
512
|
-
angr/knowledge_plugins/labels.py,sha256=
|
|
513
|
-
angr/knowledge_plugins/obfuscations.py,sha256=
|
|
514
|
+
angr/knowledge_plugins/labels.py,sha256=Q7BTpBWRfJl3vxtd0vci91EA3KXiIwLNPyO5UQh6QEA,3156
|
|
515
|
+
angr/knowledge_plugins/obfuscations.py,sha256=n7qPreGLXJf2pADtbonv8JToKL_9IQCYfqGmSyV_3Y4,1465
|
|
514
516
|
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
515
517
|
angr/knowledge_plugins/plugin.py,sha256=8tPrsgo1hsZG3ifXs4mWsKkeyB03ubfZdY5YArWw9-Q,766
|
|
516
518
|
angr/knowledge_plugins/structured_code.py,sha256=9IKRF1Pb7E0eBz0uMK36Pk8HL0fmI7JqVaeihu7uiRQ,2167
|
|
517
519
|
angr/knowledge_plugins/types.py,sha256=EjskCalakpsUi4CKvjrP530VsWFBGkM4xmPbGN2ymRQ,2076
|
|
518
520
|
angr/knowledge_plugins/cfg/__init__.py,sha256=oU07YZ4TIsoje8qr6nw_nM2NXizEGKuulD1RDxk4PWI,418
|
|
519
521
|
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=QGXCsdoLiH_vW7LP1EWGLlRVlMSqAM06l6qWq7uxQJU,2651
|
|
520
|
-
angr/knowledge_plugins/cfg/cfg_model.py,sha256=
|
|
522
|
+
angr/knowledge_plugins/cfg/cfg_model.py,sha256=Z5HOM7xh285gF5DGmQGRSWWD9KJyjXVWLvl0i521OkA,41722
|
|
521
523
|
angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWBsLonpNpLA,17183
|
|
522
524
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
523
525
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
@@ -550,9 +552,9 @@ angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuB
|
|
|
550
552
|
angr/knowledge_plugins/variables/variable_manager.py,sha256=Uz4X7l3MGs5oSymVBBAFZBr-eqpi1V0Dxg4b58pEA8M,49996
|
|
551
553
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
552
554
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
553
|
-
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=
|
|
555
|
+
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
554
556
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
555
|
-
angr/lib/angr_native.dylib,sha256=
|
|
557
|
+
angr/lib/angr_native.dylib,sha256=GnLWyYRWlkQTOP4sV30j8yD92o9V90HDcqIDnEYaWc4,16187984
|
|
556
558
|
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
557
559
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
558
560
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
@@ -1359,9 +1361,9 @@ angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
|
1359
1361
|
angr/utils/ssa/__init__.py,sha256=mXPVi7w3tj8e34cFffbDRzR-M4xmCSle85Y-OAjbG3g,9115
|
|
1360
1362
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1361
1363
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1362
|
-
angr-9.2.
|
|
1363
|
-
angr-9.2.
|
|
1364
|
-
angr-9.2.
|
|
1365
|
-
angr-9.2.
|
|
1366
|
-
angr-9.2.
|
|
1367
|
-
angr-9.2.
|
|
1364
|
+
angr-9.2.139.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1365
|
+
angr-9.2.139.dist-info/METADATA,sha256=FUfkrjmR0FinUSECovfiwW23C-4N631blrba-RLAhFU,4762
|
|
1366
|
+
angr-9.2.139.dist-info/WHEEL,sha256=O4J1YDMQNwdjvIQaOWOB89a_c5Kh4FeXXaxSflKgCTQ,105
|
|
1367
|
+
angr-9.2.139.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1368
|
+
angr-9.2.139.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1369
|
+
angr-9.2.139.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|