hacking toshiba laptops - q3k.org · hacking toshiba laptops or how to mess up your firmware...

100
Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Upload: danghuong

Post on 09-May-2018

244 views

Category:

Documents


6 download

TRANSCRIPT

Page 1: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Hacking Toshiba LaptopsOr how to mess up your firmware security

REcon Brussels 2018

Page 2: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

whoisSerge Bazanski

Freelancer in devops & (hardware) security.

Twitter: @q3k

IRC: q3k @ freenode.net

Michał Kowalczyk

Vice-captain @ Dragon Sector

Researcher @ Invisible Things Lab

Reverse engineer, amateur cryptanalyst

Twitter: @dsredford

IRC: Redford @ freenode.net

Page 3: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Toshiba Portégé R100

Intel Pentium M 1 GHz256MB RAM

Page 4: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

But there’s a catch...

Page 5: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Quite the catch, actually.CMOS clear jumper? None to be found.

Yank out the battery? Password still there.

Take a door key and pass it over the pins of things

that look like flash chips hopefully causing a

checksum failure and resetting the password?

Nice try. No luck, though.

Page 6: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

A-ha!

Page 7: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS analysis

Page 8: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

How to get the BIOS code?

Physical memory? Not with a locked-down laptop.

Dump of the flash chip? Ugh.

Unpack some updates? Let’s see.

Page 9: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Unpacking the updates

https://support.toshiba.com/

Page 10: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

7-Zip

Page 11: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

+254 KB of compressed data

Page 12: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

DecompressionUnknown format

Default unpacker is a 16-bit EXE

There’s an alternative one, 32-bit!

Page 13: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Decompression

BuIsFileCompressed

BuGetFileSize

BuDecodeFile

Page 14: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

DecompressionJust ~50 lines of C!

...

BuIsFileCompressed(compressed, &is_compressed);

if (is_compressed) {

BuDecodeFile(compressed, fsize, decompressed);

}

...

Page 15: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

The result

Page 16: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Dumping the BIOS flash

Page 17: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Where to start looking

Page 18: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Chip Safari

RAM Flash Google it

Page 19: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Interfacing to flash chips

In-circuit: test pads or protocol that permits

multi-master access

Out-of-circuit (?): desolder, attach to breakout/clip,

use main communication interface

Page 20: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Custom breakout board

KiCAD (or $whatever, really) PCB design.

Thermal transfer for DIY PCB manufacturing.

Hot air gun to desolder, soldering station to

re-solder.

Page 21: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Tools you’ll need

150eur 50eur

3eur

Page 22: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Hackerspace25eur p/m + BYOB

Page 23: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018
Page 24: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

FPGA board(Spartan 3E)

Flash

Kabelsalat

Page 25: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018
Page 26: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Breakout Board

Setup

FlashFPGADevboard

A/A Mux(~30 wires)PC UART

(2 wires)

Gimme block X

Data word

X * 1024 + 4

Data word

1kB of data

X * 1024

X * 1024 + …

Data word

Page 27: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Breakout Board

Setup issues

FlashFPGADevboard

A/A Mux(~30 wires)PC UART

(2 wires)

Gimme block X

Data word

X * 1024 + 4

Data word

1kB of data

X * 1024

X * 1024 + …

Data wordForgot checksums

Mixed them up.

Page 28: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

But why the FPGA?

Using an FPGA was unnecessary - just needed a bunch of I/O.

Comparatively difficult to develop for. And to debug.

Should’ve gone for a uC with a bunch of I/O or with a multiplexer.

But at least now we know ¯\_(ツ)_/¯ .

Page 29: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018
Page 30: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS code analysis

Page 31: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

How to start?CPU mode?

Entry point?

Memory map?

Page 32: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

CPU start“A hardware reset sets each processor’s registers to

a known state and places the processor in

real-address mode.”

Intel® 64 and IA-32 Architectures

Software Developer’s Manual Volume 3

Page 33: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018
Page 34: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

CPU startWe start at the address:

CS:EIP = CS.Base + EIP = 0xFFFFFFF0

Real Mode ⇒ physical address. A20 enabled.

So, what’s there?

Page 35: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Memory mappingNorthbridge: Intel Odem MCH-M

