TZ
← All projectsTrezor

Trezor firmware

Firmware monorepo for Trezor One, Model T, and Safe devices.

BitcoinHardware walletsNormal
Repository coverage

2673 commits in the local evidence base

Every captured commit receives deterministic security triage and a separate communication-quality score. Security candidates and broader second-pass signals receive full-patch Ollama analysis.

923security candidates311second-pass queue2662AI analyses
323commits · 30 days
552commits · 60 days
1337commits · 180 days
2644commits · 365 days
Backfill bands
Aug 5 → Feb 61298 seen115 candidatesComplete
Feb 6 → Jun 6775 seen58 candidatesComplete
Jun 6 → Jul 6217 seen13 candidatesComplete
Jul 6 → Aug 5360 seen54 candidatesComplete
Commit communication

Does the history explain itself?

Message quality measures whether a commit identifies its scope, purpose, rationale, testing, and supporting references. It does not change the security-severity score.

66/100 average clarity
482Strong · 80–100
1323Adequate · 60–79
863Thin · 40–59
5Opaque · 0–39
Read the scoring rubric →
Developer activity

Who is changing the project?

Public Git author strings; identities are not independently verified.

DeveloperCommitsCandidatesAnalyzedHigh riskMessage avg.
tychovrahe292104292461
Roman Zeyde579182576272
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík24823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 26 minutes ago

Informational 15 AI analysisMessage 72 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core/ethereum): EIP-7702 tuple nonce must be non-zero

This commit only changes test data and expected screen fingerprints for Trezor's Ethereum EIP-7702 signing tests. It replaces one test case that used a nonce of 0 with the same scenario using a nonce of 67, because the real-world protocol …

Test-only change with no production code modificationEIP-7702 tuple nonce constraint reflected in test dataExpected UI test hashes regenerated for renamed test vector
76cd2ed4by Roman Zeyde+28−282 files
No security note in commit
Informational 15 AI analysisMessage 85 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

build(core): propagate emulator feature from projects

This commit is a build-system cleanup for the Trezor firmware's Rust code. It changes how the 'emulator' feature flag is passed between different software components. The firmware project no longer supports the emulator feature (which make…

5642074cby matejcik+5−44 files
No security note in commit
Low 27 AI analysisMessage 93 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(core): digest EIP-1559/EIP-7702 magic without RLP encoding

This commit is a small internal cleanup in Trezor's Ethereum signing code. It changes how two special 'magic' bytes (the transaction type markers for newer Ethereum transaction formats) are fed into the cryptographic hash. Previously the c…

Refactor of cryptographic hashing path for Ethereum transaction signingRemoval of implicit assumption that RLP encodes small integers as single bytesChange affects EIP-1559 and EIP-7702 transaction type markers
2362bc6fby Roman Zeyde+6−32 files
No security note in commit
Informational 15 AI analysisMessage 98 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): test RLP self-encoding bytestrings

This commit only adds a new unit test to the Trezor firmware codebase. It verifies that very short Ethereum RLP-encoded byte strings and small positive integers encode to themselves, which is a known property of the RLP specification. No p…

41538733by Roman Zeyde+16−01 file
No security note in commit
Informational 18 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core): remove sha1 from regular FW

This commit removes the SHA-1 hashing function from the regular Trezor firmware. SHA-1 is an old, weak hash algorithm that is no longer considered secure for sensitive uses. The change deletes the code that exposes SHA-1 to apps running on…

Removal of a deprecated cryptographic primitive (SHA-1) from the firmware API surfaceReduction of attack surface and prevention of future misuse of a collision-vulnerable hashNo direct vulnerability patch or memory-safety bug is present in the diff
16d15774by M1nd3r+0−2006 files
No security note in commit
Low 27 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): pass static public key to `noise_xxpsk3_*_init()`

This commit changes how a cryptographic library sets up secure connections. Previously, the code automatically calculated the public key from the private key. Now, the caller must provide the public key directly. This is a code-quality ref…

