13  Lab: BLE Attacks and Defense

bluetooth-ble
bt
security
defense
In 60 Seconds

BLE security requires defense-in-depth: link-layer encryption via pairing is necessary but not sufficient. Production deployments need application-layer authorization, secure firmware updates, rate limiting against brute-force attacks, and physical security considerations covering the entire device lifecycle from manufacturing to decommissioning.

Key Concepts
  • BLE Security Lab Tools: nRF Sniffer (passive capture), btlejack (active BLE MITM/sniff), Wireshark BLE dissector, nRF Connect (GATT inspection), crackle (legacy BLE key recovery)
  • MITM Attack on Just Works: Passive attacker captures BLE 4.x Just Works pairing exchange; crackle tool recovers TK (always 0 for Just Works) and derives LTK from STK offline
  • BLE Fuzzing: Sending malformed ATT/GATT PDUs (invalid handle ranges, out-of-bounds characteristic values) to test server input validation; public research tools and vendor test harnesses are useful references
  • BLE Stack Vulnerabilities: Published BLE implementation bugs have caused crashes, lockups, and code execution in vendor SDKs, so firmware patching and input validation remain part of the security plan
  • Passive Reconnaissance: BLE advertisement sniffing with ubertooth-btle or nRF Sniffer to enumerate nearby devices, their services (via extended advertising or connection), and RSSI for location estimation
  • Defense-in-Depth for BLE: Layered security approach: LE Secure Connections pairing + encrypted transport + application-layer authentication + firmware signing + OTA update monitoring
  • BLE Penetration Testing Methodology: Enumerate (advertising sniff) → Identify (service discovery) → Probe (characteristic fuzzing) → Exploit (known CVEs) → Persist (firmware modification)
  • Security Hardening Checklist: Disable Just Works for sensitive devices; enforce minimum security mode; validate all characteristic writes server-side; sign firmware images; use RPA for privacy

13.1 Minimum Viable Understanding

BLE security must be implemented in layers (defense-in-depth): link-layer encryption via authenticated pairing is necessary but not sufficient. Production deployments need application-layer authorization for sensitive commands, secure firmware updates (secure boot), rate limiting against brute-force attacks, and physical security considerations. Attacks can occur at every lifecycle stage – from manufacturing supply chain to device decommissioning – so security planning must cover the entire device lifetime.

13.2 Learning Objectives

By the end of this chapter, you will be able to:

  • Implement BLE Security in Code: Build and test secure vs insecure BLE configurations on ESP32, comparing encrypted vs plaintext data transmission
  • Design Defense-in-Depth Architectures: Construct multi-layer security schemes for BLE IoT deployments covering link, application, and firmware layers
  • Analyze Attack Vectors: Diagnose vulnerability windows throughout the device lifecycle, from manufacturing supply chain to decommissioning
  • Evaluate Pairing Method Trade-offs: Assess the security guarantees of Just Works, Passkey Entry, Numeric Comparison, and OOB against realistic threat models
  • Configure Rate Limiting Defenses: Apply brute-force lockout logic and calculate the time-to-crack improvement achieved by rate limiting
Chapter Roadmap

Use this lab as a security review in four passes:

  1. First build the secure/insecure ESP32 comparison so pairing, encryption, and the visible device state are testable.
  2. Then capture the radio evidence: which payloads become plaintext, which packets stay opaque, and which metadata still leaks.
  3. Next add online-abuse controls such as the 3-failure, 60-second lockout and check the math instead of trusting the label.
  4. Finally widen the defense boundary to firmware signing, bonded-key storage, ATT permissions, application authorization, and recovery.

The checkpoints below mark each pass so the lab record shows what changed before another layer is added.

These labs give you hands-on experience with Bluetooth security – scanning for nearby devices, analyzing pairing processes, and understanding how to defend against common attacks. Think of it as learning home security by actually testing locks and alarm systems, so you understand both how they work and how they can be strengthened.

