TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2660 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.

916security candidates311second-pass queue1354AI analyses
343commits · 30 days
587commits · 60 days
1362commits · 180 days
2652commits · 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
473Strong · 80–100
1321Adequate · 60–79
861Thin · 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.
PrisionMike945982273
Andrew Kozlik712436265
Roman Zeyde572177253171
tychovrahe292104125161
Jakub Janků22917182
Martin Pastyřík23811173
cepetr19682103059
Ioan Bizău23076140059
obrusvit21376107064
M1nd3r20671105071
Lukas Bielesch846771067
Martin Milata1744677063
Analysis record

Published AI watches

Last scanned 9 minutes ago

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
Informational 15 AI analysisMessage 47 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

docs: add xtask documentation

This commit only adds documentation. It updates the table of contents and adds a new markdown page plus a diagram explaining the project's 'xtask' build helper. No code, build scripts, or firmware logic was changed, so it cannot introduce …

4879dababy cepetr+296−03 files
No security note in commit
Informational 17 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

feat(xtask): introduce project-toml build-options

This commit is a build-system refactoring for Trezor firmware. It moves the mapping of command-line build options to Rust/cargo features out of hard-coded Rust logic and into per-project TOML files. It also adds a small change so debug bui…

Build-option mapping now lives in project.toml files, increasing the attack surface for supply-chain/build-configuration tamperingMakefile change automatically enables debug-link for PYOPT=0 debug buildsValidation added to reject storage_insecure_testing_mode in production builds
d44de007by cepetr+681−40817 files
No security note in commit
Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

ci(core): fix nightly ARM emulator filename

This commit fixes a filename-renaming step in the project's automated nightly build pipeline. It ensures ARM64 emulator files get the correct name expected by another testing tool. There is no change to the actual Trezor firmware code, dev…

ab95f08fby Martin Milata+3−01 file
No security note in commit
Informational 12 AI analysisMessage 62 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(vendor): avoid micropython submodule noise in git status

This is a routine housekeeping change to reduce clutter in Git's status output for a third-party component (the MicroPython submodule). There is no indication it changes any code that runs on the Trezor device or affects security.

06cab32bby Martin Milata+1−11 file
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.

Security candidatedocs(legacy): update changelog for 1.14.1by Roman Zeyde · 0ca2e650 · Mar 19, 2026 · 2 filesMessage 80 · StrongLow 41Details
Commit message · Roman Zeyde

docs(legacy): update changelog for 1.14.1

```
tools/changelog.py generate --date "18th March 2026" legacy/firmware 1.14.1
```

[no changelog]

(cherry picked from commit 78d928b4d3dee0bc2b4f8d7e5098468ba982da6f)

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

This commit is a documentation-only update that moves a changelog entry into the public release notes for Trezor legacy firmware version 1.14.1. The entry says the firmware now 'Enforce advanced recovery for mnemonics shorter than 24 words.' That wording suggests a prior security weakness: shorter seed phrases may have been recoverable using a simpler, possibly less secure method. However, the actual code change is not present in this commit, so we can only see the vendor's description of a fix, not the fix itself or how it could be attacked.

Security candidatedocs(legacy): changelog for 1.14.1by Roman Zeyde · 1ad1d9fc · Mar 19, 2026 · 4 filesMessage 80 · StrongInformational 15Details
Commit message · Roman Zeyde

docs(legacy): changelog for 1.14.1

```
tools/changelog.py generate --date "18th March 2026" legacy/firmware 1.14.1
```

[no changelog]

(cherry picked from commit 5f71c3b016c1bfb88391ace924b16177773ee87e)

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

This commit only updates the written changelog for Trezor legacy firmware version 1.14.1. It deletes three small draft changelog entries and adds their text to the published CHANGELOG.md file. No program code, firmware logic, or security behavior is changed. The security note about warning on long Ethereum data is a documentation of a prior change, not a new fix in this commit.