Cryptographic key handling changed: public key is now supplied rather than derivedPotential reduction of key-mismatch risk if caller provides correct public keyNew null-pointer check added for static_public_key
1b3128a4by Ondřej Vejpustek+20−92 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): change order of parameters

This commit simply reorders the arguments of an internal function called dh() and updates every place that calls it. The actual math and security behavior are unchanged; it is a code cleanup with no security effect.

33a119eeby Ondřej Vejpustek+15−151 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): prefix enums

This commit simply renames two groups of internal status labels (called enums) in the Trezor firmware's cryptographic code. The old names like WAITING_FOR_REQUEST1 were shared between two different parts of the code, so the developer gave …

f1c74046by Ondřej Vejpustek+26−222 files
No security note in commit
Low 37 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(crypto): prevent calling `memzero(NULL, ...)`

This commit fixes three places in the Trezor firmware's cryptographic code where a memory-clearing function could be called with a NULL pointer. In practice, passing NULL to memzero is harmless on Trezor's platform (it does nothing), but i…

NULL pointer passed to memory-zeroing helper in cryptographic codeUndefined behavior in C standard library contractDefensive hardening in Noise protocol implementation
0394e934by Ondřej Vejpustek+11−51 file
No security note in commit
Informational 18 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(crypto): return remote static key from `noise_xxpsk3_*_handle_*()`

This commit is a code cleanup (refactor) for the cryptographic handshake code used in Trezor devices. It changes how the other party's long-term public key is returned to the caller: instead of storing it inside an internal state structure…

Removal of long-term public key storage from internal handshake stateCaller-supplied output buffer for remote static public key reduces internal secret retentionError-path memzero of returned key material on failure
3ead1aa6by Ondřej Vejpustek+79−423 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ProjectProfile to ProjectConfig

This commit is a simple rename from 'ProjectProfile' to 'ProjectConfig' in two Rust source files. It only changes variable names, struct names, and error messages. There is no change to program logic, security behavior, or how data is hand…

581b37bcby cepetr+18−182 files
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce ResolvedBuildArgs

This commit is a straightforward internal code refactor in Trezor's build tooling. It introduces a new ResolvedBuildArgs structure that centralizes default values for command-line build options before they are used. There is no change to u…

c24d1be8by cepetr+99−295 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): make build args tristate

This commit is a straightforward internal refactor of the Trezor firmware build tool's command-line argument handling. It changes many on/off flags from plain booleans to optional booleans so they can explicitly be set to true, false, or l…

271e249aby cepetr+57−561 file
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): introduce build options

This commit is a straightforward internal code reorganization in Trezor's build tooling. It moves build-option definitions from one Rust source file to a new module and adds the ability to load those options from a configuration file. Ther…

75085e2aby cepetr+275−2007 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce build presets

This commit is a developer tooling change for the Trezor firmware build system. It introduces 'build presets'—named configuration bundles stored in TOML files—so developers can select common build settings with a single command-line flag i…

eefe8f7fby cepetr+397−419 files
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): upgrade manifest.yaml for tf-tools 0.3.0

This commit is a routine update to a build-system manifest file used by Trezor's internal tooling. It reorganizes and re-labels feature flags (for example, moving options between 'Features', 'Debugging', and 'Signing' groups and simplifyin…

57b28b89by cepetr+86−1351 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(core): add tf-tools 0.3.1+ configuration file

This commit adds a single configuration file for a Trezor developer tool (a VS Code extension). It only points the tool to existing folders in the repository and contains no executable code, no secrets, and no changes to firmware behavior.…

e554f618by cepetr+8−01 file
No security note in commit
Informational 15 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

This commit is a simple internal code cleanup: it renames a Rust data structure called ResolvedBuild to ResolvedBuildFeatures and updates the places that use it. There are no functional changes, no security fixes, and no changes to how the…

aaa2780bby cepetr+5−52 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(core): fix up clippy warnings in storage.rs