Use each lab as a security review checklist, not just a code exercise:

  • Compare secure and insecure BLE modes so the pairing, encryption, and user-verification differences are visible.
  • Capture only your own lab device traffic, then confirm what an eavesdropper can and cannot read.
  • Add application-layer authorization for sensitive commands, even after a device is paired.
  • Rate-limit repeated authentication failures so PINs and short secrets cannot be guessed quickly.
  • Protect firmware, stored keys, debug ports, and decommissioning flows because wireless security fails if the device can be reflashed or cloned.

13.3 Prerequisites

Before diving into this chapter, you should be familiar with:

13.4 Interactive Lab: BLE Security Demonstration

13.4.1 Lab Objective

Explore how different BLE security modes affect data transmission and device pairing. This hands-on lab demonstrates:

  • Secure pairing with PIN verification
  • Encrypted vs unencrypted data transmission
  • MAC address randomization (privacy feature)
  • Security flags in BLE advertising

13.4.2 What You’ll Build

An ESP32 BLE security demonstration that shows:

  1. Secure mode: Requires pairing with PIN, encrypts all data
  2. Insecure mode: Accepts any connection, transmits data in plaintext
  3. Security indicators: Visual feedback showing security state

13.4.3 Hardware Requirements

For Wokwi Simulator:

  • ESP32 DevKit v1
  • LED (Red = Insecure, Green = Secure)
  • Push button (toggle security modes)
  • No physical hardware needed!

For Real Hardware:

  • ESP32 DevKit v1
  • 2x LEDs (Red + Green)
  • 2x 220 Ohm resistors
  • Push button
  • Breadboard + jumper wires

13.4.4 Circuit Diagram

Circuit wiring diagram for ESP32 BLE security demo: ESP32 DevKit connected to green LED on GPIO 4 (secure mode), red LED on GPIO 2 (insecure mode), and push button on GPIO 5 for toggling modes
Figure 13.1: ESP32 BLE Security Lab Circuit Wiring

13.4.5 Lab Code: BLE Security Demo

Open the simulator directly: Wokwi ESP32 starter project.

Use the starter project as a safe place to build the demo. Keep the implementation focused on these checkpoints:

  • Security callbacks: return a demo passkey, display it in the serial console, confirm pairing requests, and log whether authentication succeeds or fails.
  • Secure mode configuration: require LE Secure Connections with MITM protection and bonding, use a 128-bit key size, and set the device I/O capability to match the passkey workflow.
  • Insecure mode configuration: deliberately allow a no-MITM or unauthenticated path only for comparison. Label this mode clearly so it is never mistaken for production code.
  • Notification loop: publish the same sample temperature value in both modes, then compare what a sniffer can read from encrypted and plaintext connections.
  • State indicators: use the LEDs and serial log to show whether the device is waiting for pairing, paired securely, or running in the insecure test mode.
Radio RemiCheckpoint: Lab Boundary

You now know:

  • The lab device has two intentionally different modes: secure mode asks for PIN 123456, while insecure mode accepts a connection without that pairing step.
  • The ESP32 setup is not just a demo circuit; the red/green LEDs, serial log, and phone connection flow are evidence that the mode changed.
  • The same sample temperature notification appears in both paths, which gives the packet-capture challenge a fair before/after comparison.

With the lab boundary explicit, the next question is what an observer can see from outside the device.

13.4.6 Lab Challenges

Try these experiments to understand BLE security:

13.4.6.1 Challenge 1: Compare Security Modes

Task: Connect to the device in both secure and insecure modes using nRF Connect app.

Run it: The connection you are about to compare is a walk through the BLE link-layer states, so trace it first in the state-machine workbench below. Step the peripheral from Standby into Advertising, then bring a central through Scanning and Initiating until the Connection state forms – the same path nRF Connect drives when it scans for and connects to the device. Note that both secure and insecure modes traverse these link states; the difference is the pairing and encryption step layered on top once the connection exists, which is what makes the secure connection slower.

