angr 9.2.76__py3-none-win_amd64.whl → 9.2.77__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py +7 -1
- angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py +7 -1
- angr/analyses/decompiler/clinic.py +4 -1
- angr/analyses/decompiler/condition_processor.py +4 -0
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +4 -3
- angr/analyses/decompiler/optimization_passes/multi_simplifier.py +1 -1
- angr/analyses/decompiler/structured_codegen/c.py +3 -0
- angr/analyses/propagator/engine_ail.py +1 -1
- angr/analyses/reaching_definitions/engine_ail.py +3 -6
- angr/analyses/reaching_definitions/engine_vex.py +32 -2
- angr/analyses/reaching_definitions/function_handler.py +1 -1
- angr/analyses/reaching_definitions/rd_initializer.py +6 -6
- angr/analyses/reaching_definitions/rd_state.py +9 -11
- angr/analyses/typehoon/typevars.py +19 -29
- angr/analyses/variable_recovery/variable_recovery_fast.py +33 -31
- angr/engines/light/engine.py +1 -1
- angr/keyed_region.py +19 -3
- angr/knowledge_plugins/functions/function.py +8 -0
- angr/knowledge_plugins/key_definitions/live_definitions.py +53 -44
- angr/knowledge_plugins/key_definitions/liveness.py +102 -34
- angr/knowledge_plugins/key_definitions/rd_model.py +4 -4
- angr/knowledge_plugins/propagations/states.py +3 -1
- angr/knowledge_plugins/variables/variable_manager.py +51 -25
- angr/lib/angr_native.dll +0 -0
- angr/misc/bug_report.py +2 -2
- angr/storage/memory_mixins/__init__.py +3 -2
- angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py +63 -0
- angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py +5 -0
- {angr-9.2.76.dist-info → angr-9.2.77.dist-info}/METADATA +6 -6
- {angr-9.2.76.dist-info → angr-9.2.77.dist-info}/RECORD +37 -36
- tests/analyses/decompiler/test_decompiler.py +5 -1
- tests/analyses/test_flirt.py +3 -1
- tests/procedures/libc/test_string.py +2 -1
- {angr-9.2.76.dist-info → angr-9.2.77.dist-info}/LICENSE +0 -0
- {angr-9.2.76.dist-info → angr-9.2.77.dist-info}/WHEEL +0 -0
- {angr-9.2.76.dist-info → angr-9.2.77.dist-info}/top_level.txt +0 -0
|
@@ -275,6 +275,11 @@ class MVListPage(
|
|
|
275
275
|
|
|
276
276
|
def changed_bytes(self, other: "MVListPage", page_addr: int = None):
|
|
277
277
|
candidates: Set[int] = super().changed_bytes(other)
|
|
278
|
+
if candidates is not None:
|
|
279
|
+
# using the result from the history tracking mixin as an approximation
|
|
280
|
+
return candidates
|
|
281
|
+
|
|
282
|
+
# slower path
|
|
278
283
|
if candidates is None:
|
|
279
284
|
candidates: Set[int] = set()
|
|
280
285
|
# resort to the slower solution
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.77
|
|
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
|
|
@@ -17,13 +17,13 @@ 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.77
|
|
21
|
+
Requires-Dist: archinfo ==9.2.77
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone ==5.0.0.post1
|
|
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.77
|
|
26
|
+
Requires-Dist: cle ==9.2.77
|
|
27
27
|
Requires-Dist: dpkt
|
|
28
28
|
Requires-Dist: itanium-demangler
|
|
29
29
|
Requires-Dist: mulpyplexer
|
|
@@ -32,7 +32,7 @@ Requires-Dist: networkx !=2.8.1,>=2.0
|
|
|
32
32
|
Requires-Dist: protobuf >=3.19.0
|
|
33
33
|
Requires-Dist: psutil
|
|
34
34
|
Requires-Dist: pycparser >=2.18
|
|
35
|
-
Requires-Dist: pyvex ==9.2.
|
|
35
|
+
Requires-Dist: pyvex ==9.2.77
|
|
36
36
|
Requires-Dist: rich >=13.1.0
|
|
37
37
|
Requires-Dist: rpyc
|
|
38
38
|
Requires-Dist: sortedcontainers
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=Yy-SzRkYn8Fa--OSAEYMu9KKOvE2SFyX-QtR7VSv72U,3851
|
|
2
2
|
angr/annocfg.py,sha256=dK5JAdN4Ig_jgxTBZeZXwk3kAS4-IQUvE6T02GBZTDQ,10818
|
|
3
3
|
angr/blade.py,sha256=1f5cqw1w6mKtYszN2-5QMxaoP_bbqpIaVlE7Vpf8yjc,15161
|
|
4
4
|
angr/block.py,sha256=RXro1XdUTztfPL2r62m2YA1XTNe7bP0lkBUDYzz_FyE,14371
|
|
@@ -9,7 +9,7 @@ angr/codenode.py,sha256=J_lZNz8akZzBI4ok0KpI1eNGvZbCt_quOAeUplaEB6I,3784
|
|
|
9
9
|
angr/errors.py,sha256=QdVWy5wElJYd4srA2k2vFzHPiE69gkXfksB9B6y6W8Y,8245
|
|
10
10
|
angr/factory.py,sha256=KBSUjT5UEGgwYruZXrm5c01-dAeIfP3-2leB65M8IC8,17427
|
|
11
11
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
angr/keyed_region.py,sha256=
|
|
12
|
+
angr/keyed_region.py,sha256=Edk5vASUdBO2dRqgHDWHkeq9ZvBCwH_zk-l6rXAbls0,18129
|
|
13
13
|
angr/project.py,sha256=0NGusOHe7TP8xOqlUwCXXWhWH9082QSz4y1o9sK--FE,37032
|
|
14
14
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
15
15
|
angr/serializable.py,sha256=6cljvzAqFwsLqFu9ouCno7hMpgstha5-8C7RyWNCRXc,1502
|
|
@@ -70,7 +70,7 @@ angr/analyses/cfg/cfg_job_base.py,sha256=3IQE_Iy17xtGfsIkrKc2ERIakAYiNdLtRb_jwOG
|
|
|
70
70
|
angr/analyses/cfg/segment_list.py,sha256=XM-rcLHkl008U5xu9pkVCenhcHWAFBKwVdDLa-kGFgY,20467
|
|
71
71
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=T2rCpXy_fIoW_kHwZAVZupoj2UljitHvpI2uWJZ8NwU,361
|
|
72
72
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=WuhMX5-yAVMSCBj09eWElQB4YO7raN0Ydsl-n0eST2U,2025
|
|
73
|
-
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256
|
|
73
|
+
angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=mMLQ5cUDjpGXD38Q4IAJW1VvsWSZOoyTR0Vv694zjc4,1777
|
|
74
74
|
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=irrLlp2ynPqbJVVoDOI-UtMiSuqtXvF7x3Ri_1Z-1DY,3272
|
|
75
75
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=BBLGAlVcXKqj4H3_0d4dIqdqJZc8aAqG83hTqMo2syM,5136
|
|
76
76
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=TyRIBvH8St1eHktpRrErD4zp8HKP3ppglfPuCEE0wg0,1441
|
|
@@ -79,7 +79,7 @@ angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=G3y7GYPxtuDQCw
|
|
|
79
79
|
angr/analyses/cfg/indirect_jump_resolvers/propagator_utils.py,sha256=--Xd8ZZTfoB6s6v0KIru-INgX6ilxccGXlECZ-9l5AU,880
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/resolver.py,sha256=2YyKPaXuWVbPwUQZcn0CKuba3ydYGIMT0Vxhy09kcV0,3019
|
|
81
81
|
angr/analyses/cfg/indirect_jump_resolvers/x86_elf_pic_plt.py,sha256=suPJkHzib8JGQpIrB0K5_AC6FgMOUe0iLnLLLhWVCM0,2971
|
|
82
|
-
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=
|
|
82
|
+
angr/analyses/cfg/indirect_jump_resolvers/x86_pe_iat.py,sha256=tGDb2dpgHATY5AlBExtD3mvIEMqqV6fxKOHNTn8uohU,1621
|
|
83
83
|
angr/analyses/cfg_slice_to_sink/__init__.py,sha256=9f1EAg5ZwEgwBZqymEvDErEh5jhD3bHQBiPBH_ONnH4,120
|
|
84
84
|
angr/analyses/cfg_slice_to_sink/cfg_slice_to_sink.py,sha256=Vry1fKUF_DP-YaFxQwha6GzHgAQJk1v9kD4WxwkLXNw,3982
|
|
85
85
|
angr/analyses/cfg_slice_to_sink/graph.py,sha256=-xHCkXBJtD74uYA27On59NZfBgPw-fXYGQtT6rfbB7Y,3560
|
|
@@ -94,8 +94,8 @@ angr/analyses/decompiler/ailgraph_walker.py,sha256=sBz9Cn0GtdpuFt7R9y3oX6NFvETQT
|
|
|
94
94
|
angr/analyses/decompiler/block_simplifier.py,sha256=zHHJU2ssQScZNd7_Ccxla6xe3hT_5K7iuYeA3aNyxCA,16476
|
|
95
95
|
angr/analyses/decompiler/call_counter.py,sha256=V3TIaSvLUy9vLEWErnvlCS--_ubGWQAeU0tqq6XYeOU,1205
|
|
96
96
|
angr/analyses/decompiler/callsite_maker.py,sha256=B2lajS20_cTDWvUc-Py-2rP6UybNLd-qAjkuDJMIlX8,14938
|
|
97
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
98
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
97
|
+
angr/analyses/decompiler/clinic.py,sha256=5l8QbXdI3UPah0uhiyZrwQCR4hNraMqvXm3YPhJjJQA,72021
|
|
98
|
+
angr/analyses/decompiler/condition_processor.py,sha256=ts7-dM1ckqDRh28Vv3YhKhNYUHdsavJah4Ta3_tb-uo,48658
|
|
99
99
|
angr/analyses/decompiler/decompilation_cache.py,sha256=NveTVs6IY3TTdgsLvTb3ktftM4n0NrAJIkqjXqQ3550,1119
|
|
100
100
|
angr/analyses/decompiler/decompilation_options.py,sha256=EtLBv9XG3chXmceT3irru3K7jJhguv8JilWYCHdTWyQ,7668
|
|
101
101
|
angr/analyses/decompiler/decompiler.py,sha256=pzVD1mzbdlfwKF0kIPI7B1Whlo1h8QNvx3GIxmC1PoA,19955
|
|
@@ -123,10 +123,10 @@ angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=Q920CTvgxX4ue
|
|
|
123
123
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=vlPhWDyvuEmbGcd1ka8rS68F72Ty6Hw3J00KM3tWCus,4701
|
|
124
124
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=DjkPSAI9Z_X6YXW3Emzc1s3CzIvh45HDhBihh63UuIw,3448
|
|
125
125
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=-6znFCAXS7Z3cn5CTqr3mg4r1G_jJgDFJHk2PzMVwtE,7756
|
|
126
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=
|
|
126
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=rZauCx835hRDr8OQBb45oSLqnikiEIcrkEA0bY4qpzE,6689
|
|
127
127
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=MQNtGU8paXdhTcfvYvBeTplX-htqs0WI6o-72me8fmg,34328
|
|
128
128
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=A9pPly7otXJlLkSbItU0wvjGGu6rUsNpcFw3bzy4DjY,3046
|
|
129
|
-
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=
|
|
129
|
+
angr/analyses/decompiler/optimization_passes/multi_simplifier.py,sha256=Ez7ye4j2VUfELxRPkNQQIY-gF9Q9SkTZxH5jt301Rx8,10968
|
|
130
130
|
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=ESHMebQSc08DcvFjN3i5vird_t-L2Jb6qHeIxGADlDs,7747
|
|
131
131
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=2_-nVKkvClCDykVDd29CRIT1ZCPdYBlSi96h9yrSOw4,7398
|
|
132
132
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=_sTaGMQMFa5ATQIvNyL05UK8gCi_SaOckrZKyHZ2vfs,6470
|
|
@@ -190,7 +190,7 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
|
190
190
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=HGIiC6c3C91VfcqxUHe9aTsRohwmMXOHZH_G_dbwwx4,3327
|
|
191
191
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=Glc4jBCr7lZckltN9XZdSvMrGHf0swXFyKTr_QQKdWE,290
|
|
192
192
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=nJPOoeJCbewchYdXjSE4S2b1-WN6pT3TxmCQMDO0azw,3845
|
|
193
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
193
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=q0HM-IesR-S9SJ6eAXeMzT0Kaa8ejZ7kvbjQ-cDsMLg,128216
|
|
194
194
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=IVfmtcWpTgNCRVsuW3GdQgDnuPmvodX85V0bBYtF_BI,535
|
|
195
195
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=TMz65TkF_ID_Ipocj0aFDb84H6slolN90wq0tzhY2Rk,6773
|
|
196
196
|
angr/analyses/decompiler/structuring/__init__.py,sha256=eSiT6xUpv9K5-enK3OZj2lNzxwowS9_5OTrjHiPgfFs,371
|
|
@@ -239,7 +239,7 @@ angr/analyses/identifier/functions/strncmp.py,sha256=XlqTTLjfPRj7LSw3-xHoH4SJyNi
|
|
|
239
239
|
angr/analyses/identifier/functions/strncpy.py,sha256=1WUrhXMS5Sd5rfgBJbChZD_BZ_D47Z_H4AZwriyqDO0,2008
|
|
240
240
|
angr/analyses/identifier/functions/strtol.py,sha256=Py_6Y9rR5dfy53LX8w9WktSBaxdyPlbrcLEiV6cWfHs,2426
|
|
241
241
|
angr/analyses/propagator/__init__.py,sha256=5-UKSiAtYocLzmQWXPzxyBnPui_c8P_r617KDwtRnNw,43
|
|
242
|
-
angr/analyses/propagator/engine_ail.py,sha256
|
|
242
|
+
angr/analyses/propagator/engine_ail.py,sha256=nsCyRYXZpph1_jcTIxit7Ymyr6Rk-Yz4hfEr9OVgK3A,61973
|
|
243
243
|
angr/analyses/propagator/engine_base.py,sha256=0j5NzJ9jArF4KeysBeiPoo_RKyCvlgn-i3inSZt1cyc,1735
|
|
244
244
|
angr/analyses/propagator/engine_vex.py,sha256=HPzS5CXLdFHoKM7_nulgqguwZCyv3Iaut2avsi6cvkM,10132
|
|
245
245
|
angr/analyses/propagator/outdated_definition_walker.py,sha256=OJnI9rlyutyy2qHMTqnrnQJCXKcBHvgwHfiqlWDECiY,6890
|
|
@@ -251,13 +251,13 @@ angr/analyses/propagator/vex_vars.py,sha256=O0W7GekEZIVwiNiOdyu-BuxCZmHFZPh_ho7j
|
|
|
251
251
|
angr/analyses/reaching_definitions/__init__.py,sha256=3itfNz4b0XcTDJJbU10gZfSuqUAx0s8poicXhXZUpys,1989
|
|
252
252
|
angr/analyses/reaching_definitions/call_trace.py,sha256=5y8VtU-5-2ISamCkok6zoMahWASO2TBQYl5Q0pgeLGw,2217
|
|
253
253
|
angr/analyses/reaching_definitions/dep_graph.py,sha256=iwhYTySlIPkXOuYvEZzUme947Veq2ogrtD6_1ODqzVQ,14966
|
|
254
|
-
angr/analyses/reaching_definitions/engine_ail.py,sha256=
|
|
255
|
-
angr/analyses/reaching_definitions/engine_vex.py,sha256
|
|
254
|
+
angr/analyses/reaching_definitions/engine_ail.py,sha256=dAI4hIFdg7iFcEQz1UXay4e215jQQy9PagOqXScw2GY,44787
|
|
255
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=CvxXI4pVX7K_IhbWMGL-cNcfS2qEaAF-s4LGopb_yHs,42097
|
|
256
256
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
257
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=TB6yW0TBQnTdAv3SOBcui6dSCBMoviivKx0v8COY12w,26839
|
|
258
258
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=L7LCcE-QvLd_vuc0slWmQ6X73wkYNMkUEDy1cJAV818,2634
|
|
259
|
-
angr/analyses/reaching_definitions/rd_initializer.py,sha256=
|
|
260
|
-
angr/analyses/reaching_definitions/rd_state.py,sha256=
|
|
259
|
+
angr/analyses/reaching_definitions/rd_initializer.py,sha256=w_lERfOKBrTQzsLG8ObQyeyYRlnDwUhlZVZ99SuQWb8,10323
|
|
260
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=iOYzJFpWRKSaO_FmEThJyFXzLn3y9dTvlZB7Feepm2I,23434
|
|
261
261
|
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=CjW3Q7rj_fX-LQ09eACCPohXX44FT13ewWpvJQk-vr4,23163
|
|
262
262
|
angr/analyses/reaching_definitions/subject.py,sha256=GVaI1jM-Nv2MWaCjJ-Q_54nSS3hvAaZthz14AJJNq-A,1995
|
|
263
263
|
angr/analyses/typehoon/__init__.py,sha256=kCQMAuvsUKAdYFiOstBzMBCqpquJKJCQSe0CGAr2Rng,31
|
|
@@ -266,7 +266,7 @@ angr/analyses/typehoon/simple_solver.py,sha256=hq8O0yXO2QPekFvU3R81OcautBhqSEASC
|
|
|
266
266
|
angr/analyses/typehoon/translator.py,sha256=8rJQEoN1jwUSjO6EwtEiQiWHQM4gwNqHsXwB2_VLzsc,8310
|
|
267
267
|
angr/analyses/typehoon/typeconsts.py,sha256=KlwXgGnWnO7noyRGHZjW3E_b81Kwm4dIvJUNPC6cIno,4163
|
|
268
268
|
angr/analyses/typehoon/typehoon.py,sha256=W9wvVe2F4vAJ_EGmxQg74AZsRu18mUf82fRYZ5-fB9M,8382
|
|
269
|
-
angr/analyses/typehoon/typevars.py,sha256=
|
|
269
|
+
angr/analyses/typehoon/typevars.py,sha256=qLNOOo50rAs9E8IXwVB8JCEiC30SskJjQUkDp_Tpp-o,13349
|
|
270
270
|
angr/analyses/variable_recovery/__init__.py,sha256=j2SZyfzCAagqNTj0IcYJtOx4b3oAvhEY9GR3hb0bx4o,105
|
|
271
271
|
angr/analyses/variable_recovery/annotations.py,sha256=eAifcWVmb1xUmEGtpiy8PzIupSuZtmEDEiUav-3_z20,1403
|
|
272
272
|
angr/analyses/variable_recovery/engine_ail.py,sha256=Om4qlh5_g-SQUz_o0ipEfSMBQOoL898XWVciXpgaUCo,23076
|
|
@@ -275,7 +275,7 @@ angr/analyses/variable_recovery/engine_vex.py,sha256=aIoZaMXxapwiFi8YY0yKQNpHV-Y
|
|
|
275
275
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=3lUK_jfJCVEZQ0QvhwsmgCn2RAIj_0FDDn8ftggubjA,4701
|
|
276
276
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=F7dOWJVdV2kE1jjIyqEDgp0bZ03_cReEeHSPKPnhI1s,21802
|
|
277
277
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=dMRqvsLmISDENaSZ1jIwkNWbHo5rOxrPXrnyWjVz0T8,14418
|
|
278
|
-
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=
|
|
278
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=1mP18dJbDcwimv4pwMqDqomIk8VvborhQACs6LquUZQ,23663
|
|
279
279
|
angr/angrdb/__init__.py,sha256=df9W7J7c4rD5oYx6fZGf0BIBwOqVVJlIJTDrAtQChqY,231
|
|
280
280
|
angr/angrdb/db.py,sha256=HZL4tvxNkxwqLKNTGSz0-5n07OvWcXoIqWWtpBy-M9k,6459
|
|
281
281
|
angr/angrdb/models.py,sha256=iFEouZNGa5gJK8U5-vy98CErrgeM5E3CGbSKOXjoMfU,4750
|
|
@@ -319,7 +319,7 @@ angr/engines/syscall.py,sha256=LNMC3zyis3OiWC7_8Zn1blMw1EDib5FjUqepXlaWDTI,2177
|
|
|
319
319
|
angr/engines/unicorn.py,sha256=gf7LjjWyaaujqSuCq3d-BGm8t5sdZjzsJeBevGfdiLw,24447
|
|
320
320
|
angr/engines/light/__init__.py,sha256=j9vH2fU9MaNVQ8NT3Ek3Tj2zkGlVxlKyzia8zVTofYs,186
|
|
321
321
|
angr/engines/light/data.py,sha256=jZBAJxor2zg5m4s63joSrjUs8H-OeHBZiqZmc3dqEQQ,23132
|
|
322
|
-
angr/engines/light/engine.py,sha256=
|
|
322
|
+
angr/engines/light/engine.py,sha256=XB9y81fxGiIFvCnXstQA-BsEWLCHk0oR6a3gobj1Dgo,40265
|
|
323
323
|
angr/engines/pcode/__init__.py,sha256=UwMEwXQvHXIIgedJn2ZOvBBEgfHg2rfREBSpcTSXCZ4,83
|
|
324
324
|
angr/engines/pcode/behavior.py,sha256=Ecmw9uGAnrzjlvW6RPob0j-dpm0OTag8CRzSC5U-0fo,28649
|
|
325
325
|
angr/engines/pcode/cc.py,sha256=LrYXVexTgG3iCvYMRZfHvkT94vO447dVzcvSXdumVHA,2923
|
|
@@ -435,7 +435,7 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=Q_qqQ1LisCzTWROOQAfvyaBjS86zxcMw6I
|
|
|
435
435
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=yzPf1jjUNPgGP7D7IamqX6KF-EJX-heZjDEr4SRUWDA,2145
|
|
436
436
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=FzRUFltXrN0G3OeMZEbb3xc7I-W8AaomtCTSXUQlJ0g,5040
|
|
437
437
|
angr/knowledge_plugins/functions/__init__.py,sha256=6IerJjMKKvM70mcJQhmXJYiipePOQ9ZSTmavTIUgg5Q,77
|
|
438
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
438
|
+
angr/knowledge_plugins/functions/function.py,sha256=jYL0epwue-6S0t-O69DH0iihpMkrq8B1FuBrpYwUyVE,65274
|
|
439
439
|
angr/knowledge_plugins/functions/function_manager.py,sha256=Nbk97zc3GCW6BzpMdZha7e8zhCOH9lD3Avw1XYZV778,17558
|
|
440
440
|
angr/knowledge_plugins/functions/function_parser.py,sha256=cb_AD5oFqoyXapDBawnJV1D9XVRMBGa9GwwDudNSc3M,11916
|
|
441
441
|
angr/knowledge_plugins/functions/soot_function.py,sha256=2zwz_tdKbEnF8eUkOEmpNr7AUeooun2-SiIoY_xIdMw,4971
|
|
@@ -446,9 +446,9 @@ angr/knowledge_plugins/key_definitions/definition.py,sha256=Mwn2R5AAAi85L2y61Ext
|
|
|
446
446
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=cbNst29pGtv13Z6jlvdBIajYkE3X9MnAV5ixRTHkHzQ,3461
|
|
447
447
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=62vX5xkT91qO-6IKtGtGNUqgkfFUU1_Al6B9vU-SA7E,922
|
|
448
448
|
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=PETOIDYYj7VPp2rtIO5XhXnvi3lgDr9qXa4pZrwbCho,3235
|
|
449
|
-
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=
|
|
450
|
-
angr/knowledge_plugins/key_definitions/liveness.py,sha256=
|
|
451
|
-
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=
|
|
449
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=JpaaUAkwQIVC20pONF8ZCIEITvHkMrJVtqJf90z5a6I,39556
|
|
450
|
+
angr/knowledge_plugins/key_definitions/liveness.py,sha256=6LrvBdxkF-HB93PeEyLfILUuay1YlG6ss7U69OyNf7I,7140
|
|
451
|
+
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=qx3myk20WmSthpYvcwUbLTAaADNk7-12vfrnDKr_peg,7314
|
|
452
452
|
angr/knowledge_plugins/key_definitions/tag.py,sha256=uBHlS71E3Ok_6V3K8NkMblctCrnAHmPYikaFTA02PyA,1682
|
|
453
453
|
angr/knowledge_plugins/key_definitions/undefined.py,sha256=dv1fo4jR48tuslsbPZ40YZhqePfVxBohH9LtFKP8qhk,1236
|
|
454
454
|
angr/knowledge_plugins/key_definitions/unknown_size.py,sha256=YwA1DWBE9796BTU8KdY6xIR88IXc2KDUAZuxHEqO710,1510
|
|
@@ -457,23 +457,23 @@ angr/knowledge_plugins/propagations/__init__.py,sha256=YOHJ2PMz-egzFMA2H0eKa5FDM
|
|
|
457
457
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=COX-itMQN8ob5ZLdG199ZhIHj9yYgnudhr4skrYaeGY,7527
|
|
458
458
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=5DohQ6GiLmRfA4whx7dsKImBLCajQnLBwKieddf55J0,2112
|
|
459
459
|
angr/knowledge_plugins/propagations/propagation_model.py,sha256=dcO9dLaEeGl5F3tv-TzEBkdRewh3Iykuo6Bhht_NNHo,2607
|
|
460
|
-
angr/knowledge_plugins/propagations/states.py,sha256=
|
|
460
|
+
angr/knowledge_plugins/propagations/states.py,sha256=xF69UXBSKqdpWHt7iw5Q_x_Of7TaXDBv1w5XS1U6BeM,35896
|
|
461
461
|
angr/knowledge_plugins/structured_code/__init__.py,sha256=9edAAAVroOR8nNBThuRjOnjVUIqavnObO7mlUttxInA,43
|
|
462
462
|
angr/knowledge_plugins/structured_code/manager.py,sha256=ov4BUMuYANS8Lz2QhmXgAo5wpGlWU9AmcTQcgYbD0HE,2126
|
|
463
463
|
angr/knowledge_plugins/sync/__init__.py,sha256=RN3y0UhYax-GdPyAhondMXEBuWIu-enHjxjpdTKhQ58,44
|
|
464
464
|
angr/knowledge_plugins/sync/sync_controller.py,sha256=TipNeYSek6VZCU87SDgBDBTZUBI9iAebGpYE1lJ9YTg,9315
|
|
465
465
|
angr/knowledge_plugins/variables/__init__.py,sha256=tmh_2i0X6Y41TkEgxHRQ4y-kVEGZnlDIpJZ_wUkCISI,60
|
|
466
466
|
angr/knowledge_plugins/variables/variable_access.py,sha256=CtstTsBph7RCGoWTFsiaPLDMuXjKQAoQ8lgwVMESisA,3751
|
|
467
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
467
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=7dnwgSsR0V-09cdtBroAEbvyskowdE78g4hwNl_mu3Q,43555
|
|
468
468
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=-5A2h048WTRu6Et7q7bqlc-AyBXNuJ9AF9nE9zc3M4I,94
|
|
469
469
|
angr/knowledge_plugins/xrefs/xref.py,sha256=w4wjDFl4xtJYOtJplp9s1AIX3wI1RE71po3ufh1M4aY,4963
|
|
470
470
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=GYF9N1t4JxkDNGAwrVLo4_NF51P4gqiuQ21F0IbloF0,4026
|
|
471
471
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=VR3xLQQ-gUg25oX0OL3BJHyQRlZh2A8syBac9ZMS9n4,271
|
|
472
|
-
angr/lib/angr_native.dll,sha256=
|
|
472
|
+
angr/lib/angr_native.dll,sha256=LwLNPTu-0iyDu3TSs2N64mNTYMKrvJr2JaRvODVeFa8,19209728
|
|
473
473
|
angr/misc/__init__.py,sha256=Ct-Q6-c-Frdz5Ihkqmou3j_1jyJi8WJXlQxs-gPQg0Y,237
|
|
474
474
|
angr/misc/ansi.py,sha256=TKrx7d_MViChHh5RBR2VLufNrujTUioJWsZS5ugk8k4,807
|
|
475
475
|
angr/misc/autoimport.py,sha256=6WT-Z6wf5NiacQhKZmR4d2bPOvNrokA7Wg0g2MUXSuw,2371
|
|
476
|
-
angr/misc/bug_report.py,sha256=
|
|
476
|
+
angr/misc/bug_report.py,sha256=JJ0IkN9-VAjqJjdfNaSNlV5GqRyu-B9gus3WA1WnLbQ,4241
|
|
477
477
|
angr/misc/hookset.py,sha256=TzhmQYf7BP6fHKXYu_1tHalrHAmP4IVmVkh_Hlp8fS8,4486
|
|
478
478
|
angr/misc/import_hooks.py,sha256=SpcB3ML_1HTO3JeGVsAD6GFEpxy2C4EMpLzH9zSq8Xo,1943
|
|
479
479
|
angr/misc/loggers.py,sha256=m3BZ0WFL14qmYZiGgGKKJ31tLnO5x2BV4UmqD2606wc,4225
|
|
@@ -1128,7 +1128,7 @@ angr/storage/__init__.py,sha256=X3JnQg95SqAqahP1x10Kk5E0OXxyNlV2Xk3NKyXzykA,182
|
|
|
1128
1128
|
angr/storage/file.py,sha256=S55K2p9s1IHtmbpR5iUF3V5HorSgBiiHWnFdtSmjZfU,48219
|
|
1129
1129
|
angr/storage/memory_object.py,sha256=U0T-XB7CxUqISODY6o2WONjiThHyzFKBjZ8D0pWLPj4,5663
|
|
1130
1130
|
angr/storage/pcap.py,sha256=8n30ui0KO7qx_RgmGFL_cBYMF5AlQ5LzVFeCh9ODU6c,1940
|
|
1131
|
-
angr/storage/memory_mixins/__init__.py,sha256=
|
|
1131
|
+
angr/storage/memory_mixins/__init__.py,sha256=vblWOZgrDQ1j5_BaSGrS2wseBdp73HO295_WH6Sd-ZU,11881
|
|
1132
1132
|
angr/storage/memory_mixins/actions_mixin.py,sha256=KZSCMjGB_Sbk_rlgGxk4k02Pu3b569c6tG-xPoH31L0,3402
|
|
1133
1133
|
angr/storage/memory_mixins/address_concretization_mixin.py,sha256=6VJ4Gg3NecygagBlNe5jrGgSmCJmfh53nnxwzIwjO0k,16569
|
|
1134
1134
|
angr/storage/memory_mixins/bvv_conversion_mixin.py,sha256=XT2ICXERaSHypiaAFf2jd8V3lh_5mZQvmT55ziipss0,2901
|
|
@@ -1157,6 +1157,7 @@ angr/storage/memory_mixins/keyvalue_memory/keyvalue_memory_mixin.py,sha256=CMji6
|
|
|
1157
1157
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1158
1158
|
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=QJgzPbPFq7-fQALAhoZ1T_KAYYG2uHTedePPZ8_nwqg,10282
|
|
1159
1159
|
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=Q2hzBzhq-ObuufhXNnv_GGTJXhXS_qPj9k0dDH1fDX0,28529
|
|
1160
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=jrOKLLiR48KRsHsarGRx7XZXSoO2OFMT4-l-dQ1Ytuo,2192
|
|
1160
1161
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=Ls_QhPLKudESInlAhUR1GVeacJNTciz9E2DX-LatAZ4,1541
|
|
1161
1162
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=Fg_KtS7GiI6TLfBKoRAOiz4z-M9ZkcvT9UwCkAp9-rY,3283
|
|
1162
1163
|
angr/storage/memory_mixins/paged_memory/pages/__init__.py,sha256=rwGAcESljLORCDteXXJ0cJCFkaqymoxm8kziKLB3DFw,1469
|
|
@@ -1165,7 +1166,7 @@ angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=A
|
|
|
1165
1166
|
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=mHt5nQYXkXifwGT0_UGvKirECEC2v7jNNtf_6oY57uI,2050
|
|
1166
1167
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=ey-c8PLa_iH5gyz6VRcxtK1I9w8JbIrvkFO1Hj9V8L8,14108
|
|
1167
1168
|
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=tznbAA7sPWpebCNW16jm_UiCXEf9JqkGUhRXQPkOKv8,11246
|
|
1168
|
-
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=
|
|
1169
|
+
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=YM29YEUXitJRU1aVV63PPOGV-oiLRrJO7N6rFcPvXOc,15981
|
|
1169
1170
|
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=Ek2YSmFOGUScFXPx8hqroNkl3gK1aqKCMv_X3_pImLs,830
|
|
1170
1171
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=oES5tahTy4SgyDi2h5oRRC0PC4JHNcIvdAC4INKkeJw,1701
|
|
1171
1172
|
angr/storage/memory_mixins/paged_memory/pages/ultra_page.py,sha256=x7j9zV3ZtGaEVvaKOy9pUbZDynbu-sbtL4L1afeQLpU,18961
|
|
@@ -1214,7 +1215,7 @@ tests/analyses/test_ddg_global_var_dependencies.py,sha256=Dv9ObVLuCuf8pkhUK2fL0j
|
|
|
1214
1215
|
tests/analyses/test_ddg_memvar_addresses.py,sha256=anbiZ8s1hgu6XhDxS_zVfb43DtHQLrmNWRhLdMk1zCw,1258
|
|
1215
1216
|
tests/analyses/test_disassembly.py,sha256=tgNxgiqK836gSQKu2raddSHQd8_Trt2TZwVxi-oVirE,4786
|
|
1216
1217
|
tests/analyses/test_find_objects_static.py,sha256=SY5ZTD7-N_976iAL7AqU9mtEIbSDesyEWH9v-gDFfyc,1157
|
|
1217
|
-
tests/analyses/test_flirt.py,sha256=
|
|
1218
|
+
tests/analyses/test_flirt.py,sha256=oe7m7KWWjnLUSO-Osb3rOR3ntiJq4_pYI00HfmjSMgE,2129
|
|
1218
1219
|
tests/analyses/test_identifier.py,sha256=xBx-86WSTxAxRWCa5ZNStGgWi1f2xAOc2dWz5d94T8w,972
|
|
1219
1220
|
tests/analyses/test_init_finder.py,sha256=F3ze2iJ_dfRIwx1m2fUQFF0-c5G4kNYXKB9R4j_H4xA,1310
|
|
1220
1221
|
tests/analyses/test_proximitygraph.py,sha256=Q5YLgciyhqYuHd3LVx6vWI7ItDCrUqgvVxbceWs8Mfg,960
|
|
@@ -1250,7 +1251,7 @@ tests/analyses/cfg_slice_to_sink/test_graph.py,sha256=K77zi-kkcdsazokuk4pCr_qPEx
|
|
|
1250
1251
|
tests/analyses/cfg_slice_to_sink/test_transitions.py,sha256=Jh5g8MPny5NcD4Ubg0cMgR0hNi_SCMA2CE9bmhopodo,698
|
|
1251
1252
|
tests/analyses/decompiler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1252
1253
|
tests/analyses/decompiler/test_baseptr_save_simplifier.py,sha256=K7E87Gksi1rNDhft1w0KuavVwzijRpdUkwLcEriQjlY,3006
|
|
1253
|
-
tests/analyses/decompiler/test_decompiler.py,sha256=
|
|
1254
|
+
tests/analyses/decompiler/test_decompiler.py,sha256=KIgOa_2xm4mc_gLHg24FToPFUcVZiCbuB-kYUJd3Dqo,140753
|
|
1254
1255
|
tests/analyses/decompiler/test_peephole_optimizations.py,sha256=H8amGt72-KwsPamy9h3pgRVhZ-fzhVXkkUzEn_YgO6Y,1648
|
|
1255
1256
|
tests/analyses/decompiler/test_propagator_loops.py,sha256=zOP3vH5ldnutlismSrGH1JfYsTUIn872Jcb8CYanmro,3268
|
|
1256
1257
|
tests/analyses/decompiler/test_structurer.py,sha256=_SX5ps4l9kG0ovssuplgSL9c-0602g0r85RjVHzWp6k,7782
|
|
@@ -1334,7 +1335,7 @@ tests/procedures/libc/test_scanf.py,sha256=IGaEEEo9gwkxK-X0uSCqXkOe6QA8XDomVEJys
|
|
|
1334
1335
|
tests/procedures/libc/test_sprintf.py,sha256=Xj09X8QCnCNoBGcVCuC-WoDNZSCpgkgZPdDuoxnphUU,1401
|
|
1335
1336
|
tests/procedures/libc/test_sscanf.py,sha256=5Xmx2-5dAaS4iCqW_zE0ic8L0acK42JY_AfMxioA82Y,1887
|
|
1336
1337
|
tests/procedures/libc/test_strcasecmp.py,sha256=UrLiE8ioBGgEAE8Jr94TwB0DlXQdWTglRYqpvfXweZM,1065
|
|
1337
|
-
tests/procedures/libc/test_string.py,sha256=
|
|
1338
|
+
tests/procedures/libc/test_string.py,sha256=ZNKjbRSlSKEHMvnTKjioAqV7ygdL9MlpxvHZMtNVV_8,44753
|
|
1338
1339
|
tests/procedures/libc/test_strtol.py,sha256=ACe9Y7fCMkyMI7kOo3xvQyfZ3jw3R7K3Dur7tPF-xnw,2619
|
|
1339
1340
|
tests/procedures/linux_kernel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1340
1341
|
tests/procedures/linux_kernel/test_lseek.py,sha256=auoKwjCxID1NI40OzZycVQrH2p1o4AbtSNUlrri0myw,4845
|
|
@@ -1404,8 +1405,8 @@ tests/storage/test_multivalues.py,sha256=iFneaihDL8OhKcTe5314Y67H2jTCsvW271VY-ER
|
|
|
1404
1405
|
tests/storage/test_permissions.py,sha256=-Gsd1CUO7xZv7NTieiuikm33xfl33MyzIkembL3CuIw,883
|
|
1405
1406
|
tests/storage/test_ptmalloc.py,sha256=WwORhRoN0SYC8R9aJ_RITbVKlB6JQnLyINTWbT4PidU,10592
|
|
1406
1407
|
tests/storage/test_relro_perm.py,sha256=gqNbkYfAYr0wM-oSijS3HYi0-cbtplMDCSWQqRCqEb4,1406
|
|
1407
|
-
angr-9.2.
|
|
1408
|
-
angr-9.2.
|
|
1409
|
-
angr-9.2.
|
|
1410
|
-
angr-9.2.
|
|
1411
|
-
angr-9.2.
|
|
1408
|
+
angr-9.2.77.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1409
|
+
angr-9.2.77.dist-info/METADATA,sha256=X_zeIvGtPbiVU5c5nZam888mohf-s-Qq7HykkvIjuDw,4856
|
|
1410
|
+
angr-9.2.77.dist-info/WHEEL,sha256=daufdGbLJ8QgaD3d1tPsLa1xxR8oqf4qd0_Ms_reCKM,98
|
|
1411
|
+
angr-9.2.77.dist-info/top_level.txt,sha256=EGgw8HjaUI9JWd6w70Tzkn1AcyKTMJTVJ9OpWyaOewk,11
|
|
1412
|
+
angr-9.2.77.dist-info/RECORD,,
|
|
@@ -27,7 +27,7 @@ from angr.analyses.decompiler.structuring.phoenix import MultiStmtExprMode
|
|
|
27
27
|
from angr.misc.testing import is_testing
|
|
28
28
|
from angr.utils.library import convert_cproto_to_py
|
|
29
29
|
|
|
30
|
-
from ...common import bin_location
|
|
30
|
+
from ...common import bin_location, slow_test
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
test_location = os.path.join(bin_location, "tests")
|
|
@@ -393,6 +393,7 @@ class TestDecompiler(unittest.TestCase):
|
|
|
393
393
|
else:
|
|
394
394
|
assert code.count("32") == 2
|
|
395
395
|
|
|
396
|
+
@slow_test
|
|
396
397
|
@for_all_structuring_algos
|
|
397
398
|
def test_decompiling_true_a_x86_64_0(self, decompiler_options=None):
|
|
398
399
|
bin_path = os.path.join(test_location, "x86_64", "true_a")
|
|
@@ -602,6 +603,7 @@ class TestDecompiler(unittest.TestCase):
|
|
|
602
603
|
else:
|
|
603
604
|
assert False, "Did not find statement 'puts(\"Empty title\");'"
|
|
604
605
|
|
|
606
|
+
@slow_test
|
|
605
607
|
@for_all_structuring_algos
|
|
606
608
|
def test_decompiling_libsoap(self, decompiler_options=None):
|
|
607
609
|
bin_path = os.path.join(test_location, "armel", "libsoap.so")
|
|
@@ -1257,6 +1259,7 @@ class TestDecompiler(unittest.TestCase):
|
|
|
1257
1259
|
)
|
|
1258
1260
|
assert "\"For complete documentation, run: info coreutils '%s invocation'\\n\"" in d.codegen.text
|
|
1259
1261
|
|
|
1262
|
+
@slow_test
|
|
1260
1263
|
@for_all_structuring_algos
|
|
1261
1264
|
def test_decompiling_x8664_cvs(self, decompiler_options=None):
|
|
1262
1265
|
bin_path = os.path.join(test_location, "x86_64", "cvs")
|
|
@@ -1662,6 +1665,7 @@ class TestDecompiler(unittest.TestCase):
|
|
|
1662
1665
|
assert "b_ptr += 1;" in d.codegen.text
|
|
1663
1666
|
assert "return c_ptr->c4->c2[argc].b2.a2;" in d.codegen.text
|
|
1664
1667
|
|
|
1668
|
+
@slow_test
|
|
1665
1669
|
@for_all_structuring_algos
|
|
1666
1670
|
def test_call_return_variable_folding(self, decompiler_options=None):
|
|
1667
1671
|
bin_path = os.path.join(test_location, "x86_64", "decompiler", "ls_gcc_O0")
|
tests/analyses/test_flirt.py
CHANGED
|
@@ -7,10 +7,11 @@ import unittest
|
|
|
7
7
|
|
|
8
8
|
import angr
|
|
9
9
|
|
|
10
|
-
from ..common import bin_location
|
|
10
|
+
from ..common import bin_location, slow_test
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class TestFlirt(unittest.TestCase):
|
|
14
|
+
@slow_test
|
|
14
15
|
def test_amd64_elf_static_libc_ubuntu_2004(self):
|
|
15
16
|
binary_path = os.path.join(bin_location, "tests", "x86_64", "elf_with_static_libc_ubuntu_2004_stripped")
|
|
16
17
|
proj = angr.Project(binary_path, auto_load_libs=False, load_debug_info=False)
|
|
@@ -25,6 +26,7 @@ class TestFlirt(unittest.TestCase):
|
|
|
25
26
|
assert cfg.functions[0x436980].is_default_name is False
|
|
26
27
|
assert cfg.functions[0x436980].from_signature == "flirt"
|
|
27
28
|
|
|
29
|
+
@slow_test
|
|
28
30
|
def test_armhf_elf_static_using_armel_libc(self):
|
|
29
31
|
binary_path = os.path.join(bin_location, "tests", "armhf", "amp_challenge_07.gcc")
|
|
30
32
|
proj = angr.Project(binary_path, auto_load_libs=False, load_debug_info=False)
|
|
@@ -10,7 +10,7 @@ from itertools import combinations
|
|
|
10
10
|
import angr
|
|
11
11
|
from angr import SimState, SIM_LIBRARIES
|
|
12
12
|
|
|
13
|
-
from ...common import broken
|
|
13
|
+
from ...common import broken, slow_test
|
|
14
14
|
|
|
15
15
|
log = logging.getLogger("angr.tests.string")
|
|
16
16
|
|
|
@@ -456,6 +456,7 @@ class TestStringSimProcedures(unittest.TestCase):
|
|
|
456
456
|
s.add_constraints(ss2 == 0)
|
|
457
457
|
assert not s.satisfiable()
|
|
458
458
|
|
|
459
|
+
@slow_test
|
|
459
460
|
def test_memcpy(self):
|
|
460
461
|
log.info("concrete src, concrete dst, concrete len")
|
|
461
462
|
log.debug("... full copy")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|