TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2672 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
322commits · 30 days
551commits · 60 days
1336commits · 180 days
2643commits · 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
481Strong · 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 Zeyde578182576272
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 24 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-priorityci: Crowdin push sourcesby obrusvit · 2ebb9dea · Oct 30, 2025 · 1 fileMessage 55 · ThinInformational 15Details
Commit message · obrusvit

ci: Crowdin push sources

- allow manual uploading of crowdin sources, i.e. `en.json` split into
per-layout files

[no changelog]

55/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit adds a new GitHub Actions workflow that lets maintainers manually upload English translation source files to the Crowdin translation service. It is a routine CI/infrastructure change with no apparent security relevance.

Lower-priorityfix(core): fix unit_properties_init in prodtestby kopecdav · 0dee3ac0 · Oct 30, 2025 · 1 fileMessage 57 · ThinInformational 23Details
Commit message · kopecdav

fix(core): fix unit_properties_init in prodtest

[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 23/100

This commit moves a function call (unit_properties_init) so it runs earlier during the startup of a special factory-testing program called prodtest, instead of only when Bluetooth support is enabled. The change is in a low-level embedded file used during hardware production testing, not the normal wallet firmware users run. The commit message says it is a fix but gives no details about any security impact, and no independent security references were provided.

Lower-priorityfeat(core): prepare fuel gauge / battery model for different battery typesby tychovrahe · 86350707 · Oct 30, 2025 · 8 filesMessage 62 · AdequateInformational 17Details
Commit message · tychovrahe

feat(core): prepare fuel gauge / battery model for different battery types

[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
AI analysis · Informational 17/100

This commit refactors the Trezor firmware's battery fuel-gauge code so it can support multiple battery types in the future. It replaces hard-coded battery model constants with a runtime-selected structure based on a battery_type value read from device OTP memory. There is no obvious security bug in the diff, but the change introduces a new hardware-derived input (battery_type) into power-management calculations. Currently only battery type 0 is handled, and any unknown type falls back to the same default model.

Lower-prioritychore(core): adjust JYH battery definition file for usage in a dynamically selected battery modelby tychovrahe · efc272e1 · Oct 30, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): adjust JYH battery definition file for usage in a dynamically selected battery model

[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
AI analysis · Informational 15/100

This commit is a routine code cleanup that renames battery-related constants and arrays in a Trezor firmware header file to include the specific battery model name (JYHPFL333838). No values were changed, no new functionality was added, and there is no indication of any security issue being fixed.

Security candidatefeat(core): notify host on power status change using internal notification systemby tychovrahe · 25dadcef · Oct 30, 2025 · 12 filesMessage 62 · AdequateInformational 19Details
Commit message · tychovrahe

feat(core): notify host on power status change using internal notification system

[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 19/100

This commit adds a way for the Trezor device to tell the connected computer or phone when its power source changes (for example, when USB is plugged in or a wireless charger is placed nearby). It also exposes two new status flags, usb_connected and wireless_connected, in the device's feature report. There is no direct security fix here; it is a feature that improves real-time status reporting.

Lower-prioritychore(core): update UI fixturesby Martin Milata · 038e877e · Oct 29, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

chore(core): update UI fixtures

[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 15/100

This commit only updates expected screenshot fingerprints used in automated UI tests for the Trezor hardware wallet. No actual device code, firmware logic, or user-facing behavior was changed. It is a routine test-maintenance change with no security relevance.

Lower-priorityfeat(core/tools): BlueZ-emulator bridgeby Martin Milata · 5877710b · Oct 29, 2025 · 10 filesMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

feat(core/tools): BlueZ-emulator bridge

[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 15/100

This commit adds a new developer/testing tool that creates a fake Bluetooth (BlueZ) interface on a developer's computer. It lets software talk to a Trezor emulator as if the emulator were a real Bluetooth device. It is not a fix for a security issue and does not change any production firmware, wallet, or device code. It is purely a testing/development helper.

Lower-priorityrefactor(core): emulator socket handlingby Martin Milata · 4cac742c · Oct 29, 2025 · 5 filesMessage 57 · ThinInformational 21Details
Commit message · Martin Milata

refactor(core): emulator socket handling

[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 21/100

This commit is a code cleanup that moves emulator-only UDP socket handling for the Trezor hardware wallet emulator into a shared helper module. It affects only the Unix emulator build, not real Trezor devices. The change does not appear to fix or introduce a security vulnerability; it is a refactoring to reduce duplicated code between USB and BLE emulation layers.

Lower-priorityfeat(core): add emulated BLE interfacesby Martin Milata · e2f3e3b0 · Oct 29, 2025 · 5 filesMessage 57 · ThinInformational 21Details
Commit message · Martin Milata

feat(core): add emulated BLE interfaces

[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 21/100

This commit adds a software-only Bluetooth Low Energy (BLE) emulator for Trezor hardware wallets. It is a testing/development feature that lets a desktop emulator simulate BLE connections over local UDP network sockets. It does not change real hardware behavior and is not a security fix or a disclosed vulnerability. The main risk is that any emulator-only code could, in theory, contain bugs that affect testing environments, but there is no direct evidence this introduces an exploitable flaw in production devices.

Security candidaterefactor(core): improve TextScreenby obrusvit · 381bdde1 · Oct 29, 2025 · 4 filesMessage 70 · AdequateInformational 14Details
Commit message · obrusvit

refactor(core): improve TextScreen

- PageCounter and ActionBar::PaginateOnly are shown only if the content
does not fit the page
- offloading place to a free-standing function saves 3kB of flash space
[no changelog]

70/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
boot or update path
AI analysis · Informational 14/100

This is a routine user-interface code cleanup for the Trezor hardware wallet. It changes how on-screen navigation controls (page counters and action bars) are shown, hiding them when text fits on a single page. There is no indication this fixes a security bug or introduces a security risk.

Security candidaterefactor(core): remove builder for page counterby obrusvit · 769b1e47 · Oct 29, 2025 · 5 filesMessage 80 · StrongInformational 13Details
Commit message · obrusvit

refactor(core): remove builder for page counter

- follow the design principle for Screen to construct them with
appropriate components which should do the right thing internally

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
boot or update path
AI analysis · Informational 13/100

This is a small internal code cleanup in the user-interface code for the Trezor hardware wallet's newer 'Eckhart' layout. It removes a special 'pagination hint' builder flag and instead lets callers pass an ordinary page-counter hint component. The visible behavior is meant to stay the same: a page counter appears only when content spans more than one page. There is no indication this change fixes a security bug or introduces a vulnerability.

Lower-prioritychore: update fixturesby Ondřej Vejpustek · fd3c24d8 · Oct 29, 2025 · 1 fileMessage 40 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

chore: update fixtures

40/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only updates expected hash values in a test data file. These hashes are used by automated tests to verify that the device's on-screen prompts match recorded snapshots. No actual product code was changed, so this cannot introduce a security vulnerability or fix one in the firmware itself.

Security candidatefix(storage,core/embed): fix and improve estimatesby Ondřej Vejpustek · f0d80bf9 · Oct 29, 2025 · 18 filesMessage 62 · AdequateInformational 19Details
Commit message · Ondřej Vejpustek

fix(storage,core/embed): fix and improve estimates

[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
seed or entropy path
AI analysis · Informational 19/100

This commit is a code-quality and accuracy improvement for how the Trezor firmware estimates how long PIN operations will take. It replaces a single coarse heuristic with finer-grained per-command timing estimates for the Optiga and Tropic secure chips, adds a helper that models the chip's security-event-counter throttling, and moves the estimate logic closer to the functions it describes. There is no direct security vulnerability being fixed; the change is about making progress-bar timing more accurate, which indirectly helps user experience and may make side-channel timing analysis slightly more predictable. The commit message says '[no changelog]' and does not claim to fix a security issue.

Lower-priorityrefactor(core/embed): make counter limit uint32_tby Ondřej Vejpustek · e6218c2a · Oct 29, 2025 · 3 filesMessage 57 · ThinLow 26Details
Commit message · Ondřej Vejpustek

refactor(core/embed): make counter limit uint32_t

[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 · Low 26/100

This commit changes how Trezor devices set a lifetime PIN-attempt counter in the secure Optiga chip. Previously the counter limit was stored as an 8-bit number (max 255), which was too small for the intended 600,000 stretching operations. The patch widens the limit field to 32 bits and correctly writes the full 600,000 value into the chip. Without this change, the counter could wrap or be capped at 255, potentially allowing more PIN attempts than designed or prematurely bricking the device. The change is a hardening fix, not an obvious remote exploit.

Lower-priorityfeat(core): move secmon stack/data to ecc sramby cepetr · ce2c7239 · Oct 29, 2025 · 6 filesMessage 57 · ThinLow 31Details
Commit message · cepetr

feat(core): move secmon stack/data to ecc sram

[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 · Low 31/100

This commit rearranges where the Trezor firmware's security monitor (a small privileged component) keeps its private stack and data. Previously, that protected memory sat in a region that was not covered by the hardware's error-correcting RAM. The change moves it into ECC-protected SRAM and splits the non-secure RAM description into two separate chunks so the memory protection tables can cover the gap correctly. It is a hardening change rather than a fix for an active, exploitable bug, but it removes a reliability/integrity risk for sensitive security-monitor data.

Security candidatefeat(core): use ecc sram in bootloader/boardloaderby cepetr · 0cac085e · Oct 29, 2025 · 6 filesMessage 62 · AdequateInformational 11Details
Commit message · cepetr

feat(core): use ecc sram in bootloader/boardloader

[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 11/100

This commit changes how the Trezor hardware wallet's earliest startup code (boardloader and bootloader) uses internal memory on the T3B1 model. It shifts small data and uninitialized-memory sections from one RAM bank (AUX1_RAM) to another (MAIN_RAM), and slightly adjusts the size and start addresses of those RAM regions. The title says this is to 'use ECC SRAM'—memory with built-in error-correction, which is a reliability/hardening improvement, not a vulnerability fix. There is no direct evidence in the commit of a security bug being patched.

Security candidatefix(core): get rid of confidential global varsby cepetr · dfb72957 · Oct 29, 2025 · 37 filesMessage 57 · ThinModerate 63Details
Commit message · cepetr

fix(core): get rid of confidential global vars

[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
cryptography-sensitive pathboot or update path
AI analysis · Moderate 63/100

This commit removes a special firmware memory section called ".confidential" that was meant to keep sensitive data (like cryptographic keys and seed-derived values) separate from ordinary memory. Previously, variables marked with a CONFIDENTIAL attribute were placed in this dedicated RAM region and copied from flash at startup. The patch deletes that whole mechanism across all Trezor models and instead marks sensitive local variables with a new LOCAL_CONFIDENTIAL macro. On the legacy build this still maps to the old behavior, but on the modern STM32 builds it effectively becomes a no-op, meaning those sensitive buffers now live in normal RAM/data sections. The change is presented as a cleanup, but it reduces a defense-in-depth isolation feature and could make it easier for a successful attacker to locate or extract secret material in memory.

Security candidatefeat(core): use LED effect for BLE pairingby Roman Zeyde · 5f0727a1 · Oct 28, 2025 · 12 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

feat(core): use LED effect for BLE pairing

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 15/100

This commit is a straightforward user-interface feature: it makes the Trezor T3W1 device show a special LED lighting effect while Bluetooth Low Energy (BLE) pairing is in progress. It refactors how the firmware tracks LED state so that the renderer can request either a static color or a hardware-driven effect (pairing/charging). There is no security-relevant change visible in the diff.

Security candidatefeat(core): implementation of backlight brightness correction.by bleska · eae704da · Oct 27, 2025 · 4 filesMessage 100 · StrongInformational 18Details
Commit message · bleska

feat(core): implementation of backlight brightness correction.

Constants' re-calculation so that the physical brightness remains static between the old and new approach. It should minimize the effect of the new approach for user, tests at production line, etc.

[no changelog]

100/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Explains rationale or failure mode✓ Mentions testing or verification
Why it was queued
boot or update path
AI analysis · Informational 18/100

This commit adjusts the screen brightness numbers used by the Trezor T3W1 hardware wallet so that the actual perceived brightness stays the same after a change in how brightness is calculated. It is a display-calibration tweak, not a security fix or vulnerability. The only user-visible effect should be that brightness levels look the same as before.

Security candidatefeat(core): implementation of backlight brightness correction.by bleska · 56c91cc9 · Oct 27, 2025 · 9 filesMessage 85 · StrongInformational 15Details
Commit message · bleska

feat(core): implementation of backlight brightness correction.

Having re-considered that, the gamma correction function shall stay in the backlight driver's level. Although, not the GAMMA EXPONENT. The exponent is to be passed as an argument to backlight_init() function either to be used/not_used further on. This exponent shall be defined for different displays separately in their respective header files.

[no changelog]

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
authentication path
AI analysis · Informational 15/100

This commit is a routine hardware driver improvement. It makes the screen backlight brightness curve adjustable per display panel by passing a gamma exponent into the backlight driver. There is no security-relevant change: no memory corruption, no cryptographic code, no privilege changes, and no user data handling.

Lower-priorityfeat(core): implementation of backlight brightness correction.by bleska · 9f6f78a0 · Oct 27, 2025 · 1 fileMessage 85 · StrongInformational 19Details
Commit message · bleska

feat(core): implementation of backlight brightness correction.

First PoC implemented at TS7, specifically for tps61062 boost LED driver IC. Next step will be to make it general i.e. to move the correction to display driver SW level rather than backlight's one.

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 19/100

This commit changes how the Trezor hardware wallet's screen backlight brightness is calculated. It replaces a simple linear mapping with a gamma correction curve so brightness levels appear smoother to the human eye. There is no indication this change fixes a security bug or introduces a security vulnerability; it is a display-quality feature.

Lower-priorityrefactor(core): deduplicate BLE_MAX_BONDSby Martin Milata · 5059602d · Oct 27, 2025 · 4 filesMessage 47 · ThinInformational 15Details
Commit message · Martin Milata

refactor(core): deduplicate BLE_MAX_BONDS

[no changelog]

47/100 · ThinMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope! No meaningful explanatory body
AI analysis · Informational 15/100

This commit is a simple code cleanup: it removes a duplicate definition of the Bluetooth pairing limit (BLE_MAX_BONDS) from a Python file and exposes the existing Rust constant to Python instead. There is no security issue here.

Lower-priorityfix(core): return to homescreen after successful BLE pairingby Martin Milata · a0b89071 · Oct 27, 2025 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · Martin Milata

fix(core): return to homescreen after successful BLE pairing

[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
AI analysis · Informational 18/100

This is a minor user-interface fix. After you successfully pair a new Bluetooth device with the Trezor hardware wallet, the menu now correctly returns to the main home screen instead of staying in the pairing menu. There is no direct security vulnerability here; it is a usability polish change.

Security candidaterefactor(core): refactor T3W1 device menuby Martin Milata · e9c46a0c · Oct 27, 2025 · 6 filesMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

refactor(core): refactor T3W1 device 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
Why it was queued
boot or update path
AI analysis · Informational 15/100

This commit is a straightforward internal code cleanup for the T3W1 hardware wallet's on-device menu. It changes how menu choices are represented behind the scenes (from unique object tokens to plain integer codes) and reorganizes the Python handler code into smaller functions. There is no indication this fixes a security bug or introduces a new vulnerability.

Lower-priorityfix(core): fix missing TOUCH_END in touch driverby cepetr · c210d952 · Oct 27, 2025 · 2 filesMessage 57 · ThinLow 42Details
Commit message · cepetr

fix(core): fix missing TOUCH_END in touch driver

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

This commit fixes a touch-screen driver bug in Trezor hardware wallets where a finger lift (TOUCH_END event) could be lost. The symptom was 'stuck hold-to-confirm buttons' on some models. In practice, a missing release event could make the device think a finger was still held on the screen, potentially causing an unintended confirmation action or leaving the UI in a confused state. The patch is small and defensive, adding a state-machine correction rather than changing large amounts of code.