Steps:

  1. Upload code in secure mode (default)
  2. Open nRF Connect app on phone
  3. Scan for “SecureIoTDevice”
  4. Attempt to connect - Prompted for PIN: 123456
  5. After entering PIN, observe encrypted connection
  6. Press button to restart in insecure mode
  7. Connect again - No PIN required
  8. Compare connection process

Question: Which mode connected faster? Why?

Answer

Insecure mode is faster because it skips authentication. However, this speed comes at a security cost:

Secure mode (slow but safe):

  • Connection includes a pairing/authentication step
  • Requires a user interaction step (PIN in this demo)
  • Uses link-layer encryption after pairing (AES-CCM 128-bit)
  • MITM protection depends on the pairing method

Insecure mode (fast but dangerous):

  • Connection is typically faster (no pairing step)
  • No verification needed
  • Data sent in plaintext
  • Vulnerable to eavesdropping

Real-world trade-off: For public sensor data, plaintext might be acceptable. For control actions or sensitive data, prefer authenticated pairing and add application-layer authorization.

13.4.6.2 Challenge 2: Intercept Plaintext Data

Task: Use Wireshark or nRF Sniffer to capture BLE packets and view unencrypted data.

Requirements:

  • A BLE sniffer (e.g., nRF52840 dongle running nRF Sniffer)
  • Wireshark (with the appropriate BLE capture integration)
  • nRF Sniffer firmware/tools

Steps:

  1. Start BLE packet capture with nRF Sniffer
  2. Connect phone to ESP32 in insecure mode
  3. Observe data packets in Wireshark
  4. Find characteristic write/notify packets
  5. View temperature data in plaintext: “Temp: 24.5 C”
  6. Repeat in secure mode
  7. Observe encrypted packets (unreadable hex data)

Question: What information can an attacker learn from plaintext BLE packets?

Answer

Without encryption, an eavesdropper can see the payloads and metadata:

  • Device address/identifiers (tracking risk if privacy features aren’t used)
  • Sensor data in plaintext (e.g., temperature strings)
  • Service/Characteristic UUIDs (can reveal device type/capabilities)
  • Connection patterns (timing, frequency, active periods)
  • Commands sent to the device (replay may be possible)

With encryption (secure mode), an eavesdropper typically only sees:

  • Packet timing/length and protocol metadata
  • Addresses that may be randomized (privacy feature)
  • Nothing about actual data content

Privacy lesson: Metadata leakage is real! Even encrypted, BLE reveals when devices communicate.

Radio RemiCheckpoint: Capture Evidence

You now know:

  • Insecure mode can expose the sample payload, such as Temp: 24.5 C, plus UUIDs, timing, connection patterns, and device identifiers.
  • Secure mode protects the payload with link encryption, but packet timing, packet length, and address behavior can still support tracking analysis.
  • The lab needs both traces in the record: one that proves plaintext risk and one that proves the mitigation changed what Wireshark can decode.

After capture, the attack becomes active: can repeated pairing attempts turn a short PIN into a practical online guessing path?

13.4.6.3 Challenge 3: Implement PIN Brute-Force Protection

Task: Modify the code to lock out attackers after 3 failed pairing attempts.

Requirements:

  • Track failed pairing attempts
  • Lock device for 60 seconds after 3 failures
  • Log all pairing attempts with timestamps
Solution Outline

Implement the lockout as a small state machine:

  • Add failedAttempts and lockoutUntil as persistent state.
  • At the start of the authentication callback, reject new pairing attempts while millis() < lockoutUntil.
  • On successful authentication, reset failedAttempts, clear any warning indicator, and log the accepted peer.
  • On failed authentication, increment failedAttempts and log the timestamp, peer address if available, and failure count.
  • When the failure count reaches 3, set lockoutUntil = millis() + 60000, turn on the warning indicator, and reset the counter for the next lockout window.

Security improvement: This does not make a weak PIN strong, but it changes brute-force guessing from a rapid online attack into a slow, noisy process that operators can detect.

With a 6-digit PIN, an attacker has 1 million possible combinations (\(10^6 = 1,000,000\)). If allowed unlimited attempts:

\[\text{Average attempts to guess} = \frac{1,000,000}{2} = 500,000\]

Worked example: With a 3-attempt lockout and 60-second penalty, an attacker trying one PIN pattern needs: - 3 attempts × 1 second per attempt = 3 seconds - Wait 60 seconds (lockout) - Total: 63 seconds per 3 attempts - Time to exhaust all combinations: \(\frac{1,000,000}{3} \times 63 \text{ seconds} = 21,000,000 \text{ seconds} \approx 243 \text{ days}\)

Compare to unlimited attempts: \(1,000,000 \text{ seconds} = 11.6 \text{ days}\). The lockout increases attack time by 21×.

Radio RemiCheckpoint: Rate-Limit Math

You now know:

  • A 6-digit PIN has 1,000,000 combinations, so the average guess lands after about 500,000 attempts.
  • With 3 tries followed by a 60-second penalty, each cycle costs 63 seconds and full exhaustion is about 21,000,000 seconds, or 243 days.
  • That is a 21x slowdown compared with 1,000,000 seconds, but it is still only an online friction control; sensitive products should avoid weak pairing choices in the first place.

Once the online attack is slowed, protect the firmware and stored secrets that could bypass pairing entirely.

13.4.6.4 Challenge 4: Advanced - Implement Secure Boot

Task: Ensure the ESP32 firmware cannot be tampered with by enabling secure boot.

Why this matters: Even with secure BLE pairing, if an attacker can reflash the ESP32 with malicious firmware (e.g., one that leaks the PIN or disables encryption), all security is lost.

Implementation Guide

Secure Boot prevents:

  • Flashing unauthorized firmware
  • Booting malicious code
  • Firmware tampering

Implementation steps (ESP32-IDF):

  • Generate a secure-boot signing key and store it outside the source repository.
  • Enable secure boot in idf.py menuconfig under the security features menu.
  • Build and flash a fully tested image only after confirming the device can still be recovered during development.
  • On first production boot, the relevant eFuses are burned and future firmware must be signed with the trusted key.

Warning: Secure boot is permanent on production devices. If you lose the signing key, the device may become effectively unupdatable.

Production deployment checklist:

  • Store signing key in hardware security module (HSM)
  • Implement firmware update mechanism with signed images
  • Test thoroughly before burning eFuses
  • Keep multiple backup copies of signing key (encrypted, offline)

13.4.7 Lab Takeaways

After completing this lab, you should understand:

  1. Pairing modes matter more than encryption strength
    • Even strong link encryption won’t help if pairing is unauthenticated (“Just Works”)
    • Prefer authenticated pairing (Numeric Comparison or OOB; Passkey Entry when appropriate)
  2. Security vs. Convenience trade-off
    • Secure mode: Slower connection, better security
    • Insecure mode: Faster connection, vulnerable to attacks
    • Choose based on data sensitivity and threat model
  3. Defense in depth
    • BLE security (pairing + encryption)
    • Application security (authentication/authorization)
    • Physical security (tamper-evident casing)
    • Firmware security (secure boot)
  4. Real-world deployment considerations
    • For safety- or high-value devices: use authenticated pairing and plan for revocation
    • For public sensors (weather, parking): Insecure mode may be acceptable
    • For payment systems: Add NFC/QR out-of-band pairing
  5. Attack surface extends beyond wireless
    • Attacker with physical access can reflash firmware
    • Use secure boot + tamper detection for critical devices
    • Implement rate limiting to prevent brute-force

Experiment with lockout parameters to see how rate limiting defends against brute-force attacks on BLE pairing PINs.

13.5 Defense-in-Depth Security Layers

Secure BLE deployments require protection at multiple layers:

Concentric layer diagram showing BLE defense-in-depth security: physical security, network perimeter, link layer encryption, application authentication, and data protection at the core
Figure 13.2: Defense-in-depth layers for BLE security showing how each layer blocks different attack vectors.

13.6 BLE Attack Timeline Visualization