This is a tiny code cleanup commit that replaces two calls to `ptr::null()` with Rust's `unwrap_or_default()` to silence automated Clippy lint warnings. It does not change what value is produced (still a null pointer when no salt is provid…

62354461by cepetr+2−21 file
No security note in commit
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

refactor(xtask): simplify dependencies

This commit is a straightforward internal code cleanup in Trezor's build tooling. It moves a data structure and two helper methods from one Rust source file to another and updates callers accordingly. There is no change to user-facing beha…

6268349fby cepetr+9−193 files
No security note in commit
Repository ledger

Explore captured commits

Expand any commit for its author, full message, clarity score, changed files, triage signals, analysis, and source link.

Lower-priorityfeat(core): implement auto-suspendby obrusvit · 54dfb540 · Sep 16, 2025 · 3 filesMessage 57 · ThinInformational 11Details
Commit message · obrusvit

feat(core): implement auto-suspend

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 11/100

This commit adds an auto-suspend feature for Trezor hardware wallets when running on battery power. It changes how the device locks and dims the screen, and refactors power-button handling. There is no clear security vulnerability in the diff itself, but the change touches sensitive lock/suspend code paths and includes a temporary default-value change (20 seconds instead of the intended 40 seconds) marked with a TODO.

Security candidaterefactor(core): move power management modulesby obrusvit · cb6da02d · Sep 16, 2025 · 7 filesMessage 72 · AdequateInformational 15Details
Commit message · obrusvit

refactor(core): move power management modules

- better code organization

[no changelog]

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
boot or update path
AI analysis · Informational 15/100

This commit simply moves two small power-management files from one folder to another and updates the build scripts and import paths accordingly. The actual code behavior is unchanged. There is no security fix or vulnerability here.

Lower-priorityfeat(core): implement auto-suspend in bootscreenby obrusvit · 95d0b6db · Sep 16, 2025 · 1 fileMessage 57 · ThinInformational 18Details
Commit message · obrusvit

feat(core): implement auto-suspend in bootscreen

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 18/100

This commit changes the Trezor hardware wallet's boot screen so that, on devices with a power manager, the screen dims after 30 seconds of inactivity and the device auto-locks after the configured battery autolock delay. It also makes sure these timers are cleaned up when the user finishes the boot screen. There is no direct security bug visible in the diff; it is a power-saving and lock-behavior feature.

Lower-priorityfeat(core): apply autolock settings from menuby obrusvit · c4420f75 · Sep 16, 2025 · 3 filesMessage 57 · ThinInformational 20Details
Commit message · obrusvit

feat(core): apply autolock settings from menu

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 20/100

This commit adds a new battery-specific auto-lock setting to Trezor hardware wallets. Users can now set a separate screen-lock delay for when the device is running on battery power, distinct from the existing USB-powered auto-lock delay. The change wires up the on-device menu, the settings-applier, and the Python companion library. There is no indication this fixes a security bug; it appears to be a missing feature for a new power-management capability.

Lower-priorityfix(core): do not wait for nRF to come up in emulatorby matejcik · fbba6d2d · Sep 16, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · matejcik

fix(core): do not wait for nRF to come up in emulator

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This is a tiny developer-experience fix for the Trezor hardware wallet emulator (a software simulator used for testing). It stops the emulator from waiting up to 5 seconds for the Bluetooth chip to report it is ready, because the emulator has no real Bluetooth chip. There is no security issue here.

Lower-priorityfix(core): make the autolock_delay_battery field publicby matejcik · 26c42906 · Sep 16, 2025 · 1 fileMessage 89 · StrongInformational 21Details
Commit message · matejcik

fix(core): make the autolock_delay_battery field public

because pinlock screen uses it before unlocking

89/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Explains rationale or failure mode
AI analysis · Informational 21/100

This commit changes how one device setting—the battery-powered auto-lock delay—is stored on a Trezor hardware wallet. Previously it was kept in a private/protected storage area; now it is marked as public so the PIN lock screen can read it before the user has unlocked the device. The change itself is a straightforward bug fix: the lock screen needs this value to decide when to auto-lock, but could not access it while still locked. There is no direct evidence in the commit that this introduces a security vulnerability; it mainly reduces the confidentiality of that single setting.

