Skip to content

Commit a40ac64

Browse files
authored
Merge pull request #1247 from Abyss-W4tcher/archs_spec_unification
[core, constants] : add OS and framework supported architectures
2 parents 3f5fce3 + 7a479d6 commit a40ac64

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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"""

0 commit comments

Comments
 (0)