Understanding when attacks can occur helps prioritize defenses:

Timeline showing BLE attack windows during device lifecycle: manufacturing (supply chain attacks), deployment (pairing attacks), operation (eavesdropping, MITM), and decommissioning (data recovery)
Figure 13.3: Attack timeline showing vulnerability windows throughout the BLE device lifecycle.

13.8 Knowledge Check

13.8.1 Knowledge Check: Defense-in-Depth for BLE

13.8.2 Knowledge Check: BLE Attack Surface

Common Mistake: Ignoring Bonded Key Storage Security

The Scenario: A smart lock manufacturer implements authenticated BLE pairing with Numeric Comparison but stores bonded LTK keys in unencrypted flash memory. After deployment, a security researcher extracts the keys through exposed debug access and demonstrates that cloned clients can reconnect as trusted devices.

What Went Wrong: Secure pairing means nothing if the resulting keys are not securely stored. Many developers focus on the pairing ceremony (Numeric Comparison, OOB) but neglect key storage, assuming the device’s physical security is sufficient.

Vulnerable implementation pattern:

  • Bonding keys are saved to ordinary flash without flash encryption.
  • JTAG or SWD debug access remains enabled in production.
  • The enclosure allows simple access to programming pads.
  • There is no process to revoke bonds after a suspected key leak.

Attack Vector:

  1. Attacker removes smart lock cover (2 screws)
  2. Connects USB debugger (ST-Link, J-Link) to exposed JTAG/SWD pins
  3. Dumps flash memory contents (5 minutes)
  4. Extracts bonded keys from known NVS partition offsets
  5. Creates spoofed central device using extracted keys
  6. Locks now accept attacker’s device as trusted

Secure implementation pattern:

  • Enable flash encryption before production release.
  • Disable debug interfaces or lock them behind an authenticated service process.
  • Store long-lived secrets in protected flash or a secure element when the risk justifies the cost.
  • Add a bond-revocation path so extracted or lost credentials can be invalidated.

Defense Checklist:

Deployment cost lesson: Retrofitting hardware security after release is usually more expensive than designing for protected storage and debug-port lockdown before manufacturing.

Radio RemiCheckpoint: Defense Stack

You now know:

  • BLE link encryption uses AES-CCM with 128-bit keys, but link encryption only protects traffic in transit.
  • Defense-in-depth adds application-layer authorization, signed firmware, flash encryption, protected bonded-key storage, and a revocation path.
  • Physical access matters: the chapter’s bonded-key scenario needs only two screws, a debugger, and about 5 minutes when production debug access is left open.
  • The final lab record should prove both denial paths and allowed paths: unauthenticated writes fail, malformed authorized writes fail, and valid authorized commands still work.

The remaining sections consolidate those layers into a study map, practice checks, and common deployment mistakes.

Concept Relationships
  • Defense-in-depth and security layers: Link encryption protects traffic in transit, but production devices also need application authorization, secure boot, and protected key storage.
  • Attack timeline and lifecycle security: Vulnerabilities can appear during manufacturing, pairing, normal operation, firmware update, resale, and decommissioning.
  • Secure boot and firmware integrity: Signed boot prevents malicious firmware from disabling encryption or leaking bonded keys.
  • LE Secure Connections and key agreement: ECDH-based pairing improves key establishment and prevents passive recovery of past session keys.
  • Key storage protection and bonding security: Flash encryption, secure elements, and debug-port lockdown reduce the risk of LTK extraction.

13.9 See Also

13.10 Practice Activities

13.11 Start With the Story

A security lab should make invisible trust visible. If a setup is vulnerable to weak pairing, passive capture, relay assumptions, or bad recovery, the lab needs to produce evidence before the field deployment does.

Use this chapter as a small defense review. Run the attack or failure pattern, capture the trace, apply the mitigation, and leave a record that says exactly what changed and what still needs retesting.

13.12 Deep Dive: ATT Permissions and Write Validation

