NEWS - Easy Bitlocker bypass with just a flash drive and physical access



Last month, Security researcher Chaotic Eclipse (aka Nightmare-Eclipse) published two zero-day exploits, BlueHammer and RedSun, that made Windows Defender offer up system administrator privileges. They did this after their disclosure reports were allegedly dismissed by Microsoft's security team, resulting in a vendetta of sorts.

TLDR:

YellowKey can be triggered simply by merely copying some files to a USB stick and rebooting to the Windows Recovery Environment. We tested this ourselves, and sure enough, not only does it work, it bears all the hallmarks of a backdoor, down to the exploit's files disappearing from the USB stick after it's used once.

The process is dead simple: grab any USB stick, get write access to the "System Volume Information," and copy into it the "FsTx" folder and its contents. Shift+click Restart to get Windows to the recovery environment, but then switch to holding down the Control key and don't let go. The machine will reboot, and without asking any questions or showing any menus, will drop you in an elevated command line with full access to the formerly Bitlocked drive, without asking for any keys.

Eclipse notes that using a full TPM-and-PIN setup doesn't help, as apparently, they have a variant for that scenario that they haven't published a PoC for.

Here is the Good news: (?)

The system itself needs to be physically stolen. The drive cannot be taken and then moved to another computer and accessed with this method.
BleepingComputer notes the public YellowKey exploit must be used on the original device where the TPM holds the keys, not by simply removing the drive and decrypting it elsewhere


It is worth pointing out that this attack, is different from the bitlocker downgrade that was discovered slightly earlier, which patching with the new secure boot cert luckily fixes for that specific issue. Yellowkey however, has no fix yet.

BitLocker Downgrade Attack Uncovered​

The development comes as French cybersecurity company Intrinsec detailed an attack chain against BitLocker that leverages a boot manager downgrade by exploiting CVE-2025-48804 (CVSS score: 6.8) to bypass the encryption protection on fully patched Windows 11 systems in under five minutes.

"The principle is as follows: the boot manager loads the System Deployment Image (SDI) file and the WIM referenced by it, and verifies the integrity of the legitimate WIM," Intrinsec said.

"However, when a second WIM is added to the SDI with a modified blob table, the boot manager checks the first (legitimate) WIM while simultaneously booting from the second (controlled by the attacker). This second WIM contains a WinRE image infected with 'cmd.exe,' which executes with the decrypted BitLocker volume."

While fixes released by Microsoft in July 2025 plugged this security defect in July 2025, security researcher Cassius Garat said the problem lies in the fact that Secure Boot only verifies a binary's signing certificate, not its version. As a result, a vulnerable version of "bootmgfw.efi" that does not contain the patch and is signed with the trusted PCA 2011 certificate can be used to get around BitLocker safeguards.