No info about that region ⇒ let’s check the

southbridge

Page 36: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Memory mappingSouthbridge: Intel ICH4-M

FWH = Firmware Hub = BIOS flash

Out dump has exactly 0x80000 bytes!

Page 37: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Even more mappings...

...

Page 38: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Entry pointFFFFFFF0: jmp far FC00:3FA0

000FFFA0: jmp far FC00:00A2

000FC0A2: cli

000FC0A3: cld

000FC0A4: mov al, 2

000FC0A6: out 92h, al ; Enable A20

...

Page 39: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS RE: InitializationNo stack! (and also no RAM)

16-bit Protected Mode + Unreal Mode

Checksums

RAM initialization

Self-copying into RAM

Page 40: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS RE: Initialization

16-bit Protected Mode → segments!

We have to find and parse GDT

Only then we can analyze the code

Page 41: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS RE: The password check

Page 42: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS RE: The password checkEverything eventually lands up in one function

f(in_buf) → out_buf

After long analysis: all bytes are sent to I/O ports

62h and 66h

Page 43: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

BIOS RE: The password checkFrom the southbridge manual:

Table 6-2. Fixed I/O Ranges Decoded by Intel ICH4

Page 44: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

“Microcontroller”???

Page 45: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC/KBC

CPU

Intel Pentium M

Northbridge

Intel Odem

MCH-M

RAM

GPU

Trident XP4

Southbridge

Intel ICH4-M

HDD Audio

Ethernet

LPC

EC/KBC

Renesas

M306K9FC

LRP

Battery

Keyboard

PSC

Touchpad

BIOS

Page 46: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: DumpHow to obtain the code?

Updates!

Page 47: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: DumpNo updates available

BIOS changelog: nothing about the EC

Maybe a similar laptop model?

Portégé S100!

Page 48: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Updates

Inside: 3 update

blobs

(different versions)

Page 49: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Uses ports 62h & 66h

Sends the 1st part (~2,5KB)

Sends the 2nd part (~100KB)

EC: Update installer

