File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
volatility3/framework/constants Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ from volatility3 .framework .layers import intel
2+
3+ WIN_ARCHS = ["Intel32" , "Intel64" ]
4+ """Windows supported architectures"""
5+ WIN_ARCHS_LAYERS = [intel .Intel ]
6+ """Windows supported architectures layers"""
7+
8+ LINUX_ARCHS = ["Intel32" , "Intel64" ]
9+ """Linux supported architectures"""
10+ LINUX_ARCHS_LAYERS = [intel .Intel ]
11+ """Linux supported architectures layers"""
12+
13+ MAC_ARCHS = ["Intel32" , "Intel64" ]
14+ """Mac supported architectures"""
15+ MAC_ARCHS_LAYERS = [intel .Intel ]
16+ """Mac supported architectures layers"""
17+
18+ FRAMEWORK_ARCHS = ["Intel32" , "Intel64" ]
19+ """Framework supported architectures"""
20+ FRAMEWORK_ARCHS_LAYERS = [intel .Intel ]
21+ """Framework supported architectures layers"""
You can’t perform that action at this time.
0 commit comments