Lower-prioritytest(core): disable suspend in emulatorby obrusvit · a3c89268 · Sep 16, 2025 · 1 fileMessage 82 · StrongInformational 15Details
Commit message · obrusvit

test(core): disable suspend in emulator

- this should be temporary until there's a better way to continue tests
after emulator suspend

[no changelog]

82/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
AI analysis · Informational 15/100

This is a test-only change that prevents the Trezor emulator (a software version of the hardware wallet used for testing) from entering a low-power suspend state during automated tests. It does not affect real Trezor devices and is not a security fix.

Lower-priorityfeat(core/emulator): support suspend in emulatorby matejcik · ffe97add · Sep 16, 2025 · 4 filesMessage 57 · ThinInformational 15Details
Commit message · matejcik

feat(core/emulator): support suspend in emulator

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit adds a visual 'suspend' screen to the Trezor emulator (the desktop simulator, not the real hardware wallet). When the emulator enters suspend mode, it now shows a blue overlay with a 'SUSPENDED' image and waits for a key press or mouse click before resuming. It is a user-interface feature for the emulator only and does not change how real Trezor devices handle secrets, PINs, or cryptographic operations.

Lower-priorityfeat(core): debug logging for suspendby matejcik · d52d5211 · Sep 16, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · matejcik

feat(core): debug logging for suspend

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit adds extra debug-only log messages that describe when the Trezor device goes to sleep and what event wakes it up. These messages only appear in debug builds and do not change how the device behaves. There is no security issue visible in this change.

Lower-priorityfeat(protob): extend ApplySettingsby obrusvit · 42af3f8d · Sep 16, 2025 · 4 filesMessage 70 · AdequateInformational 19Details
Commit message · obrusvit

feat(protob): extend ApplySettings

- add auto_lock_delay_battery_ms to set delay in ms after which the
device locks when on battery or wireless charger

[no changelog]

70/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 19/100

This commit adds a new device setting called auto_lock_delay_battery_ms to the Trezor protocol definitions. It lets users configure how long the device waits before automatically locking when running on battery or a wireless charger. The change only updates generated message bindings across Python, Rust, and core firmware; it does not contain any actual lock behavior logic or security fix.

Lower-priorityfix(core): make lock_manager repaint the screen properly after resume from suspendby matejcik · 07b02778 · Sep 16, 2025 · 1 fileMessage 62 · AdequateInformational 19Details
Commit message · matejcik

fix(core): make lock_manager repaint the screen properly after resume from suspend

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 19/100

This commit fixes a screen-repainting bug in the Trezor hardware wallet's lock/suspend feature. After the device wakes from sleep, it now fades the backlight back in and repaints the screen correctly, instead of relying on an older autodim-clear routine that could leave the display in a stale or partially drawn state. There is no direct evidence in the commit that this is a security vulnerability, but incorrect screen state after resume could in theory mislead a user about what the device is showing or asking them to confirm.

Security candidatefeat(core): introduce lock_managerby matejcik · 37595a63 · Sep 16, 2025 · 11 filesMessage 70 · AdequateLow 27Details
Commit message · matejcik

feat(core): introduce lock_manager

it eats some functions from apps.base, and introduces an asynchronous
notification mechanism for suspending via `notify_suspend()`

70/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
authentication path
AI analysis · Low 27/100

This commit is a code reorganization: it moves device locking, unlocking, homescreen selection, and suspend-related logic out of apps/base.py into a new module called apps/common/lock_manager.py. It also changes how the power button triggers suspend, using a new asynchronous notification mechanism (notify_suspend) instead of immediately locking the device. There is no direct evidence in the diff that this fixes a security vulnerability; it appears to be a feature/refactoring change.

Security candidatefeat(core): fade backlight even in case a background process is still runningby matejcik · 0aedc0c6 · Sep 16, 2025 · 1 fileMessage 85 · StrongInformational 23Details
Commit message · matejcik