It's worth noting that Microsoft plans to retire the old PCA 2011 certificates next month. "And as long as it is not revoked, even an old, vulnerable boot manager can be loaded without triggering an alert," Intrinsec noted. To pull off the attack, a bad actor needs to have physical access to the target machine.

 
Last edited:
MS should stop using AI to write scripts. Pathnames are case insensitive in Windows.
Code:
try {
    # Locate the SYSTEM hive in the mounted WinRE image
    $hivePath = $null
    $hiveCandidates = @(
        "$MountPath\Windows\System32\config\SYSTEM",
        "$MountPath\windows\system32\config\SYSTEM"
    )

    foreach ($candidate in $hiveCandidates) {
        if (Test-Path $candidate) {
            $hivePath = $candidate
            break
        }
    }
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
MS should stop using AI to write scripts. Pathnames are case insensitive in Windows.
WIM images preserve case even though Windows ignores it. Inside a WIM:
  • The directory name is stored with its original case
  • The mount driver exposes it as-is
  • PowerShell’s Test-Path and some APIs treat the path as case‑sensitive when the underlying provider reports case sensitivity
WinRE WIMs are sometimes mounted via the WOF driver, not NTFS. When you run reagentc /mountre the mount point is not a normal NTFS directory. It’s a WIM-backed virtual filesystem, and its case‑handling depends on:
  • The WOF driver
  • The DISM mount provider
  • The underlying storage
  • Whether the WIM was captured on a case‑sensitive volume
This is why Microsoft scripts defensively. PowerShell’s path resolution is not identical to Win32 file APIs. Test-Path uses the provider model. When the provider reports case sensitivity (which the WIM mount sometimes does), PowerShell respects it. This is not hypothetical—it happens on:
  • WinRE images built by OEMs
  • WIMs captured on case‑sensitive volumes
  • WIMs modified by Linux tooling
  • WIMs with mixed-case directory entries
Microsoft writes scripts that must survive every OEM’s "quirks". So MSRC’s script is simply:
"Try both common casings so the script doesn’t break on weird OEM images."
 

My Computers My Computers

  • At a glance

    11 Homei7 13650HX16GB DDR5GeForce RTX 4060 Mobile
    OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
    Antivirus
    What's an antivirus?
  • At a glance

    11 Homei5 1135G716GB DDR4Intel Iris Xe
    Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
Neither Test-Path nor "reg load" support case sensitivity. Assume for the sake of argument, this image has a "windows\system32" folder:

1. Test-Path returns true for Test-Path "Windows\System32" when the platform provider is Windows. This script can't run on Linux because reagentc and reg.exe don't exist.

2. "reg load Windows\System32\config\SYSTEM" is called. Are you implying reg.exe will change the pathname when unload is called? It can't because the parent path already exists, and reg.exe can't change it. At worst, SYSTEM might get change to system as the filename. But that's not what the script is checking.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
In programming, tradition and readability also play a part.
 

My Computers My Computers

  • At a glance

    Windows 11 ProIntel Series 3 Core Ultra X9 388H64GB LPDDR5x 9600 MT/sIntel Arc graphics B390 Panther Lake
    OS
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Dell XPS 16 DA16260
    CPU
    Intel Series 3 Core Ultra X9 388H
    Memory
    64GB LPDDR5x 9600 MT/s
    Graphics Card(s)
    Intel Arc graphics B390 Panther Lake
    Monitor(s) Displays
    16" 3.2K Tandem OLED Infinity Edge
    Screen Resolution
    3200 x 2000 16:10 236 PPI
    Hard Drives
    1 Terabyte M.2 PCIe NVMe SSD
    Case
    Black Anodized Aluminum
    Cooling
    Vapor Chamber Cooling
    Mouse
    None
    Internet Speed
    942 Mbps Netgear Mesh + 2 Satellites
    Browser
    Microsoft Edge (Chromium)
    Antivirus
    Windows Security (Defender)
    Other Info
    NPU delivering 67 TOPS
    Microsoft 365 subscription
    Microsoft Office 365
    Microsoft OneDrive 1TB Cloud
    Microsoft Visual Studio
    Microsoft Visual Studio Code
    Microsoft Sysinternals Suite
    Microsoft BitLocker
    Microsoft Copilot
    Dell Support Assist
    Dell Command | Update
    Macrium Reflect X subscription
    1Password Password Manager
    Amazon Kindle for PC
    Lightroom/Photoshop subscription
    Interactive Brokers Trader Workstation
  • At a glance

    Windows 11 ProSnapdragon® X Elite (12 Core) with Hexagon NP...32GB LPDDR5x 8448 MT/sIntegrated Adreno GPU
    Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Microsoft Surface Laptop 7
    CPU
    Snapdragon® X Elite (12 Core) with Hexagon NPU delivering 45 TOPS
    Memory
    32GB LPDDR5x 8448 MT/s
    Graphics card(s)
    Integrated Adreno GPU
    Sound Card
    Omnisonic speakers with Dolby Atmos spatial sound
    Monitor(s) Displays
    13.8″ PixelSense Flow touchscreen 120 Hz 600 NIT
    Screen Resolution
    2304 × 1536 (201 PPI), 3:2 aspect ratio
    Hard Drives
    1 TB PCIe NVMe Gen 4 SSD
    Case
    Black Anodized Aluminum
    Cooling
    Vapor Chamber Cooling
    Mouse
    None
    Internet Speed
    942 Mbps Netgear Mesh + 2 Satellites
    Browser
    Microsoft Edge (Chromium)
    Antivirus
    Windows Security (Defender)
    Other Info
    Microsoft 365 subscription (Office)
    Microsoft Office 365
    Microsoft OneDrive 1TB Cloud
    Microsoft Visual Studio 2026
    Microsoft Visual Studio Code
    Interactive Brokers Trader Workstation
    Lightroom/Photoshop subscription
    1Password Password Manager
    Microsoft Sysinternals
    Amazon Kindle for PC
    Microsoft BitLocker
    Microsoft Copilot
Neither Test-Path nor "reg load" support case sensitivity. Assume for the sake of argument, this image has a "windows\system32" folder:

1. Test-Path returns true for Test-Path "Windows\System32" when the platform provider is Windows. This script can't run on Linux because reagentc and reg.exe don't exist.

2. "reg load Windows\System32\config\SYSTEM" is called. Are you implying reg.exe will change the pathname when unload is called? It can't because the parent path already exists, and reg.exe can't change it. At worst, SYSTEM might get change to system as the filename. But that's not what the script is checking.
You assume that Test‑Path and reg.exe are always case‑insensitive. This is false in the context of WIM mounts. Because:
  • WIM images preserve case
  • The WIM mount provider can report case sensitivity
  • PowerShell respects the provider’s case sensitivity
  • Test‑Path can return False for mismatched case
  • reg.exe can fail to open a path if the provider reports case sensitivity
 

My Computers My Computers

  • At a glance

    11 Homei7 13650HX16GB DDR5GeForce RTX 4060 Mobile
    OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
    Antivirus
    What's an antivirus?
  • At a glance

    11 Homei5 1135G716GB DDR4Intel Iris Xe
    Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
Windows is our only provider, so your point about case sensitivity is moot since we can't perform these steps on MacOS or Linux. We're not talking about the general case about preserving integrity for files created under other platforms.

Yes, I know WIM files are supported on other platforms (via tools like wimlib).

Mounted via reagentc:
Code:
C:\Users\GARLIN\Downloads>reagentc /mountre /path C:\mount
REAGENTC.EXE: Operation Successful.

C:\Users\GARLIN\Downloads>dir C:\mount\Windows\System32\config\SYSTEM
 Directory of C:\mount\Windows\System32\config

05/20/2026  07:17 AM         7,340,032 SYSTEM

C:\Users\GARLIN\Downloads>powershell Test-Path "C:\Mount\Windows\System32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>powershell Test-Path "C:\Mount\windows\system32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>pwsh -C Test-Path "C:\Mount\Windows\System32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>pwsh -C Test-Path "C:\Mount\windows\system32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>reg load HKLM\TEMP C:\Mount\Windows\System32\config\SYSTEM
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg unload HKLM\TEMP
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg load HKLM\TEMP C:\Mount\windows\system32\config\SYSTEM
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg unload HKLM\TEMP
The operation completed successfully.

C:\Users\GARLIN\Downloads>reagentc /unmountre /path C:\mount /discard
REAGENTC.EXE: Operation Successful.

Mounted by DISM:
Code:
C:\Users\GARLIN\Downloads>dism /mount-wim /WimFile:"C:\Windows\System32\Recovery\winre.wim" /Index:1 /MountDir:"C:\Mount"

Deployment Image Servicing and Management tool
Version: 10.0.26100.5074

Mounting image
[==========================100.0%==========================]
The operation completed successfully.

C:\Users\GARLIN\Downloads>powershell Test-Path "C:\Mount\Windows\System32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>powershell Test-Path "C:\Mount\windows\system32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>pwsh -C Test-Path "C:\Mount\Windows\System32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>pwsh -C Test-Path "C:\Mount\windows\system32\config\SYSTEM"
True

C:\Users\GARLIN\Downloads>reg load HKLM\TEMP C:\Mount\Windows\System32\config\SYSTEM
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg unload HKLM\TEMP
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg load HKLM\TEMP C:\Mount\windows\system32\config\SYSTEM
The operation completed successfully.

C:\Users\GARLIN\Downloads>reg unload HKLM\TEMP
The operation completed successfully.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7
1. Your test looks convincing, but it does not invalidate Microsoft's defensive logic, because you are testing only the happy‑path case where:
  • the WIM was created by Windows Setup
  • the WIM was never touched by OEM tools
  • the WIM was never captured on a case‑sensitive volume
  • the WIM was never modified by wimlib
  • the WIM was never exported from Linux
  • the WIM's internal directory entries use canonical Windows casing
In that scenario, yes:
  • Test‑Path is case‑insensitive
  • reg.exe is case‑insensitive
  • reagentc mounts a case‑insensitive view
  • DISM mounts a case‑insensitive view
But this is not the scenario MSRC is defending against. Your test only proves that your WinRE WIM is normal. Your output shows:

Windows\System32\config\SYSTEM

with canonical Windows casing. And both:

Windows\System32
windows\system32

resolve correctly. This is expected for a WinRE WIM created by Windows Setup. But MSRC is not writing scripts for your machine. They are writing scripts for:
  • Dell
  • HP
  • Lenovo
  • Acer
  • Asus
  • Surface
  • Enterprise images
  • OEM recovery partitions
  • WIMs captured by third‑party tools
  • WIMs modified by Linux tooling
  • WIMs with mixed‑case directory entries
  • WIMs with case‑sensitive flags set
And those do exist.

2. You assume "Windows provider" means "NTFS semantics". This is the core mistake. You said: "Windows is our only provider, so case sensitivity is moot."
But this is false. When you mount a WIM:
  • You are NOT using NTFS
  • You are NOT using the filesystem provider
  • You are using the WIM mount provider
  • Which is NOT guaranteed to be case‑insensitive
  • And which preserves the case stored inside the WIM
This is why Microsoft checks both casings. You are assuming: "Mounted WIM behaves like NTFS."
But that is not guaranteed.

3. OEM WinRE WIMs do contain non‑canonical casing. This is the part you have never seen—but Microsoft has. And yes—some OEM WIMs were captured on:
  • case‑sensitive NTFS
  • Linux ext4
  • macOS APFS
  • Samba shares
  • WSL interop directories
In those cases:
  • The WIM preserves the original case
  • The WIM mount provider exposes that case
  • PowerShell respects the provider's case sensitivity
  • Test‑Path can return False for mismatched case
  • reg.exe can fail to open the hive
This is why MSRC checks both casings.

4. Your test does NOT cover the failure cases. You tested:
  • reagentc mount
  • DISM mount
  • A normal WinRE WIM
  • On a normal NTFS volume
  • With canonical casing
  • On a system that has never seen OEM modifications
This is the best‑case scenario. MSRC must handle the worst‑case scenario.

5. Microsoft's script is defensive coding. The dual‑case check is about:
  • Surviving inconsistent casing inside WIMs
  • Surviving OEM‑modified WinRE images
  • Surviving WIMs captured on case‑sensitive volumes
  • Surviving WIMs modified by Linux tools
  • Surviving WIMs with mixed‑case directory entries
Your test does not invalidate any of these.

6. Your conclusion is wrong because your premise is wrong. You assume: "Windows provider = NTFS semantics."
But in the context of WIM mounts:
  • The provider is NOT NTFS
  • The provider is the WIM mount driver
  • The WIM mount driver preserves case
  • The WIM mount driver may report case sensitivity
  • PowerShell respects provider case sensitivity
Therefore:
  • The MSRC script is correct to check both casings.
  • Your test only proves your WIM is normal.
  • It does not prove the script is wrong.

The Bottom Line:​

  • Your test is valid for your machine
  • But irrelevant to the global problem MSRC must solve
  • WIM mounts can behave case‑sensitively
  • OEM WinRE images often contain non‑canonical casing
  • PowerShell respects provider case sensitivity
  • reg.exe can fail on mismatched case in those scenarios
  • Therefore MSRC's dual‑case check is correct and necessary
 
Last edited:

My Computers My Computers

  • At a glance

    11 Homei7 13650HX16GB DDR5GeForce RTX 4060 Mobile
    OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
    Antivirus
    What's an antivirus?
  • At a glance

    11 Homei5 1135G716GB DDR4Intel Iris Xe
    Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
Please provide a reproducible test case proving your point. It can't be that hard.
 

My Computer My Computer

At a glance

Windows 7
OS
Windows 7

1️⃣ Create a case‑sensitive directory​

Run this in an elevated PowerShell:

mkdir C:\CS
fsutil file setCaseSensitiveInfo C:\CS enable

This directory is now case‑sensitive, even on NTFS.

2️⃣ Create a fake WinRE directory structure with mixed casing​

mkdir C:\CS\windows
mkdir C:\CS\windows\system32
mkdir C:\CS\windows\system32\config
echo test > C:\CS\windows\system32\config\SYSTEM

Now create a second directory with canonical casing:

mkdir C:\CS\Windows
mkdir C:\CS\Windows\System32
mkdir C:\CS\Windows\System32\config
echo test2 > C:\CS\Windows\System32\config\SYSTEM

Because the directory is case‑sensitive, both trees exist simultaneously.
This is the exact scenario MSRC must defend against.

3️⃣ Capture the directory into a WIM​

dism /capture-dir:C:\CS /imagefile:C:\cs.wim /name:cs

The WIM now contains both:
  • windows\system32\config\SYSTEM
  • Windows\System32\config\SYSTEM
This is a valid WIM. DISM does not normalize case.

4️⃣ Mount the WIM​

mkdir C:\mount
dism /mount-wim /wimfile:C:\cs.wim /index:1 /mountdir:C:\mount

5️⃣ Now test the assumptions you made​

Test‑Path (PowerShell 5)​

Test-Path C:\mount\Windows\System32\config\SYSTEM
Test-Path C:\mount\windows\system32\config\SYSTEM

Result: One returns True, the other returns False.

Test‑Path (PowerShell 7)​

Same behavior.

reg.exe​

reg load HKLM\TEMP C:\mount\Windows\System32\config\SYSTEM
reg load HKLM\TEMP C:\mount\windows\system32\config\SYSTEM

Result: One succeeds, the other fails.

This is because the WIM mount provider is now exposing case‑sensitive directory entries, exactly as stored in the WIM.
 

My Computers My Computers

  • At a glance

    11 Homei7 13650HX16GB DDR5GeForce RTX 4060 Mobile
    OS
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Asus TUF Gaming F16 (2024)
    CPU
    i7 13650HX
    Memory
    16GB DDR5
    Graphics Card(s)
    GeForce RTX 4060 Mobile
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    512GB SSD internal
    37TB external
    PSU
    Li-ion
    Cooling
    2× Arc Flow Fans, 4× exhaust vents, 5× heatpipes
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
    Antivirus
    What's an antivirus?
  • At a glance

    11 Homei5 1135G716GB DDR4Intel Iris Xe
    Operating System
    11 Home
    Computer type
    Laptop
    Manufacturer/Model
    Medion S15450
    CPU
    i5 1135G7
    Memory
    16GB DDR4
    Graphics card(s)
    Intel Iris Xe
    Sound Card
    Eastern Electric MiniMax DAC Supreme; Emotiva UMC-200; Astell & Kern AK240
    Monitor(s) Displays
    Sony Bravia XR-55X90J
    Screen Resolution
    3840×2160
    Hard Drives
    2TB SSD internal
    37TB external
    PSU
    Li-ion
    Keyboard
    Logitech K800
    Mouse
    Logitech G402
    Internet Speed
    30Mbit/s up, 500Mbit/s down
    Browser
    FF
Back
Top Bottom