A useful BLE security lab starts by inventorying the ATT operations before testing pairing or packet capture. Write down every characteristic, the operations it permits, and the minimum security level expected for each operation. That map often exposes the real defect faster than radio analysis: a command characteristic left writable by any nearby phone.

ATT operation Security question Failure if left open
Read Who may pull the current value? A nearby client can read state, identity, or sensor values.
Write / Write Command Who may change the value? A nearby client can change configuration or actuate hardware.
Notify Who may subscribe through the CCCD? A nearby client can receive a continuing telemetry stream.
Indicate Who may receive acknowledged updates? Reliability improves delivery, but does not add authorization.

A GATT server assigns each attribute a security level for its operations. This permission setting, not the secrecy of the UUID, is what protects the device:

Permission level Who can perform the operation
Open (no security) Any device in radio range, no pairing
Encryption required Only a paired device on an encrypted link using the LTK
Authentication required Only a device paired with MITM protection such as Numeric Comparison or Passkey Entry

The classic vulnerability is a writable command characteristic left at Open. A smart lock whose unlock characteristic accepts a Write Command with no security lets anyone within range enumerate the UUID, send 0x01, and open the door. Changing from Write Command to Write Request only adds an ATT response; changing the UUID only delays discovery. The meaningful test result changes only when the write permission becomes authentication-required and the unauthenticated write fails before the latch callback runs.

Permissions are still only one layer. A bonded, authorized client can send malformed or malicious data through a legitimate Write, so the application must validate every written value. For a lock command, validate the opcode, door identifier, requested open time, nonce, and message authentication value before the latch moves. Reject unexpected lengths, unknown opcodes, replayed nonces, and unsafe durations such as 255 seconds, then log and rate-limit failures. In the lab, prove both sides: one unauthorized write fails at ATT permission checks, and one malformed authorized write fails in the application parser.

13.13 Summary

This chapter provided hands-on experience with BLE security:

  • Interactive Lab: ESP32-based demonstration comparing secure and insecure BLE modes
  • Security Challenges: PIN brute-force protection, packet interception analysis, secure boot implementation
  • Defense-in-Depth: Multi-layer security architecture from physical to data protection
  • Attack Timeline: Vulnerability windows across device lifecycle (manufacturing, deployment, operation, decommissioning)
  • Visual Gallery: Reference diagrams for pairing, encryption, and protocol stack security

Common Pitfalls

BLE security testing that focuses only on pairing and encryption misses vulnerabilities at other layers: unvalidated GATT write values causing buffer overflows, unauthenticated command execution (e.g., factory reset via GATT Write without security), or insecure bootloader allowing unsigned firmware. Test the complete attack surface including: physical access, JTAG/debug interfaces, UART console, GATT command handling, and OTA update integrity.

Using the BLE device MAC address as an authentication factor is insecure — MAC addresses are transmitted in cleartext in advertising packets and can be spoofed in software. An attacker can clone a trusted device’s MAC address to impersonate it. Authentication must use cryptographic methods: LESC pairing, application-layer token exchange, or certificate-based authentication, never MAC address matching.

When a bonded device is lost, stolen, or suspected compromised, the LTK stored in the remaining device’s NVS must be immediately deleted to prevent unauthorized reconnection. IoT devices without a mechanism to remotely revoke bonding keys (via cloud command + BLE or local physical trigger) remain permanently open to the lost device reconnecting with the stolen key. Always implement a key revocation path in production firmware.

An OTA DFU implementation that accepts unsigned firmware images allows an attacker within BLE range to flash arbitrary malicious firmware. All production BLE OTA implementations must verify firmware image signatures (ECDSA or RSA) before applying updates. The public key for signature verification should be stored in a protected flash region that cannot be overwritten by OTA updates themselves.

13.14 What’s Next

Prioritize these follow-up chapters based on the security question you need to answer next:

13.15 Key Takeaway

Security labs should prove both allowed and denied paths. Test pairing, encryption, authorization, key reuse, and failed access attempts so defensive behavior is visible rather than assumed.