feat(core): fade backlight even in case a background process is still running

when autolock_interrupts_workflow is False and we need to wait for e.g.
transaction signing to finish before we can go to suspend

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
signing boundary
AI analysis · Informational 23/100

This small change moves where the screen backlight fade happens in the Trezor hardware wallet's lock/suspend logic. Previously, the screen dimmed only inside the suspend function. Now it also dims earlier when the device decides it should suspend but is still waiting for a background task (like signing a transaction) to finish. The goal is to avoid leaving the screen bright while the user is waiting for a long operation before the device can lock. This is a user-experience and minor privacy improvement, not a fix for a serious security flaw.

Security candidatefix(core): setup RGB LED also when PIN not setby obrusvit · 8a14db13 · Sep 16, 2025 · 1 fileMessage 57 · ThinInformational 18Details
Commit message · obrusvit

fix(core): setup RGB LED also when PIN not set

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
access control
AI analysis · Informational 18/100

This commit fixes a small inconsistency in the Trezor hardware wallet's startup screen. When a user had not set a PIN, the device's RGB LED (colored status light) was not being configured according to the user's preference. The change makes sure the LED setting is applied in that case too. There is no direct security vulnerability here; it is a user-experience and settings-consistency fix.

Security candidatefeat(core/eckhart): two types of auto lock delay in device menuby Lukas Bielesch · 10078286 · Sep 16, 2025 · 17 filesMessage 62 · AdequateInformational 15Details
Commit message · Lukas Bielesch

feat(core/eckhart): two types of auto lock delay in device menu

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
cryptography-sensitive pathsigning or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a user-interface feature change for the Trezor hardware wallet. It splits the single 'auto-lock delay' setting in the device menu into two separate entries: one for when the device is on battery/wireless charger and one for when it is connected to USB. There is no indication in the commit that this fixes a security bug or changes any security-critical behavior; it is purely a UI/UX update.

AI review queuedstyle: pystyle & cstyleby matejcik · 55f15d0e · Sep 16, 2025 · 3 filesMessage 28 · OpaqueInformational 15Details
Commit message · matejcik

style: pystyle & cstyle

28/100 · OpaqueMessage clarity
✓ Subject identifies a change! No meaningful explanatory body
Why it was queued
second-pass: opaque commit message
AI analysis · Informational 15/100

This commit is purely a code-style and formatting cleanup. It re-indents a large embedded image byte array, adds a missing import and two function calls related to screen dimming in the lock manager, and wraps a debug log line to fit style guidelines. There is no security-relevant change.

Lower-priorityfeat(core): split strings by ":"by Ioan Bizău · 558e23da · Sep 16, 2025 · 2 filesMessage 72 · AdequateInformational 15Details
Commit message · Ioan Bizău

feat(core): split strings by ":"

* this helps with the connection button which contains MAC addresses

[no changelog]

72/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit is a minor user-interface improvement that lets text on buttons break onto a new line at colon characters, not just spaces. The stated purpose is to better display MAC addresses (which contain colons) on a connection button. There is no security relevance visible in the code or commit message.

Security candidatechore(core): update T3W1 embedded binariesby tychovrahe · 7a4f6da8 · Sep 16, 2025 · 3 filesMessage 57 · ThinInformational 3Details
Commit message · tychovrahe

chore(core): update T3W1 embedded binaries

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
boot or update path
AI analysis · Informational 3/100

This commit swaps in two updated binary firmware files for the Trezor T3W1 hardware wallet (a QA bootloader and a Bluetooth development binary) and updates the corresponding cryptographic hash list. The actual code inside the binaries is not shown, and there is no description of why the binaries changed. On its own, the commit does not contain any visible security bug or fix.

Security candidatefeat(core): check nRF FW authenticity in firmwareby tychovrahe · c22ca709 · Sep 16, 2025 · 13 filesMessage 57 · ThinModerate 58Details
Commit message · tychovrahe