Security candidatefix(legacy): Enforce matrix recovery for mnemonics under 24 words.by Andrew Kozlik · 3b0cf662 · Mar 19, 2026 · 7 filesMessage 77 · AdequateModerate 59Details
Commit message · Andrew Kozlik

fix(legacy): Enforce matrix recovery for mnemonics under 24 words.

(cherry picked from commit 203090ae53d763c5777813fbf5c05b8ddf8a2813)

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
cryptography-sensitive pathboot or update path
AI analysis · Moderate 59/100

This update changes how older Trezor devices (the 'legacy' models) restore a wallet from a recovery phrase. Previously, users could type in each word directly in order ('ScrambledWords'). Now, for phrases shorter than 24 words, the device requires the more secure 'matrix' method unless the user has deliberately lowered safety checks. The change is meant to reduce the risk that malware on a computer can spy on or manipulate the recovery words during wallet restore.

Security candidatefeat(common): introduce DebugLink-based N4W1 emulator messagesby Roman Zeyde · 584740c8 · Mar 18, 2026 · 10 filesMessage 62 · AdequateInformational 20Details
Commit message · Roman Zeyde

feat(common): introduce DebugLink-based N4W1 emulator messages

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

This commit only adds new message definitions for a debug-only feature called N4W1 emulator. It does not change any firmware logic, cryptographic code, or user-facing behavior. The messages are marked as DebugLink traffic, which is intended for testing and emulator use, not for production devices. There is no direct security vulnerability visible in this change, but adding debug interfaces always slightly increases the attack surface if those interfaces are accidentally reachable in production.

Security candidatefeat(core): introduce DebugLink-based N4W1 emulatorby Roman Zeyde · 9cd47e15 · Mar 18, 2026 · 6 filesMessage 62 · AdequateInformational 21Details
Commit message · Roman Zeyde

feat(core): introduce DebugLink-based N4W1 emulator

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

This commit adds a developer-only mock/emulator for a new hardware component called N4W1. It is gated behind debug builds (PYOPT='0') and only for the T3W1 device model. It does not change normal user-facing wallet behavior; it only provides a way for engineers to simulate the N4W1 chip during testing.

Security candidatefix(eckhart): improve haptics in scrollable menuby obrusvit · 0d65b4a4 · Mar 18, 2026 · 4 filesMessage 80 · StrongInformational 15Details
Commit message · obrusvit

fix(eckhart): improve haptics in scrollable menu

- if the menu is scrollable (i.e. buttons don't fit on the page) the
haptics is postponed to the actual click (TouchEnd) rather than placing
the finger there (TouchStart)

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

This commit is a user-experience polish change for the Trezor hardware wallet's touchscreen interface. It changes when the device vibrates (haptic feedback) in scrollable menus so that the vibration happens when the user lifts their finger and confirms a tap, rather than when they first touch the screen. This prevents confusing vibrations while the user is merely scrolling through a long menu. There is no security-relevant change here.

Security candidatechore(core/delizia): remove unused importsby Roman Zeyde · 11c17f35 · Mar 17, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core/delizia): remove unused imports

