An attacker can exploit this vulnerability to elevate privileges from ring 0 to ring -2, execute arbitrary code in System Management Mode - an environment more privileged than operating system (OS) and completely isolated from it. Running arbitrary code in SMM additionally bypasses SMM-based SPI flash protections against modifications, which can help an attacker to install a firmware backdoor/implant into the BIOS. Such a malicious firmware code in the BIOS could persist across operating system re-installs. Additionally, this vulnerability could potentially be used by threat actors to bypass security mechanisms provided by the UEFI firmware (for example, Secure Boot and some types of memory isolation for hypervisors).
Binarly REsearch Team has discovered a SMM callout vulnerability on a BullSequana Edge server allowing a possible attacker to hijack execution flow of a code running in System Management Mode. Exploiting this issue could lead to escalating privileges to SMM.
An attacker can exploit this vulnerability to elevate privileges from ring 0 to ring -2, execute arbitrary code in System Management Mode - an environment more privileged than operating system (OS) and completely isolated from it. Running arbitrary code in SMM additionally bypasses SMM-based SPI flash protections against modifications, which can help an attacker to install a firmware backdoor/implant into the BIOS. Such a malicious firmware code in the BIOS could persist across operating system re-installs. Additionally, this vulnerability could potentially be used by threat actors to bypass security mechanisms provided by the UEFI firmware (for example, Secure Boot and some types of memory isolation for hypervisors).
The vulnerability exists in the SW SMI handler registered with number 0xFD
and located at offset 0x291C
in the driver:
EFI_STATUS SwSmiHandler(EFI_HANDLE DispatchHandle, const void *Context, void *CommBuffer, UINTN *CommBufferSize)
{
if ( *((_BYTE *)gUnknownProtocol2 + 0x19B2) )
{
*((_QWORD *)gUnknownProtocol2 + 0x334) = 3;
if ( !sub_8000717C((_QWORD *)gUnknownProtocol2 + 0x71) )
{
(*((_QWORD *)gUnknownProtocol2 + 0x50) + 0xC0))(&unk_8000ABD0, sub_800018D8, v9);
...
As we can see, depending on the contents of a protocol pointed by gUnknownProtocol2
a function is invoked pointed by a value extracted from it. This protocol is located and configured during the initialization procedure in the driver.
...
gUnknownProtocol2Guid = {"c965c76a-d71e-4e66-ab06-c6230d528425"};
gEfiBootServices->LocateProtocol(&gUnknownProtocol2Guid, 0, &UnknownProtocol2);
...
Hence, a possible attacker with a R/W access to system memory has an opportunity to find this protocol in the system memory and modify it to hook the function being called in the SW SMI handler to escalate privileges to SMM (ring -2).
To exploit this vulnerability it is enough to:
gUnknownProtocol2
protocol in system memory.*((_QWORD *)gUnknownProtocol2 + 0x50) + 0xC0))()
function pointer in it with the shellcode address.0xFD
via 0xB2
IO port.To fix this vulnerability, it is essential that the usage of protocols from the system memory is minimised only to SMM driver's early initialization routine.
This bug is subject to a 90 day disclosure deadline. After 90 days elapsed or a patch has been made broadly available (whichever is earlier), the bug report will become visible to the public.
Binarly REsearch Team