feat(core): check nRF FW authenticity in firmware

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
boot or update path
AI analysis · Moderate 58/100

This commit adds a new security feature to Trezor hardware wallets that checks whether the Bluetooth chip (nRF) is running authentic, manufacturer-approved firmware before the main wallet software starts up. In production builds, if the Bluetooth chip fails this authenticity check, the device now shuts down with an error instead of continuing to boot. The change also separates the authentication code from general Bluetooth support so it can be enabled independently.

Security candidatefeat(core): send lock&unlock notifications when hard-lockingby tychovrahe · f0955cf4 · Sep 15, 2025 · 8 filesMessage 62 · AdequateInformational 22Details
Commit message · tychovrahe

feat(core): send lock&unlock notifications when hard-locking

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
boot or update path
AI analysis · Informational 22/100

This commit adds a notification system so the Trezor device can tell the connected computer when it becomes 'unlocked' (ready to accept commands) and 'locked' (hard-locked). It also exposes a way for the device's Python code to send these notifications. There is no obvious security bug in the change itself, but the new MicroPython binding does not validate that the event number is one of the defined values, so a bug or compromised app running inside the device could pass an out-of-range value to the underlying C notification function.

Lower-prioritychore(nordic): switch to softdevice controllerby tychovrahe · f5525e86 · Sep 15, 2025 · 2 filesMessage 57 · ThinInformational 16Details
Commit message · tychovrahe

chore(nordic): switch to softdevice controller

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 16/100

This commit changes the Bluetooth low-level radio controller used in a Trezor Nordic nRF52832 board from Zephyr's open-source 'SW Split' controller to Nordic's proprietary 'SoftDevice' controller. It also removes some Bluetooth debug UART bindings and disables an alternative HCI controller node. There is no direct evidence in the commit of a security vulnerability or fix; it appears to be a routine build/configuration change.

Lower-priorityfeat(core): add BLE battery serviceby tychovrahe · a7229886 · Sep 15, 2025 · 5 filesMessage 57 · ThinInformational 24Details
Commit message · tychovrahe

feat(core): add BLE battery service

[no changelog]

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 24/100

This commit adds a standard Bluetooth 'battery service' that lets a connected phone or computer read the device's battery percentage. The feature itself is normal and not a security bug. The only small concern is that the new command accepts a battery level byte without checking the message length, but because the value is immediately passed to Zephyr's standard battery-service helper, there is no clear way to misuse it. There is no evidence this was reported as a security issue.

Lower-priorityci: continue on nix environment install timeoutby Martin Milata · 10601bed · Sep 15, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

ci: continue on nix environment install timeout

57/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This is a one-line change to a GitHub Actions CI workflow. It makes the build pipeline continue even if the Nix package environment installation step times out or fails, instead of stopping the whole job. There is no indication this affects the security of the Trezor firmware, wallet keys, or user data.

Security candidatechore(core/bootloader): unify menu items with firmwareby tychovrahe · b4e3d037 · Sep 15, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core/bootloader): unify menu items with firmware

[no changelog]

62/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
update trustboot or update path
AI analysis · Informational 15/100

This commit simply renames two on-screen menu buttons in the bootloader user interface: 'Reboot' becomes 'Restart' and 'Power off' becomes 'Turn off'. There is no change to security logic, no bug fix, and no vulnerability addressed.

Lower-prioritychore(core): reserve channel IDs 0xFFF0 - 0xFFFE for future use [no changelog]by M1nd3r · 6426d35e · Sep 15, 2025 · 1 fileMessage 77 · AdequateInformational 15Details
Commit message · M1nd3r

chore(core): reserve channel IDs 0xFFF0 - 0xFFFE for future use
[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit is a routine housekeeping change in Trezor firmware. It reserves a specific range of channel ID numbers (0xFFF0 to 0xFFFE, plus 0x0000) for future use and adjusts the random channel ID generator so it no longer picks values from that reserved range. There is no indication of a security bug being fixed.