features: add aarch64 arch (#2144)

* features: add aarch64 arch
This commit is contained in:
Willi Ballenthin
2024-06-11 09:36:04 +02:00
committed by GitHub
parent 76a4a5899f
commit 07ae30875c
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@
- render maec/* fields #843 @s-ff
- replace Halo spinner with Rich #2086 @s-ff
- optimize rule matching #2080 @williballenthin
- add aarch64 as a valid architecture #2144 mehunhoff@google.com @williballenthin
### Breaking Changes
+2 -1
View File
@@ -409,9 +409,10 @@ class Bytes(Feature):
# other candidates here: https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#machine-types
ARCH_I386 = "i386"
ARCH_AMD64 = "amd64"
ARCH_AARCH64 = "aarch64"
# dotnet
ARCH_ANY = "any"
VALID_ARCH = (ARCH_I386, ARCH_AMD64, ARCH_ANY)
VALID_ARCH = (ARCH_I386, ARCH_AMD64, ARCH_AARCH64, ARCH_ANY)
class Arch(Feature):