Earlier quoted context omitted.
> this is so disingenuous as to be offensive. > I'm not saying you're wrong, but the practical options for replacing a UEFI BIOS are vanishingly small. what? you can download a GUI editor, click remove on the modules you don't want and then save it https://www.trishtech.com/2017/12/uefitool-view-and-edit-uef... I've done it
Cool tool, didn’t know it existed but there are so many variations on UEFI bios’s that I can’t help but feel it will not universally work, and it depends a lot on things being compartmentalised. I also draw your attention to: > UEFITool is only meant for the advanced users who have all the knowledge needed to modify the UEFI BIOS files. Because of you make any mistake and flash the faulty file to your motherboard, it…
Twitter Client for UEFI
61–70 of 108 posts
Re: Twitter Client for UEFI
#62Earlier quoted context omitted.
> if you're so inclined: you can remove unneeded modules from your UEFI firmware this is so disingenuous as to be offensive. I'm not saying you're wrong, but the practical options for replacing a UEFI BIOS are vanishingly small. Also: booting over the network is a feature of a smaller ROM on a network card, that ROM usually had a much smaller surface area and had to be explicitly called as a boot option. Given the pe…
> this is so disingenuous as to be offensive. > I'm not saying you're wrong, but the practical options for replacing a UEFI BIOS are vanishingly small. what? you can download a GUI editor, click remove on the modules you don't want and then save it https://www.trishtech.com/2017/12/uefitool-view-and-edit-uef... I've done it
Re: Twitter Client for UEFI
#63This sounds like a perfect command and control setup for malware.
Re: Twitter Client for UEFI
#64Has anyone implemented audio output on a modern x64 machine under UEFI, e.g. using the typical Realtek on-board audio? If so, I'd like to get a GUI with a screen reader working under UEFI sometime, both for the challenge of getting into bare-metal programming, and because as far as I know, nobody has made a PC boot process and firmware setup UI (what we used to call BIOS setup) accessible to blind people.
This way, a screenreader could hook into the UI toolkit and provide a good interface.
Re: Twitter Client for UEFI
#65Earlier quoted context omitted.
As demonstrated by MoonBounce: https://securelist.com/moonbounce-the-dark-side-of-uefi-firm...
> Due to its emplacement on SPI flash which is located on the motherboard instead of the hard disk, the implant is capable of persisting in the system across disk formatting or replacement Lovely, so you’d have to reflash the firmware to fix it.
Re: Twitter Client for UEFI
#66Earlier quoted context omitted.
what's the difference between having the code running in ring0 in a ROM vs the code running in ring0 from UEFI?
There's a huge difference. The network card does not need unrestricted access to the entire system.
Also, now there's much less code in option rom, leading to much more coherent system. Yes, it is easier to attack, but so is any system where you can expect a standard ABI&API vs. one where you need to randomly poke things.
Re: Twitter Client for UEFI
#67Earlier quoted context omitted.
> The UEFI is persistently running at the background, has communication pipes with the OS this isn't true, it ceases running once it transfers execution you're thinking of the SMM, which is something else entirely
SMM is also part of the firmware, it is set up by UEFI.
SMM being a requirement is a side effect of x86 history and platform design, not UEFI (which doesn't actually require SMM).
Re: Twitter Client for UEFI
#68Earlier quoted context omitted.
what's the difference between having the code running in ring0 in a ROM vs the code running in ring0 from UEFI?
When a boot ROM fires (it was via INT19 IIRC), the boot ROM runs, terminates and leaves the system. The size is smaller, it's not persistent, and it can't communicate with anything on the OS. When booted from the ROM, it just downloads pxelinux.0 binary in most cases, and transfers control to it, and just vanishes. The UEFI is persistently running at the background, has communication pipes with the OS (some of it is…
Re: Twitter Client for UEFI
#69Earlier quoted context omitted.
customers want to be able to boot their machines off the network this would be difficult without a network stack if you're so inclined: you can remove unneeded modules from your UEFI firmware
> if you're so inclined: you can remove unneeded modules from your UEFI firmware this is so disingenuous as to be offensive. I'm not saying you're wrong, but the practical options for replacing a UEFI BIOS are vanishingly small. Also: booting over the network is a feature of a smaller ROM on a network card, that ROM usually had a much smaller surface area and had to be explicitly called as a boot option. Given the pe…
There's a very good reason why iPXE is so often used for chainloading and why it has support for directly replacing the option rom of the card.
Re: Twitter Client for UEFI
#70Has anyone implemented audio output on a modern x64 machine under UEFI, e.g. using the typical Realtek on-board audio? If so, I'd like to get a GUI with a screen reader working under UEFI sometime, both for the challenge of getting into bare-metal programming, and because as far as I know, nobody has made a PC boot process and firmware setup UI (what we used to call BIOS setup) accessible to blind people.