Page 50: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Update blobIt’s decoded inside EC - no code available :(

Let’s try some analysis!

Page 51: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Update blob - analysisHigh entropy ⇒ encryption or compression

No regularities in trigrams ⇒ encryption

Size always divisible by 8 ⇒ encryption

Longest repeated substring is short ⇒ if encryption,

then not ECB

Page 52: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Update blob - analysis

Looks like a dead-end...

Page 53: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Serge, could you please desolder something again…?

Page 54: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC..?

Page 55: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

One last breakout later...

Page 56: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Let’s dump this thing.

Page 57: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Programming Protocol

M16CProgrammer

SCLK

RXD

TXD

Busy

Page 58: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Programming Protocol

Page 59: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Programming ProtocolM16CProgrammer

Flash Page X?

Flash Page X

Page 60: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Not so fast

Page 61: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Programming ProtocolM16CProgrammer

ID Check (K0...K6)

Status?

Status (Unlocked/locked)

Flash Page X?

Flash Page X

Page 62: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Side channel attacks?

Fault injection?

Page 63: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Not so fast.

Page 64: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Software level ‘side’ channels

Hmm.An PIN unlock request does not result in any immediate success/failure transmission, but...

Page 65: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C bootloader bug

Let’s run some quick tests.

Page 66: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C bootloader bug

Page 67: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C bootloader bug

Byte

Res

pons

e tim

e (μ

s)

Page 68: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Well that’s not good.

Page 69: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bugM16CProgrammer

ID Check - 00 FF FF FF FF FF FF

ID Check - 01 FF FF FF FF FF FF

ID Check - 02 FF FF FF FF FF FF

ID Check - .. FF FF FF FF FF FF

ID Check - FE FF FF FF FF FF FF

ID Check - FF FF FF FF FF FF FF

Response time measurement

Average time + 3μs

Page 70: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bugM16CProgrammer

ID Check - 00 FF FF FF FF FF FF

ID Check - 01 FF FF FF FF FF FF

ID Check - 02 FF FF FF FF FF FF

ID Check - .. FF FF FF FF FF FF

ID Check - FE FF FF FF FF FF FF

ID Check - FF FF FF FF FF FF FF

Response time measurement

Average time + 3μs

Ergo, the first byte of the key is 02.

Page 71: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bug

Thus, we can enumerate all bytes of the key one by one,

using the timing difference for each correct byte to

reduce our search to just 0x100*7 checks.

And we get the key.

Page 72: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bug

Page 73: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bug

FPGA(iCE40)

(EC)M16C

Page 74: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: M16C Bootloader bug

PoC || GTFO

https://github.com/q3k/m16c-interface/

(note: doesn’t work for all M16Cs… yet)

Page 75: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: RE

Code

(~700 functions)

R/O data

Crypto

Bootloader

Page 76: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: REMuch simpler code than in the BIOS

No strings

We’re looking for LPC communication and

BIOS-call table

Page 77: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: REFinding the table is easy

~100 different BIOS<->EC calls

We know the numbers of the interesting calls ⇒

let’s analyze the handlers!

Sounds easy…?

Page 78: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: RE of the handlersManual context-switching

No common call convention

Handlers aren’t split into functions

Jumps to the middle of other functions

Page 79: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Password check: BIOSout_buf = call_EC(

func=0x24,

in_buf=MD5(input)[:8] + pwd_type

)

out_buf[0] == 0 ⇒ success

Page 80: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Password check: ECLet’s look at the handler on the EC side...

…6 levels down the call hierarchy:

BMGEU/C p6_4, p6

BSET pd6_4, pd6

JSR.W set_p6_5

JSR.W clear_p6_5

I/O on pins 40 & 41

Page 81: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Password check: ECOh, come on... :(

Page 82: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Password check: ECThis time it’s only an EEPROM :)

EC reads one block, decrypts it and compares with

the received MD5

Page 83: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Challenge/ResponseScrew it, we’re looking for a universal attack

Let’s look at the challenge/response!

Page 84: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Challenge: BIOSout_buf = call_EC(

func=0x1A,

in_buf=rdtsc() + MD5(pc_serial)[:8]

)

challenge = bytes_to_string(out_buf)

Page 85: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Challenge: EC

7 random bytes

RDTSC

Checksum

PC_SERIAL_MD5

ENC

Entropy pool

DEC

CHALL 1 CHALL 2

Page 86: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Response: BIOSout_buf = call_EC(

func=0x1B,

in_buf=string_to_bytes(user_input)

)

out_buf[0] ⇒ success/fail

Page 87: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

7 bytes CHK

DEC

DEC

RESP 1 RESP 2 PC_SERIAL_MD5

Verify

checksum

CHALL 2

ENC

== 0?

Page 88: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: EncryptionENC? DEC?

Page 89: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: EncryptionA custom 64-bit block cipher

ENCKEY A (256B) KEY B (128B)

INPUT (8B)

OUTPUT (8B)

Page 90: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Challenge/ResponseWe just need to rewrite it in Python and ...

Page 91: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

DEMO!

Page 92: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Update systemLet’s decrypt the updates!

Page 93: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

EC: Update systemUh, symmetric signatures?

We can generate our own!

Page 94: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

So, how's it like on their newer laptops?

Page 95: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

If it ain’t broke, don’t fix it!

Page 96: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

(that applies to keys, too)

Page 97: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Impact

Unlocking any (business) laptop.

Permanent rootkit in the EC.

We can attack the host from the EC.

Page 98: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Rootkit in EC?

DMA to the host via LPC (not supported by this particular EC) .

Keylogging & storage.

USB-Rubber-Ducky-like (key/mouse injection).

BIOS exploitation via the internal API.

Page 99: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Official Toshiba statement (from 2017-11-02)Toshiba is working on a temporary BIOS update that can be used to

prevent the security issue that has been raised and expects to release

this update on its website within the next 2 weeks.

Toshiba plans to start the release of a permanent fix for some models

from January, 2018 and will complete the releases of permanent fix for

all applicable models by the end of March 2018.

Page 100: Hacking Toshiba Laptops - q3k.org · Hacking Toshiba Laptops Or how to mess up your firmware security REcon Brussels 2018

Questions?

https://q3k.org/slides-recon-2018.pdf