[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 is a routine code cleanup commit that removes or conditionally compiles unused Rust imports in two user-interface files. It does not change program behavior, fix a bug, or alter any security-relevant logic.

Security candidatechore(translations): strings for clear signingby Ioan Bizău · 575a0e34 · Mar 17, 2026 · 6 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

chore(translations): strings for clear signing

[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
signing boundarysigning or wallet path
AI analysis · Informational 15/100

This commit only adds two new user-facing text strings ('Confirm contract' and 'Intent') to the Trezor firmware's translation system. It does not change any code logic, security checks, or transaction handling. There is no indication this is a security fix or introduces a vulnerability.

Security candidatefeat(tron): Add support for `VoteWitnessContract` - coreby PrisionMike · 52c33903 · Mar 10, 2026 · 9 filesMessage 85 · StrongInformational 22Details
Commit message · PrisionMike

feat(tron): Add support for `VoteWitnessContract` - core

- Main logic. Scaffolding in previous commit.
- Supports up to 9 candidates.
- Each layout needs some variation
- Figma design available.

[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
cryptography-sensitive pathsigning or wallet path
AI analysis · Informational 22/100

This commit adds support for a new TRON blockchain operation called VoteWitnessContract to Trezor hardware wallets. It lets users vote for up to 9 TRON network validators (called Super Representatives) directly from the device, with on-screen confirmation before signing. There is no indication this fixes a security bug; it is a feature addition.

Security candidatefix(ci/hw-test): downgrade checkout and upload-artifact actionsby M1nd3r · e754ba60 · Mar 6, 2026 · 1 fileMessage 87 · StrongInformational 15Details
Commit message · M1nd3r

fix(ci/hw-test): downgrade checkout and upload-artifact actions

- HW tests are failing after recent actions upgrade, possibly caused by incompatible runners.

[no changelog]

87/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
Why it was queued
update trustdocumentation-only discount
AI analysis · Informational 15/100

This commit simply downgrades two GitHub Actions helper tools used in automated hardware testing workflows. The change is described as fixing test failures caused by incompatible runners. There is no indication this affects the Trezor firmware itself, user funds, or device security.

Security candidatechore(core): remove redundant includes fom SAES moduleby tychovrahe · 015303a0 · Mar 6, 2026 · 2 filesMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): remove redundant includes fom SAES module

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

This commit simply removes two unused header file includes from source files in the secure AES module. It is a routine cleanup with no functional code changes and no security relevance.

Security candidatechore(core): simplify conditioning in Sconscript.firmwareby tychovrahe · 68ac462b · Mar 6, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): simplify conditioning in Sconscript.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
boot or update path
AI analysis · Informational 15/100

This is a minor build-script cleanup. It removes a check that would stop the build if the microcontroller (MCU) type was not one of two explicitly known families. Now any other recognized MCU falls through to a default binary-generation path. There is no security-relevant change in behavior for supported devices, and no bug or vulnerability is introduced by the diff itself.

Security candidateci: fix actions to commit-hashes instead of tagsby M1nd3r · 7b7d1c2d · Mar 5, 2026 · 18 filesMessage 84 · StrongInformational 15Details
Commit message · M1nd3r

ci: fix actions to commit-hashes instead of tags

- to prevent potential supply-chain attacks
- updated used actions to latest released versions

[no changelog]

84/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Explains rationale or failure mode
Why it was queued
explicit security languagesigning or wallet pathdocumentation-only discount
AI analysis · Informational 15/100

This commit is a hardening change, not a vulnerability fix. It pins all GitHub Actions used by Trezor's firmware build and test pipelines to specific commit hashes instead of version tags, and updates those actions to their latest released versions. Pinning prevents a compromised action publisher from silently replacing a trusted tag with malicious code. There is no evidence of an actual supply-chain attack or any bug being fixed beyond this preventive measure.

Security candidatetest(core): fix broken log suppression in unit testsby M1nd3r · 0da61de7 · Mar 5, 2026 · 11 filesMessage 72 · AdequateInformational 15Details
Commit message · M1nd3r

test(core): fix broken log suppression in unit tests

[no changelog]

72/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
Why it was queued
cryptography-sensitive pathauthentication path
AI analysis · Informational 15/100

This commit only changes the test code for the Trezor firmware. It fixes how debug logging is suppressed during unit tests by moving the suppression logic into the shared test runner, instead of having each test file call a helper function. There is no change to the actual wallet firmware that users rely on, and no security vulnerability is being fixed.

Security candidatefix(crypto): add missing memzero to `ecdsa.c`by M1nd3r · bddd38b4 · Mar 4, 2026 · 1 fileMessage 57 · ThinModerate 51Details
Commit message · M1nd3r

fix(crypto): add missing memzero to `ecdsa.c`

[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 path
AI analysis · Moderate 51/100

This commit fixes a cleanup issue in the code that creates cryptocurrency signatures on Trezor hardware wallets. In several error paths, secret intermediate numbers (including a copy of the private key and random nonce values) were left in memory instead of being securely erased. The patch makes sure those values are wiped even when the function exits early due to an invalid key or other failure. This reduces the risk that sensitive signing material could leak if memory is later read by another process or attacker.

Security candidatefix(crypto): add missing memzero to `bip32.c`by M1nd3r · 09e55d8c · Mar 4, 2026 · 1 fileMessage 57 · ThinLow 48Details
Commit message · M1nd3r

fix(crypto): add missing memzero to `bip32.c`

[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
secret or key materialcryptography-sensitive path
AI analysis · Low 48/100

This commit fixes a cleanup oversight in the Trezor firmware's code that handles NEM cryptocurrency encryption and decryption. Previously, if an encryption or decryption operation failed partway through, the temporary AES key context (a small chunk of memory holding sensitive key material) was not securely wiped before the function returned. The patch ensures this memory is always zeroed out, even on error paths, reducing the risk that leftover cryptographic key bits could leak to other code or be recovered later. It is a defensive hardening fix rather than a demonstrated exploitable bug.

Security candidatefix(crypto): add missing memzero to `ed25519.c`by M1nd3r · 48db49fa · Mar 4, 2026 · 1 fileMessage 57 · ThinLow 42Details
Commit message · M1nd3r

fix(crypto): add missing memzero to `ed25519.c`

[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 path
AI analysis · Low 42/100

This commit fixes a small cleanup bug in the code that creates Ed25519 digital signatures in Trezor hardware wallets. When a certain rare mathematical check fails, the function now securely wipes two temporary secret values from memory before returning an error. Without the fix, those temporary secrets could remain in memory longer than intended. This is a defense-in-depth improvement rather than a confirmed exploitable vulnerability.

Security candidatefix(crypto): add missing memzero to `cardano.c`by M1nd3r · 40d4f902 · Mar 4, 2026 · 1 fileMessage 57 · ThinModerate 59Details
Commit message · M1nd3r

fix(crypto): add missing memzero to `cardano.c`

[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 path
AI analysis · Moderate 59/100

This commit fixes a bug in the Cardano cryptocurrency key derivation code for Trezor hardware wallets. Previously, if a certain error path was hit during key derivation, the function would return early without wiping sensitive intermediate values from memory. The fix ensures those temporary secrets are always cleared, even when the function fails partway through. It also adds cleanup for a couple of additional temporary buffers that were not being wiped before.

Security candidatechore: bump versionsby Roman Zeyde · a002269f · Mar 4, 2026 · 9 filesMessage 63 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore: bump versions

```
tools/bump-version.py core 2.11.1
tools/bump-version.py core/embed/projects/bootloader 2.1.17
tools/bump-version.py core/embed/projects/prodtest 0.3.7
tools/bump-version.py core/embed/projects/secmon 1.0.8
tools/bump-version.py legacy/firmware 1.14.2
```

[no changelog]

63/100 · AdequateMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
Why it was queued
update trustsigning or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a routine version number update. It changes patch version numbers from 2.11.0 to 2.11.1 for the modern Trezor firmware and from 1.14.1 to 1.14.2 for the legacy firmware, updates matching translation file headers, and refreshes a translation signature file. There are no code logic changes, no bug fixes, and no security-related modifications visible in the diff.

Security candidatefix(caesar): localization in Progress Componentby obrusvit · eca4f2cc · Mar 4, 2026 · 3 filesMessage 80 · StrongInformational 15Details
Commit message · obrusvit

fix(caesar): localization in Progress Component

- use progress__locking_device
- enlarge description field in Progress which enables longer strings in
the progress layout (e.g. when locking the device)

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

This commit is a routine user-interface fix for the Trezor hardware wallet's 'Caesar' layout. It swaps a hard-coded English string ('Locking the device...') for a localizable translation key and slightly increases the on-screen margin so longer translated text fits. The remaining changes are only updated test screenshot fingerprints, which is expected when any visible text changes. There is no security issue here.

Security candidatechore(core): introduce DEBUGLINK build flagby tychovrahe · b521aaf1 · Mar 3, 2026 · 5 filesMessage 57 · ThinInformational 20Details
Commit message · tychovrahe

chore(core): introduce DEBUGLINK build flag

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

This commit introduces a new build flag called DEBUGLINK that controls whether Trezor firmware is compiled with debug/test-only USB and screen-recording features enabled. It does not add new runtime behavior; it mostly reorganizes when these debug features are included. The change makes debug builds more explicit, but it also means enabling DEBUGLINK (or disabling optimizations via PYOPT=0) automatically turns on the debug USB interface and screen recording. In a production device this could be risky, but the commit itself is a build-system refactor and the features remain off by default for production builds.

Security candidatefeat(core/bootloader): enable debuglink in bootloaderby tychovrahe · 4c99a697 · Mar 3, 2026 · 23 filesMessage 62 · AdequateLow 37Details
Commit message · tychovrahe

feat(core/bootloader): enable debuglink in bootloader

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

This commit adds a debug-only feature to the Trezor bootloader that lets automated testing tools talk to the bootloader over a special USB debug channel. It is controlled by a build-time flag (DEBUGLINK=1) and is not enabled in normal production firmware. The feature can read screen contents, simulate button presses and touch events, and record the screen. It does not appear to be a vulnerability by itself, but it is a powerful debugging interface that must remain disabled in production devices.

Security candidatefix(core): allow disabling progress animations in bootloaderby tychovrahe · ea673e51 · Mar 3, 2026 · 3 filesMessage 62 · AdequateInformational 20Details
Commit message · tychovrahe

fix(core): allow disabling progress animations in bootloader

[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 trustcryptography-sensitive pathboot or update path
AI analysis · Informational 20/100

This commit adds a way to turn off progress animations in the Trezor bootloader. When animations are disabled, the progress value is forced to 0 so the screen does not show a moving progress bar. There is no direct security fix here; it is a user-experience or accessibility change, likely to support a setting that disables animations.

Security candidatechore: use pillow 12.1.1 for python >= 3.10by M1nd3r · bfe88d22 · Mar 3, 2026 · 1 fileMessage 93 · StrongLow 38Details
Commit message · M1nd3r

chore: use pillow 12.1.1 for python >= 3.10

- fix for vulnerability (OOB write) https://github.com/trezor/trezor-firmware/security/dependabot/109
- pillow is used only by `toiftool`(python CLI tool), the issue does not affect the firmware itself
- patched pillow version (12.1.1) is not compatible with python 3.9, fix affects only usage with python >= 3.10

[no changelog]

93/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference✓ Names security-relevant behavior explicitly
Why it was queued
explicit security languageautomated dependency-update discount
AI analysis · Low 38/100

This commit updates the Python image-processing library Pillow from a vulnerable version to a fixed one, but only for users running Python 3.10 or newer. The commit message explicitly says it fixes an out-of-bounds write vulnerability in Pillow, and that the vulnerable library is only used by a command-line helper tool called toiftool, not by the Trezor firmware that runs on the hardware wallet itself. So the security risk is limited to developers or build machines that use that helper tool with Python 3.10+.

Security candidateci(core): upload artifacts even if build failsby Roman Zeyde · 28343a30 · Mar 3, 2026 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

ci(core): upload artifacts even if build fails

If signed secmon is missing, we can still upload unsigned prodtest/bootloader/secmon.

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

This is a small GitHub Actions CI workflow change. It tells the workflow to upload build artifacts even when a previous build step fails. This is a normal reliability/debugging improvement and does not change any firmware code, cryptography, or device behavior. There is no security issue visible in this commit.