mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-05 11:20:56 +01:00
fix(lib): fix exec detection fallthrough
If the executable was invalid, and wasn't PE or ELF, it would fall through into the Mach-O case, which was a false positive.
This commit is contained in:
parent
40e8cfe71a
commit
828339feaa
1 changed files with 13 additions and 11 deletions
|
@ -77,16 +77,18 @@ return function(binaryContents: buffer): ExecutableDetectionResult?
|
||||||
local is64bit = headerStart == MACHO_MAGIC_64
|
local is64bit = headerStart == MACHO_MAGIC_64
|
||||||
local is32bit = headerStart == MACHO_MAGIC_32
|
local is32bit = headerStart == MACHO_MAGIC_32
|
||||||
|
|
||||||
|
if is64bit or is32bit then
|
||||||
return {
|
return {
|
||||||
os = "macos",
|
os = "macos",
|
||||||
--stylua: ignore
|
arch = (if is64bit and cpuType == MACHO_CPU_TYPES.x86
|
||||||
arch = (
|
then "x86_64"
|
||||||
if is64bit and cpuType == MACHO_CPU_TYPES.x86 then "x86_64"
|
|
||||||
elseif is64bit and cpuType == MACHO_CPU_TYPES.arm then "aarch64"
|
elseif is64bit and cpuType == MACHO_CPU_TYPES.arm then "aarch64"
|
||||||
elseif is32bit and cpuType == MACHO_CPU_TYPES.x86 then "x86"
|
elseif is32bit and cpuType == MACHO_CPU_TYPES.x86 then "x86"
|
||||||
elseif is32bit and cpuType == MACHO_CPU_TYPES.arm then "arm"
|
elseif is32bit and cpuType == MACHO_CPU_TYPES.arm then "arm"
|
||||||
else nil
|
else nil),
|
||||||
),
|
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return nil
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue