angr 9.2.120__py3-none-manylinux2014_x86_64.whl → 9.2.122__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/cfg/cfg_fast.py +2 -1
- angr/analyses/cfg/indirect_jump_resolvers/__init__.py +2 -0
- angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py +2 -0
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +10 -6
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py +138 -367
- angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py +148 -0
- angr/analyses/decompiler/callsite_maker.py +11 -1
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +20 -0
- angr/analyses/typehoon/typevars.py +37 -16
- angr/angrdb/db.py +1 -1
- angr/block.py +9 -1
- angr/calling_conventions.py +1 -1
- angr/engines/engine.py +8 -15
- angr/engines/pcode/lifter.py +8 -0
- angr/engines/successors.py +1 -1
- angr/engines/vex/claripy/ccall.py +1 -1
- angr/engines/vex/claripy/datalayer.py +7 -10
- angr/engines/vex/heavy/actions.py +19 -24
- angr/engines/vex/heavy/heavy.py +7 -1
- angr/engines/vex/lifter.py +3 -1
- angr/engines/vex/light/light.py +2 -2
- angr/factory.py +5 -0
- angr/knowledge_plugins/cfg/memory_data.py +1 -0
- angr/lib/angr_native.so +0 -0
- angr/protos/cfg_pb2.py +23 -15
- angr/protos/function_pb2.py +19 -21
- angr/protos/primitives_pb2.py +46 -112
- angr/protos/variables_pb2.py +38 -114
- angr/protos/xrefs_pb2.py +17 -18
- angr/sim_state.py +2 -78
- angr/sim_type.py +53 -18
- angr/state_plugins/solver.py +72 -15
- angr/storage/__init__.py +1 -2
- angr/storage/memory_mixins/__init__.py +5 -160
- angr/storage/memory_mixins/actions_mixin.py +1 -1
- angr/storage/memory_mixins/address_concretization_mixin.py +1 -1
- angr/storage/memory_mixins/bvv_conversion_mixin.py +1 -1
- angr/storage/memory_mixins/clouseau_mixin.py +2 -1
- angr/storage/memory_mixins/conditional_store_mixin.py +1 -1
- angr/storage/memory_mixins/convenient_mappings_mixin.py +1 -1
- angr/storage/memory_mixins/default_filler_mixin.py +1 -1
- angr/storage/memory_mixins/dirty_addrs_mixin.py +2 -1
- angr/storage/memory_mixins/hex_dumper_mixin.py +1 -1
- angr/storage/memory_mixins/javavm_memory_mixin.py +1 -1
- angr/storage/memory_mixins/keyvalue_memory_mixin.py +1 -1
- angr/storage/memory_mixins/label_merger_mixin.py +1 -1
- angr/storage/memory_mixins/memory_mixin.py +163 -0
- angr/storage/memory_mixins/multi_value_merger_mixin.py +1 -1
- angr/storage/memory_mixins/name_resolution_mixin.py +3 -1
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +1 -1
- angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +2 -1
- angr/storage/memory_mixins/paged_memory/pages/__init__.py +1 -1
- angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py +1 -1
- angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py +2 -1
- angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py +1 -1
- angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py +2 -1
- angr/storage/memory_mixins/paged_memory/pages/ultra_page.py +1 -1
- angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py +1 -2
- angr/storage/memory_mixins/regioned_memory/region_category_mixin.py +2 -1
- angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py +1 -1
- angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py +1 -1
- angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py +2 -2
- angr/storage/memory_mixins/simple_interface_mixin.py +2 -1
- angr/storage/memory_mixins/simplification_mixin.py +2 -1
- angr/storage/memory_mixins/size_resolution_mixin.py +1 -1
- angr/storage/memory_mixins/slotted_memory.py +2 -2
- angr/storage/memory_mixins/smart_find_mixin.py +1 -1
- angr/storage/memory_mixins/symbolic_merger_mixin.py +2 -1
- angr/storage/memory_mixins/top_merger_mixin.py +3 -2
- angr/storage/memory_mixins/underconstrained_mixin.py +4 -2
- angr/storage/memory_mixins/unwrapper_mixin.py +2 -1
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/METADATA +7 -7
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/RECORD +78 -76
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/LICENSE +0 -0
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/WHEEL +0 -0
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/entry_points.txt +0 -0
- {angr-9.2.120.dist-info → angr-9.2.122.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
import claripy
|
|
3
3
|
|
|
4
|
-
from . import MemoryMixin
|
|
5
|
-
from .paged_memory.pages.ispo_mixin import ISPOMixin
|
|
4
|
+
from angr.storage.memory_mixins.memory_mixin import MemoryMixin
|
|
5
|
+
from angr.storage.memory_mixins.paged_memory.pages.ispo_mixin import ISPOMixin
|
|
6
6
|
from angr.errors import SimMergeError
|
|
7
7
|
|
|
8
8
|
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
+
|
|
2
3
|
from collections.abc import Iterable
|
|
3
4
|
from typing import Any
|
|
4
5
|
|
|
5
6
|
import claripy
|
|
6
7
|
|
|
7
|
-
from . import MemoryMixin
|
|
8
|
+
from angr.storage.memory_mixins.memory_mixin import MemoryMixin
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
class SymbolicMergerMixin(MemoryMixin):
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
from collections.abc import Iterable, Callable
|
|
4
|
+
from typing import Any
|
|
4
5
|
|
|
5
|
-
from . import MemoryMixin
|
|
6
|
+
from angr.storage.memory_mixins.memory_mixin import MemoryMixin
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
class TopMergerMixin(MemoryMixin):
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
import logging
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import claripy
|
|
6
|
+
|
|
6
7
|
from angr import sim_options as o
|
|
8
|
+
from angr.storage.memory_mixins.memory_mixin import MemoryMixin
|
|
7
9
|
|
|
8
10
|
l = logging.getLogger(__name__)
|
|
9
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.122
|
|
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
|
|
@@ -15,22 +15,22 @@ Description-Content-Type: text/markdown
|
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
Requires-Dist: CppHeaderParser
|
|
17
17
|
Requires-Dist: GitPython
|
|
18
|
-
Requires-Dist: ailment==9.2.
|
|
19
|
-
Requires-Dist: archinfo==9.2.
|
|
18
|
+
Requires-Dist: ailment==9.2.122
|
|
19
|
+
Requires-Dist: archinfo==9.2.122
|
|
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.122
|
|
24
|
+
Requires-Dist: cle==9.2.122
|
|
25
25
|
Requires-Dist: itanium-demangler
|
|
26
26
|
Requires-Dist: mulpyplexer
|
|
27
27
|
Requires-Dist: nampa
|
|
28
28
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
29
|
-
Requires-Dist: protobuf>=
|
|
29
|
+
Requires-Dist: protobuf>=5.28.2
|
|
30
30
|
Requires-Dist: psutil
|
|
31
31
|
Requires-Dist: pycparser>=2.18
|
|
32
32
|
Requires-Dist: pyformlang
|
|
33
|
-
Requires-Dist: pyvex==9.2.
|
|
33
|
+
Requires-Dist: pyvex==9.2.122
|
|
34
34
|
Requires-Dist: rich>=13.1.0
|
|
35
35
|
Requires-Dist: sortedcontainers
|
|
36
36
|
Requires-Dist: sympy
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=FvLCWVY2NPQsA6BMek9XDtGgFw8K_KwQEOhf__rdJpk,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=5fiS9TPt5r1_8g_qSfD2XkETlBdm5MTClBIQKqhm040,10624
|
|
4
4
|
angr/blade.py,sha256=GpbEumxMsb_6qD7TbtfZuW2CMzV7W1iwqYzQWYlXnxM,15394
|
|
5
|
-
angr/block.py,sha256=
|
|
5
|
+
angr/block.py,sha256=O5kFpofRMVlCqdG-6E53UEti7bGtIcqqx6fvyWDPu58,14975
|
|
6
6
|
angr/callable.py,sha256=1rzhXjWlx62jKJaRKHvp12rbsJ75zNa86vXtCt6eFLo,6065
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=pONBmGJn4f-yF-wfaGA2n4m6tHZ276edmGLQUoAGPvY,92724
|
|
8
8
|
angr/code_location.py,sha256=JpxnEa-FbQIloGwrGa4SyZlA6La_DsvHNt4WMh7lMMY,5466
|
|
9
9
|
angr/codenode.py,sha256=z-XdQh20yl_exg5H4Ep62Kw2lb3ce8od_IaEHw2v-D8,3793
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
11
|
-
angr/factory.py,sha256=
|
|
11
|
+
angr/factory.py,sha256=YMieuzZk70g96BcqgUT0vZxemDlQh0WvjzoxZgduZj0,17453
|
|
12
12
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
angr/keyed_region.py,sha256=bi4xQYh3Is4t5LuFykgVDaaPpko0s4kEmDUEsGsJuPM,17992
|
|
14
14
|
angr/knowledge_base.py,sha256=rpQTkiIKpbjkJTaIaPf-L7ylwiGeM95VTGnUsTg9pOs,4538
|
|
@@ -18,9 +18,9 @@ angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
|
18
18
|
angr/sim_manager.py,sha256=mrmtD9CZR3w6BwYhbmRLfObBh3Gtz5goBOy4_rWSqfQ,39406
|
|
19
19
|
angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
20
20
|
angr/sim_procedure.py,sha256=hvd180bGmjB2skK93gVfy_W9fNUtI5pAD3upGqgSUJ8,26221
|
|
21
|
-
angr/sim_state.py,sha256=
|
|
21
|
+
angr/sim_state.py,sha256=XokLIEd7Cxod86BvVuhJEA8wUxYa_cSGn7M9BIMmbNQ,33305
|
|
22
22
|
angr/sim_state_options.py,sha256=OBsH55qwd1FacVL3Uabqjgos-x5BhpdONSnhxkueRwI,12468
|
|
23
|
-
angr/sim_type.py,sha256=
|
|
23
|
+
angr/sim_type.py,sha256=RcIDyMjQ0ochnKDt_Tflbwmw8exyj86R-KimR3tDGGE,132236
|
|
24
24
|
angr/sim_variable.py,sha256=oN0EIj8Y7vpdZgX0Hp8OMix40EvAvFBmNSH2KkgtAPM,16404
|
|
25
25
|
angr/slicer.py,sha256=74ujgNMKcEIHM8lqal69Cbls07yCxpxvi-jUYeScfaU,10668
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
@@ -67,17 +67,18 @@ angr/analyses/cfg/cfg.py,sha256=ZHZFWtP4uD1YxgKy44O_oD_BiSo871Llcd1zpXmFkBE,3177
|
|
|
67
67
|
angr/analyses/cfg/cfg_arch_options.py,sha256=QpC_sonf0eODcIxWtjVrW6E-gFRGvvdataqGEp9DFFI,3142
|
|
68
68
|
angr/analyses/cfg/cfg_base.py,sha256=CIVnGRf8zDUK-lu4Ovm0joPn9pRNjijilSUX585MteA,122866
|
|
69
69
|
angr/analyses/cfg/cfg_emulated.py,sha256=BK80J79mEyg2RlDo-ikuQkW2VePuquY3kkSCA2YwDw4,152255
|
|
70
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
70
|
+
angr/analyses/cfg/cfg_fast.py,sha256=eLStNKXQXT4XWrOZiHcw8lEmIFFh9d-PKUroCNVCB6w,221775
|
|
71
71
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=3ImLNg04hssYTQYm2ZcKXoc5E30LxFrPDA0MQblpn6k,25913
|
|
72
72
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
73
|
-
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=
|
|
73
|
+
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=EXzMcZH1DBZ-jBLJcYThR0fmWAlJmqhesZNBh_2SlCk,691
|
|
74
74
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=CmLzZRztGgq10QwXNyCBGRVViFosg4rG0wUn1_-0xJA,2068
|
|
75
75
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB91fuXmmDPWQg1YkWNz015OiRQfNhE,1777
|
|
76
76
|
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=AIA6YeWlzBAOwhdDolHfxoEWvSsvNPo73KDRIjbHdtY,5202
|
|
77
77
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=xD-iVlOmYljEwubiff5tNPvdEl7aQhzMQWWjA7l2C_s,5277
|
|
78
|
-
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=
|
|
79
|
-
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=
|
|
80
|
-
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=
|
|
78
|
+
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=v555keK0pfM451YzWbIC0pMG1pQu1wCme1moWaMPqGo,1541
|
|
79
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=PjBF1a_tnaj1_vTQJgUd-ALM_oCX9mpBrfQBIOaJ6nk,101797
|
|
80
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=Y2TjzltG0LSiEvDr8QIAAC1-hu2WT_bmVggpXyoH4mQ,10068
|
|
81
|
+
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=G_4ISoq0mt3IRTwnbRGgMfLdrLj4C3151Zp1w_cHt7s,5203
|
|
81
82
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=ppqn5vYGOD8HknweabD7NWgZmoBgjkOC6m9t-XD46T0,992
|
|
82
83
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=H_obTO_i7whzRj74zpIFQoQFgExLzfP-Jahu4sJjLR4,3019
|
|
83
84
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=ddM_NmkLJNiU8fo-gxaA-iyrNX4CLoRYEtgjeuQbj_Q,2921
|
|
@@ -96,7 +97,7 @@ angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfC
|
|
|
96
97
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
97
98
|
angr/analyses/decompiler/block_similarity.py,sha256=ISMoOm-TGJ_1wD2i_4m8IYTletgnP66gReQESJnfvS0,6873
|
|
98
99
|
angr/analyses/decompiler/block_simplifier.py,sha256=_WYyfFW8bJ_-RkrudJIlDdHh9fc6_aHkuwzW9gylY-k,13922
|
|
99
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
100
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=ulPOsw1oVSUXGzfR3NKn1CbmR7EcYNb0WAfm69Z8Rzg,18496
|
|
100
101
|
angr/analyses/decompiler/clinic.py,sha256=lA0CGxxZPc0WfRaMLkZ7zwhzG8plC6yo6fA5Pq8_7Ak,103436
|
|
101
102
|
angr/analyses/decompiler/condition_processor.py,sha256=pNr-BpmO_Rxma5ETbnlQnjwAWQuriiWXJEKGj5MyLQU,50875
|
|
102
103
|
angr/analyses/decompiler/decompilation_cache.py,sha256=ynqveXnf_sULwFmQFr4rVDlRHoniICt8iyhC0Ds0mDU,1163
|
|
@@ -116,7 +117,7 @@ angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8z
|
|
|
116
117
|
angr/analyses/decompiler/sequence_walker.py,sha256=uvaZqT7VsLoK6dHM-Y8JaID9BGuUa2aXgelfTDllYe0,8703
|
|
117
118
|
angr/analyses/decompiler/utils.py,sha256=ldej1mpMKsWYgENa5qG4VTeoCrID-9JudTaaFLTQEco,30456
|
|
118
119
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=pTCBcuro4f8bnK7N6D48Y7Dh-2QwyzgVY33LlUBHcZE,137
|
|
119
|
-
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=
|
|
120
|
+
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=x-rrA_g62cjy30mOcBdIlBCUhnfPPTs9Eut7lWi0JlI,22408
|
|
120
121
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=8UyvC5BfQmYWJ_WPn7Vrt3c6YlEr0PdSzd8sPOvwlds,496
|
|
121
122
|
angr/analyses/decompiler/counters/__init__.py,sha256=IkNt9hIc8UMTxv72r0NNUiXYSLWROWQyxe7Vn0UNiGE,480
|
|
122
123
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
@@ -326,7 +327,7 @@ angr/analyses/typehoon/simple_solver.py,sha256=MYZwt06msIhQnOhyiHpbZ0fABrWAlKRGF
|
|
|
326
327
|
angr/analyses/typehoon/translator.py,sha256=_P_fyR219Tjyen7ccrAesNQgkLMXRtbZyzsW9bi8F3w,9200
|
|
327
328
|
angr/analyses/typehoon/typeconsts.py,sha256=LLXbaYIdU03GgA8xYsW4eguV6qlIoHhSesqWiAVl5xk,7146
|
|
328
329
|
angr/analyses/typehoon/typehoon.py,sha256=YzrzK6iTMCO08l2pk2ov3WAtRZuHB6AYxlFpdtDI5HY,9333
|
|
329
|
-
angr/analyses/typehoon/typevars.py,sha256=
|
|
330
|
+
angr/analyses/typehoon/typevars.py,sha256=F7CBFVplF_xy1gsUkUXnxEhBVeceXb-VvnYwntJ6ivU,16198
|
|
330
331
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
331
332
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
332
333
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
@@ -338,7 +339,7 @@ angr/analyses/variable_recovery/variable_recovery.py,sha256=pBXY1fb3jR2pDpLMtOjL
|
|
|
338
339
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=_WX6Qa6HIFUJkZnMIj_wdE9UZo0otYk-oKNEZCA-OvI,15025
|
|
339
340
|
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=7MG8qzgnCJlYyqhZLSQfjpq0022T4825PrWWrCKspnQ,25516
|
|
340
341
|
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
341
|
-
angr/angrdb/db.py,sha256=
|
|
342
|
+
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
342
343
|
angr/angrdb/models.py,sha256=rd7SD8F5xbXGL2p34Dodc6oeXo6Ld0QWklfJFlodcV4,4785
|
|
343
344
|
angr/angrdb/serializers/__init__.py,sha256=Gu2B79cp2wwXx4l_S5ITc4QcqyK5YnoG-zEG253JUZY,184
|
|
344
345
|
angr/angrdb/serializers/cfg_model.py,sha256=Uxy1VDKAy_50dMXUykpEsl_zp3ko5ETuKNPRAd3Xsek,1314
|
|
@@ -371,11 +372,11 @@ angr/distributed/server.py,sha256=g3STpFQ48AScjXciwCt1sGE-qWAvi3GHwb8tdScL1CE,66
|
|
|
371
372
|
angr/distributed/worker.py,sha256=MZVlxC9ksC6xUG2fy5h08Vv9R8RiG7QBQIomPYdFIJs,6065
|
|
372
373
|
angr/engines/__init__.py,sha256=Db8jQejzXtcwrueJCU2RI6ORYk7EC7wHUvIGqUcEaUs,1552
|
|
373
374
|
angr/engines/concrete.py,sha256=1exns1dkSKaYwLPGJqa5xpNMj_jN8Pvdb9NzC9Vb9SY,7487
|
|
374
|
-
angr/engines/engine.py,sha256=
|
|
375
|
+
angr/engines/engine.py,sha256=EuIArZ-csduGUanSjoBvSkabD1XT83NpjIqetVWBN1I,7955
|
|
375
376
|
angr/engines/failure.py,sha256=rk93d83Lsb7zMY8uhKHmj6Scs0Gd4rv8LnXWpZb90As,1035
|
|
376
377
|
angr/engines/hook.py,sha256=jMPgloeh6rZIx_OtsCec6Ct04xx5xQLez9_XZfiW2TI,2581
|
|
377
378
|
angr/engines/procedure.py,sha256=U-4-PVCS6JyvmvxXqZSKDfpiCT51LeJBkrCwGRlY9YE,2557
|
|
378
|
-
angr/engines/successors.py,sha256=
|
|
379
|
+
angr/engines/successors.py,sha256=msGUwhFmXwlBtbtITYmW7yNwf-Nfi7nZ4UIY8Zc3sbQ,23789
|
|
379
380
|
angr/engines/syscall.py,sha256=HPAygXTIb8e4_j2DBS4LCCaAz9DNyji5mucfoYck_Dc,2162
|
|
380
381
|
angr/engines/unicorn.py,sha256=8ggDUXdEQl1EMiY-Tp4CnyzzMK0zZrkGObLvBwPU9uU,24496
|
|
381
382
|
angr/engines/light/__init__.py,sha256=3arK8vMsnu6TRxa1_sVWBfD7fRDHFL5kBbl9q-ui9Zw,435
|
|
@@ -386,7 +387,7 @@ angr/engines/pcode/behavior.py,sha256=UZHWTPyRnWN28i8I6o6YgnsIa4CaN_yP36fyNu45he
|
|
|
386
387
|
angr/engines/pcode/cc.py,sha256=vPT7FA2tmlPUVA2ptHDNVqhAZEuZZaJYajBEIctXH54,3180
|
|
387
388
|
angr/engines/pcode/emulate.py,sha256=aiAM1z9Q_NHyljy6ffG3t_Pe6SPdKL3ukKwzettCYrA,16739
|
|
388
389
|
angr/engines/pcode/engine.py,sha256=ZCBTxvdmLrYxMYqHaQDIu-WcFl7YN_RHkJ8Z9WlJaWI,10486
|
|
389
|
-
angr/engines/pcode/lifter.py,sha256=
|
|
390
|
+
angr/engines/pcode/lifter.py,sha256=OcKC7FxS1cOCsITWzmdxwTsz5M1q36IDKyDz8EXm53o,51838
|
|
390
391
|
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
391
392
|
angr/engines/soot/engine.py,sha256=23sv3_qn85Dnzi_ttIMyJ9PLL70auVKPZgZsraEhi8M,17059
|
|
392
393
|
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
@@ -433,21 +434,21 @@ angr/engines/soot/values/staticfieldref.py,sha256=HS9ejnc0oZZkmbpr4vuuA7FY2Fq0pk
|
|
|
433
434
|
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
434
435
|
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
435
436
|
angr/engines/vex/__init__.py,sha256=f37iW2xW8aSNP19w8hEj7X10-lRLiWMxTSU1bU5IL8U,525
|
|
436
|
-
angr/engines/vex/lifter.py,sha256=
|
|
437
|
+
angr/engines/vex/lifter.py,sha256=ZW37S1McKXzOkhP8JRfMwYT7iMxv3wOLhbQOdTW6cp8,16995
|
|
437
438
|
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
438
|
-
angr/engines/vex/claripy/ccall.py,sha256=
|
|
439
|
-
angr/engines/vex/claripy/datalayer.py,sha256=
|
|
439
|
+
angr/engines/vex/claripy/ccall.py,sha256=82w7I1OIIFmnarngCOn39iBwmYv3Xp46Xcz1ATqjn80,81765
|
|
440
|
+
angr/engines/vex/claripy/datalayer.py,sha256=62OwjpOPxpXBmxkRLde5RYLfI_oCIfdj23GVYP25VUQ,4973
|
|
440
441
|
angr/engines/vex/claripy/irop.py,sha256=Y1zmrbI3NVbmoOfcuhTyz_b-HE7HnaY-z4rnrCljlTQ,45601
|
|
441
442
|
angr/engines/vex/heavy/__init__.py,sha256=VLvDao7Drp2stJnRfznKM04IFYi7rjfdRWVJ09nl7Ow,376
|
|
442
|
-
angr/engines/vex/heavy/actions.py,sha256=
|
|
443
|
+
angr/engines/vex/heavy/actions.py,sha256=n8LDymfj6qHAd6evzoyZmHkSN8MlVjZHfgREATC-bek,8663
|
|
443
444
|
angr/engines/vex/heavy/concretizers.py,sha256=ADGhnwu4_SscqllBwMHff8C50l_UEekFQJ1SpWuivEY,14668
|
|
444
445
|
angr/engines/vex/heavy/dirty.py,sha256=8DSw6Wz_9gFYpph2tBvvhePhyQcUzaJGLbwhN7WBydU,18622
|
|
445
|
-
angr/engines/vex/heavy/heavy.py,sha256=
|
|
446
|
+
angr/engines/vex/heavy/heavy.py,sha256=cN2k2VraDRcrs0bnaXK6qSwttF3hd4Gkn6-RrbmeoZQ,16059
|
|
446
447
|
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
447
448
|
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
448
449
|
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
449
450
|
angr/engines/vex/light/__init__.py,sha256=U31OCY_B_kjtpewghpiFa7mYNBGNVj6CoeOiKAhUUkE,224
|
|
450
|
-
angr/engines/vex/light/light.py,sha256=
|
|
451
|
+
angr/engines/vex/light/light.py,sha256=ukNWoowy1rbwMxP_DhC6QhUEGqPizbGMmKW__YL-2xo,21735
|
|
451
452
|
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
452
453
|
angr/engines/vex/light/slicing.py,sha256=F2Z49q9_CJhufV1nONtls9U3RGZWSrrCY1OIhPnXl2E,2059
|
|
453
454
|
angr/exploration_techniques/__init__.py,sha256=1q5hRWYDhXCvpJ5vTuASDuuUeyR2DU7XjSQYyrOqm0s,7012
|
|
@@ -495,7 +496,7 @@ angr/knowledge_plugins/cfg/cfg_manager.py,sha256=FteAHC7Kk3t46xzabJOn_mu6XoIuj6V
|
|
|
495
496
|
angr/knowledge_plugins/cfg/cfg_model.py,sha256=19GVNud509NiVuUH_aPmjwvO4hxBSnfNKE53kWO-Jp0,41387
|
|
496
497
|
angr/knowledge_plugins/cfg/cfg_node.py,sha256=zP7TwJpTOvJc6HNzPvBSGlDuTji5GHLKhBzG8pYpfI4,17189
|
|
497
498
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=CogCSY0Do18qD_bsT_0ucb9a7R0_qlal2HUp_YKWTMA,2074
|
|
498
|
-
angr/knowledge_plugins/cfg/memory_data.py,sha256=
|
|
499
|
+
angr/knowledge_plugins/cfg/memory_data.py,sha256=V0q4EBxvZ5xa40u0ZYekS3iRx4M6IDuK4j6-3NEeaRg,5097
|
|
499
500
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
500
501
|
angr/knowledge_plugins/functions/function.py,sha256=dBjRR_MPxWhU6G19S3Wf91iVygZwBh5ik8WzNAfC0ys,67238
|
|
501
502
|
angr/knowledge_plugins/functions/function_manager.py,sha256=I3CIEUjBtw2gjQiHOuS8pzzPaBAymdH6zW5bl8eNtFo,18979
|
|
@@ -527,7 +528,7 @@ angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyC
|
|
|
527
528
|
angr/knowledge_plugins/xrefs/xref.py,sha256=ROo_kAEKwB51whVYcGtTV0QRtYmQZV8nEoEtbQWyC9U,4883
|
|
528
529
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=Yb88z3L8Y26TfGeRHdsGWQlT9f6oWntjEg6s-kcVtUQ,4040
|
|
529
530
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
530
|
-
angr/lib/angr_native.so,sha256=
|
|
531
|
+
angr/lib/angr_native.so,sha256=i0Vw6OFE8xuQkW5z3YXPgUfAeZ1glvoFOEDz0pP8Kn8,24466040
|
|
531
532
|
angr/misc/__init__.py,sha256=ZPHXbrIdsfe_qdmq8CnXuS_bBWOy4MDT2NjwUnPgHZc,355
|
|
532
533
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
533
534
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
@@ -1207,11 +1208,11 @@ angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9p
|
|
|
1207
1208
|
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1208
1209
|
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1209
1210
|
angr/protos/__init__.py,sha256=mUj4JCmRGXaPZ8-PKxDZJj8DAfxYxIDTuzHa4GzbKa8,523
|
|
1210
|
-
angr/protos/cfg_pb2.py,sha256=
|
|
1211
|
-
angr/protos/function_pb2.py,sha256=
|
|
1212
|
-
angr/protos/primitives_pb2.py,sha256=
|
|
1213
|
-
angr/protos/variables_pb2.py,sha256=
|
|
1214
|
-
angr/protos/xrefs_pb2.py,sha256=
|
|
1211
|
+
angr/protos/cfg_pb2.py,sha256=uNSIal3F7nsJnCmZYzyl2h8gw21ltCICIE1tbWX3yXA,2818
|
|
1212
|
+
angr/protos/function_pb2.py,sha256=czwvbA_tX2eVT7Ts-tVS8kEgMli8ySKvMdtyq1Dz7ZM,2199
|
|
1213
|
+
angr/protos/primitives_pb2.py,sha256=N-ZjQz3-eAvQ2GwF8jpDjPNB-3611V6QoDIipaaRkTY,6225
|
|
1214
|
+
angr/protos/variables_pb2.py,sha256=yOX2zc9lLRyfzNIQNcrc5y5DdHToJok6WfemJirYieM,5178
|
|
1215
|
+
angr/protos/xrefs_pb2.py,sha256=i_pOBDhjlPi4j501LI0pKQ4vBfwFaDhzTjLokcwcEFg,1364
|
|
1215
1216
|
angr/simos/__init__.py,sha256=BSzwjc4jylUrLHQW3TZ189gUfUmDTrNU43t76GmUsWE,944
|
|
1216
1217
|
angr/simos/cgc.py,sha256=61VcKQpB5kaYmD3-bpkYZGSESPLN1TkCxRd0IdCqWmw,5591
|
|
1217
1218
|
angr/simos/javavm.py,sha256=9dZD6N19JQj_RV-Egtbj46GwKpQ_bUvMLC3Eo7JBotI,20687
|
|
@@ -1243,7 +1244,7 @@ angr/state_plugins/scratch.py,sha256=AHOSmFyEBo1DnNq_nlf7KH6kTnJM7tVxTFXoAAxWByU
|
|
|
1243
1244
|
angr/state_plugins/sim_action.py,sha256=tjXmetx3sqePb6Nv-DquZt6MKKYT-8qYecU4L4Lb2bE,9678
|
|
1244
1245
|
angr/state_plugins/sim_action_object.py,sha256=QKDQQlgoRUalr0v_cNACZGy36XF1157h1ch6tHHUB9c,8512
|
|
1245
1246
|
angr/state_plugins/sim_event.py,sha256=AgslUn62BGJqLOH7Gcd9C0zB5TabliehRgK3lhjDXdo,2096
|
|
1246
|
-
angr/state_plugins/solver.py,sha256=
|
|
1247
|
+
angr/state_plugins/solver.py,sha256=ymRSP8nXmU95tQDrgcUAnwCFjaYcL6B3nMVX-lvquPA,45229
|
|
1247
1248
|
angr/state_plugins/symbolizer.py,sha256=HSkxh8XaIgF8WLYF2V89oqg7qqh76HMqq7EMRUsT2QM,11010
|
|
1248
1249
|
angr/state_plugins/trace_additions.py,sha256=d1P4a-DdC0c2Fu5_KAhNzfLr1mylAR2wWSOMSwad7os,29717
|
|
1249
1250
|
angr/state_plugins/uc_manager.py,sha256=ryaUdnKRBCNvBsm68sEs2fq0QHCkoklZ9AmjXc0fiMY,2979
|
|
@@ -1256,58 +1257,59 @@ angr/state_plugins/heap/heap_freelist.py,sha256=NZ3Sxfvsg1t-S694gHGQwnVz6dldZIXr
|
|
|
1256
1257
|
angr/state_plugins/heap/heap_libc.py,sha256=HzcyHifKGn_acUQJJAWhH4yD8xedzhNp1VMIyEce5a4,1893
|
|
1257
1258
|
angr/state_plugins/heap/heap_ptmalloc.py,sha256=isriAHefkPwdqdkVWLzTivNYsibvhEXvgNz-ihWZ9Ws,28220
|
|
1258
1259
|
angr/state_plugins/heap/utils.py,sha256=GnVCryZeTWiFvYYq1xTOd59A46wvqMygSRS5z6wUuwM,830
|
|
1259
|
-
angr/storage/__init__.py,sha256=
|
|
1260
|
+
angr/storage/__init__.py,sha256=VxLrsF_UhChqNiwnUAyTa7bstc7yd1uYnHzt54m5qUk,294
|
|
1260
1261
|
angr/storage/file.py,sha256=6gNxcp6b9XOVTa9iNi1JQwYZr3M4K9Xwa6HQKNlFPxU,48092
|
|
1261
1262
|
angr/storage/memory_object.py,sha256=UsH0ear4eTYsKNnlZjkmV4G_1XZTLeQxTQCS61OFvc0,6110
|
|
1262
|
-
angr/storage/memory_mixins/__init__.py,sha256=
|
|
1263
|
+
angr/storage/memory_mixins/__init__.py,sha256=f3zMGSnjtE4QpI8lDvYOv4e82-fHUa4LQh83ubmrnQI,8597
|
|
1263
1264
|
angr/storage/memory_mixins/__init__.pyi,sha256=937j60XMozvVAkjhMS7eORFTRnze8KDbRUo2gWiVt6c,1865
|
|
1264
|
-
angr/storage/memory_mixins/actions_mixin.py,sha256=
|
|
1265
|
-
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=
|
|
1266
|
-
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=
|
|
1267
|
-
angr/storage/memory_mixins/clouseau_mixin.py,sha256=
|
|
1268
|
-
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=
|
|
1269
|
-
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=
|
|
1270
|
-
angr/storage/memory_mixins/default_filler_mixin.py,sha256=
|
|
1271
|
-
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=
|
|
1272
|
-
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=
|
|
1273
|
-
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=
|
|
1274
|
-
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=
|
|
1275
|
-
angr/storage/memory_mixins/label_merger_mixin.py,sha256=
|
|
1276
|
-
angr/storage/memory_mixins/
|
|
1277
|
-
angr/storage/memory_mixins/
|
|
1278
|
-
angr/storage/memory_mixins/
|
|
1279
|
-
angr/storage/memory_mixins/
|
|
1280
|
-
angr/storage/memory_mixins/
|
|
1281
|
-
angr/storage/memory_mixins/
|
|
1282
|
-
angr/storage/memory_mixins/
|
|
1283
|
-
angr/storage/memory_mixins/
|
|
1284
|
-
angr/storage/memory_mixins/
|
|
1285
|
-
angr/storage/memory_mixins/
|
|
1286
|
-
angr/storage/memory_mixins/
|
|
1265
|
+
angr/storage/memory_mixins/actions_mixin.py,sha256=G_-41geJFYHyThaAs8sMC7inIR3YJZka5gmp91TwFiY,3444
|
|
1266
|
+
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=bbQqOPdbGxeUj0BtZnuFlooBeEQMLrGbjNLr9Ly7mfc,16527
|
|
1267
|
+
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=xbuhdd_-9pgQVUYbgi4P9dwaemB_0jpMEnFx03q_KrM,2885
|
|
1268
|
+
angr/storage/memory_mixins/clouseau_mixin.py,sha256=ymMX2omBbw9BApKemVCJ0L2COpHUZ9Tn1KxUHnnJbJ0,5572
|
|
1269
|
+
angr/storage/memory_mixins/conditional_store_mixin.py,sha256=fFsMViLABKwNwj-oVr5BUFuWd4cq_CG6MAxgYiw1yjY,1002
|
|
1270
|
+
angr/storage/memory_mixins/convenient_mappings_mixin.py,sha256=gLmp7bPvXRLGWFEHWuyAHQ1BdI5K9-47JhgdYyX2978,10290
|
|
1271
|
+
angr/storage/memory_mixins/default_filler_mixin.py,sha256=aQo6j8GPNuWqIDzy3TdKLcGNnxY4NMOS0wBKqPb14h8,6005
|
|
1272
|
+
angr/storage/memory_mixins/dirty_addrs_mixin.py,sha256=qAS2QKTimhZMZ-m9QSMi9DgFQeNMmISj7S8VS-3m9hI,391
|
|
1273
|
+
angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBitcIPv-RBpcPhvFk718,3678
|
|
1274
|
+
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=o5dat1GN646v_icb5ToeTFk8_ruywtj_QPfpdVrdDO4,15464
|
|
1275
|
+
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=tqjpvMaGyXeKIPTO669qMhKgFwQac2h53AvpRASi3fM,1195
|
|
1276
|
+
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
1277
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=QvMapRXheztBHKz5gwOFWkQ2hdAIi_mT-8KZvLiUcj4,5505
|
|
1278
|
+
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
1279
|
+
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=xlpK_Dwhxey1_ipyutUzywdUUS2M0YbUXsjEjH93rsQ,3399
|
|
1280
|
+
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=bHWA1jQtewKMLrt_zI1RoPZwoGcbsoTowPNJxIldW3k,2570
|
|
1281
|
+
angr/storage/memory_mixins/simplification_mixin.py,sha256=3sHlxeWeeQWOsS7Wx9RqyQe1X0Hc9uACvnwji1sMDfk,577
|
|
1282
|
+
angr/storage/memory_mixins/size_resolution_mixin.py,sha256=u6lbkFRLPM8ATeeCMrkc5Ib5GhR34941tqd30SoMltI,5725
|
|
1283
|
+
angr/storage/memory_mixins/slotted_memory.py,sha256=2nwhQ3Zd4TILqLYfcrC4TmruOvEMuR8spJcwOsT9OMI,4956
|
|
1284
|
+
angr/storage/memory_mixins/smart_find_mixin.py,sha256=lhfmH8WiEWeTS7iY5LnE5DHizX1dcy--l8zWOLv7w50,5714
|
|
1285
|
+
angr/storage/memory_mixins/symbolic_merger_mixin.py,sha256=3YirCfFTWcdYwmfM0X5yJMiJ2s80a75Ha43WNnhTwnA,501
|
|
1286
|
+
angr/storage/memory_mixins/top_merger_mixin.py,sha256=ZYZ0wHbwrkigzvNX1UatwMQhwwf4tmI4mWlxS0zVYBM,721
|
|
1287
|
+
angr/storage/memory_mixins/underconstrained_mixin.py,sha256=3-BEQtRUvr3lEMrteX5aeZN2rJ8zEOSiFsmgIuqvaY4,2604
|
|
1288
|
+
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=rTSCUeOkckltIxvL9T1qDyFvzcyucI7njgRKmH3KQDI,1103
|
|
1287
1289
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1288
1290
|
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=3U9RFKnZbz8_AIx4YI73zAyEv2ENzvwziGntZhuZ36A,10261
|
|
1289
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1290
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=
|
|
1291
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=POuPVgh0J1VqjpWGC1uuhaDA0_nsQl7aQ-855eD3W2k,28913
|
|
1292
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1291
1293
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Q5SMKgywnkG1p5j5SGK43ZA1EEUPA0UH-ejtVWcyQsQ,1576
|
|
1292
1294
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
1293
|
-
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=
|
|
1295
|
+
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=J_9a9OmfklxLGRrzkuYc3_gTfFnsFru9IQMfYTYNdbA,1744
|
|
1294
1296
|
angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=50fIqhL8Vabj7vO4S99gLUXPeo9uCumEm-FDqCvD38c,12783
|
|
1295
|
-
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=
|
|
1296
|
-
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=
|
|
1297
|
+
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=PZnWHtzOWeekHQ--JgGXPn5AGDqYS40LvpkwP9I-w7A,3037
|
|
1298
|
+
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=AlNdlCKgwziOOYg5-MF8A40T0678AA0cHUwWVjaevxM,2099
|
|
1297
1299
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=uqxaCFMqo0XlMQGN-iqUYm_IqMTOXOnnp_vCtWL4Yug,14413
|
|
1298
1300
|
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=Dr4BKwfYzul9fpc_nexWONCoXukDev56f6jYcY84ywY,11159
|
|
1299
1301
|
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=C8VSXyiyup1YFZu8ztIXtQD_qXYw4vCWZnJBI2BA-fI,17525
|
|
1300
|
-
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=
|
|
1301
|
-
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=
|
|
1302
|
-
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=
|
|
1302
|
+
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=3cEkvZ62f7ijPmRtAjhm8juDPx5HHT8p4jFOoOQMcnk,878
|
|
1303
|
+
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
1304
|
+
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=2c1yhh6UAodb2YMieR7kvntgleZExJYe3QezCVsP86c,19925
|
|
1303
1305
|
angr/storage/memory_mixins/regioned_memory/__init__.py,sha256=IDqg70J_-ueYoIdZAEa6DAsXEC1Sy7VKuT-eC8lgi-8,577
|
|
1304
1306
|
angr/storage/memory_mixins/regioned_memory/abstract_address_descriptor.py,sha256=PdP8m73xLYNpuH2Ql_FQ48PTyN5CYVgRZzmuXtHHIWE,1065
|
|
1305
|
-
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=
|
|
1306
|
-
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=
|
|
1307
|
+
angr/storage/memory_mixins/regioned_memory/abstract_merger_mixin.py,sha256=5Vvgi3aiqxidClEfOoa1qTyHcMuyv3tnrKaPdeoXjCE,857
|
|
1308
|
+
angr/storage/memory_mixins/regioned_memory/region_category_mixin.py,sha256=wcvhmzDyuPqmHYFkawr-no6J8d9t1Rhlz1Iu27ae3-E,201
|
|
1307
1309
|
angr/storage/memory_mixins/regioned_memory/region_data.py,sha256=4dvk4OVqudKV6DcIh7Z0O3J7HUSvMNhn53Ghi7g6Nf8,9177
|
|
1308
|
-
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=
|
|
1309
|
-
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=
|
|
1310
|
-
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=
|
|
1310
|
+
angr/storage/memory_mixins/regioned_memory/region_meta_mixin.py,sha256=K3T3IVRnMKSJLwBBtzaP3cQDn8m-4v2cUwyoG9TfFN8,7752
|
|
1311
|
+
angr/storage/memory_mixins/regioned_memory/regioned_address_concretization_mixin.py,sha256=Sa_UmOMho3_6P4WG_c989zfU8ucO4oNgnfLAnKEOuU4,4946
|
|
1312
|
+
angr/storage/memory_mixins/regioned_memory/regioned_memory_mixin.py,sha256=cWuacL3uwasqWYR3eQmDCYa7zzR9AlOVEFItUONPS9g,17823
|
|
1311
1313
|
angr/storage/memory_mixins/regioned_memory/static_find_mixin.py,sha256=4EA6PvEYAbLuhQ7wdgX7Ix0-y1uqvdxosdUzAk53h3g,2162
|
|
1312
1314
|
angr/utils/__init__.py,sha256=knkVHIwNqvlu-QgvPorAscSpyPWogzfZwP5OnYmLbmk,1159
|
|
1313
1315
|
angr/utils/ail.py,sha256=8_FloZ6cP89D2Nfc_2wCPcuVv7ny-aP-OKS3syCSMLk,1054
|
|
@@ -1332,9 +1334,9 @@ angr/utils/timing.py,sha256=ELuRPzdRSHzOATgtAzTFByMlVr021ypMrsvtpopreLg,1481
|
|
|
1332
1334
|
angr/utils/ssa/__init__.py,sha256=Z7yXY0xe4X-T4bfdK0YtL9ZFnYF-JhQuJ16ZW-wpSZI,7886
|
|
1333
1335
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1334
1336
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1335
|
-
angr-9.2.
|
|
1336
|
-
angr-9.2.
|
|
1337
|
-
angr-9.2.
|
|
1338
|
-
angr-9.2.
|
|
1339
|
-
angr-9.2.
|
|
1340
|
-
angr-9.2.
|
|
1337
|
+
angr-9.2.122.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1338
|
+
angr-9.2.122.dist-info/METADATA,sha256=AeFCGEvR4GLUoN8v-Rlbr4iPBA-V0BYSyaEHtJAQaGc,4711
|
|
1339
|
+
angr-9.2.122.dist-info/WHEEL,sha256=KCwKXpGGtPAep0bin_k7BN5gmRojqgBlmmZ8K9WRvPo,108
|
|
1340
|
+
angr-9.2.122.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1341
|
+
angr-9.2.122.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1342
|
+
angr-9.2.122.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|