TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

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

919security candidates311second-pass queue2658AI analyses
331commits · 30 days
560commits · 60 days
1366commits · 180 days
2647commits · 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
476Strong · 80–100
1321Adequate · 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 Zeyde575179573271
PrisionMike945994273
Andrew Kozlik712470265
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík23823173
cepetr19682196059
Ioan Bizău23076230059
M1nd3r20772207071
Lukas Bielesch846784067
Martin Milata17446174063
Analysis record

Published AI watches

Last scanned 23 minutes ago

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
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
Repository ledger

Explore captured commits

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

Lower-priorityfix(core): fix syscall set filter verifierby tychovrahe · f60f5354 · Mar 3, 2026 · 2 filesMessage 57 · ThinModerate 61Details
Commit message · tychovrahe

fix(core): fix syscall set filter verifier

[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 · Moderate 61/100

This commit fixes a security boundary check in the Trezor firmware's system-call verifier. The old code trusted a user-supplied string pointer and measured its length with strlen(), which can read beyond allowed memory if the string is malformed or malicious. The fix makes the caller provide the string length explicitly and checks exactly that many bytes. This closes a likely path for a restricted app to trick the device into reading memory it shouldn't, potentially causing a crash or leaking secrets.

Lower-priorityfix(core): limit the offset of translations_read functionby tychovrahe · a4be04fe · Mar 3, 2026 · 1 fileMessage 62 · AdequateModerate 64Details
Commit message · tychovrahe

fix(core): limit the offset of translations_read function

[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
translation-only discount
AI analysis · Moderate 64/100

This commit fixes a function that reads translated text data from the hardware wallet's flash storage. Previously, if a caller requested data starting at an offset beyond the end of the translation area, the function would calculate a negative-looking length (because unsigned arithmetic wraps around) and return a pointer to an invalid memory location. The fix checks whether the offset is too large and returns NULL instead. This could have allowed malformed or attacker-controlled data to trick the device into reading memory outside the intended translation area, potentially causing crashes or exposing unrelated flash contents.

Lower-priorityfix(core): use verifiers for translations syscallsby tychovrahe · 1811d3bb · Mar 3, 2026 · 1 fileMessage 62 · AdequateModerate 63Details
Commit message · tychovrahe

fix(core): use verifiers for translations syscalls

[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 · Moderate 63/100

This commit changes two system call handlers in Trezor's firmware so that translation-related read/write operations go through 'verified' versions of functions. The change suggests the previous unverified versions may have allowed untrusted code (apps running on the device) to access or modify translation data in unsafe ways, such as passing bad memory pointers or lengths. Without the verified wrapper, a malicious or buggy app could potentially corrupt memory or read/write data it should not. The patch is very small and does not show the verifier code itself, so we cannot confirm the exact bug or exploit path.

Lower-priorityrefactor(core): refactor option bytesby tychovrahe · 3101ccfd · Mar 3, 2026 · 6 filesMessage 57 · ThinInformational 12Details
Commit message · tychovrahe

refactor(core): refactor option bytes

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

This commit is a straightforward code cleanup: it renames functions like flash_configure_option_bytes() to option_bytes_configure() and check_oem_keys() to option_bytes_check_oem_keys(), makes several internal helpers static (visible only within one file), and changes the compile-time guard from KERNEL_MODE to SECURE_MODE. The actual logic that checks and writes the chip's security option bytes is unchanged. There is no indication this fixes a security bug or introduces a vulnerability.

Lower-prioritychore(core): enable debuglink compilation on button modelsby tychovrahe · 4c5b217e · Mar 3, 2026 · 6 filesMessage 62 · AdequateInformational 19Details
Commit message · tychovrahe

chore(core): enable debuglink compilation on button models

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

This commit changes build configuration files for several Trezor hardware wallet models so that a special debug helper file for physical buttons is included only when the 'usb_iface_debug' feature is requested. It does not change user-facing behavior in normal production builds. The change appears to be a build-system cleanup to make debug-only button code compile correctly on button-based devices, not a fix for an active security vulnerability.

Lower-priorityfeat(core): implement button event emulation on driver levelby tychovrahe · abb95498 · Mar 3, 2026 · 4 filesMessage 62 · AdequateInformational 19Details
Commit message · tychovrahe

feat(core): implement button event emulation on driver level

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

This commit adds a debug-only feature that lets software simulate physical button presses (press, release, click) on Trezor hardware wallets. It is compiled in only when the DEBUGLINK build flag is set, which is intended for development and automated testing, not production firmware. The feature could let a connected debugging host or test harness inject fake button events into the normal button-handling path.

Lower-priorityfeat(core): implement touch event emulation on driver levelby tychovrahe · 44bd6443 · Mar 3, 2026 · 4 filesMessage 62 · AdequateLow 32Details
Commit message · tychovrahe

feat(core): implement touch event emulation on driver level

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

This commit adds a debug-only feature to the Trezor hardware wallet firmware that lets developers inject fake touch-screen events (taps, swipes, clicks) into the touch driver. It is gated behind the DEBUGLINK build flag, which is used only in development/testing builds, not in production firmware shipped to users. The change itself is a feature implementation; there is no direct evidence in the commit that it fixes a security bug or that it introduces an exploitable vulnerability in production devices.

Lower-prioritychore(core): enable tsqueue build for unixby tychovrahe · 5e66dbfe · Mar 3, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · tychovrahe

chore(core): enable tsqueue build for unix

[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 adds a new internal queue component to the Unix build of the Trezor firmware. It is a build-system change with no visible security effect on its own.

Lower-prioritychore(core): mock irq_lock functionality in emulatorby tychovrahe · e12279a4 · Mar 3, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): mock irq_lock functionality in 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
AI analysis · Informational 15/100

This commit only adds stub (mock) implementations of interrupt-locking functions for the Trezor emulator build. It also fixes a typo in a comment. There is no security-relevant code change.

Lower-prioritychore(core): enable debuglink compilation on touch modelsby tychovrahe · 4a383c90 · Mar 3, 2026 · 8 filesMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): enable debuglink compilation on touch models

[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 only changes build configuration files for Trezor hardware wallets. It adds the debug touch and button source files to the compilation when a debug USB interface is requested. There is no change to runtime behavior, user-facing functionality, or security logic. It is a build-system chore.

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

Lower-priorityci: disable `ClusterFuzzLite PR fuzzing` in private forksby M1nd3r · dd66ef65 · Mar 3, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

ci: disable `ClusterFuzzLite PR fuzzing` in private forks

[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
fuzzing or regression evidencedocumentation-only discount
AI analysis · Informational 15/100

This commit changes a GitHub Actions workflow so that an automated fuzz-testing job only runs on public copies of the repository. It does not change the Trezor firmware code, device behavior, or any security-sensitive logic. The change is purely a CI configuration fix to avoid test failures in private forks that lack authentication for the fuzzing service.

Lower-priorityci: avoid running `bot-project-automation` in other repositoriesby M1nd3r · c766db9a · Mar 3, 2026 · 1 fileMessage 97 · StrongInformational 15Details
Commit message · M1nd3r

ci: avoid running `bot-project-automation` in other repositories

- Disabled jobs in `[Bot] add to GitHub project` workflow in other repositories than `trezor/trezor-firmware`.
- Merged job to avoid remove setup duplication.

[no changelog]

97/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
Why it was queued
documentation-only discount
AI analysis · Informational 15/100

This commit is a routine GitHub Actions workflow hardening change. It restricts an internal automation bot so it only runs in the official Trezor firmware repository, limits it to newly opened issues and pull requests, merges two nearly identical jobs into one, and pins a third-party action to a specific version. There is no indication this fixes an active security vulnerability or affects the Trezor device firmware or user funds.

Lower-priorityci(core): copy kernel artifacts from Docker buildby Roman Zeyde · c5abf9d3 · Mar 3, 2026 · 1 fileMessage 72 · AdequateInformational 18Details
Commit message · Roman Zeyde

ci(core): copy kernel artifacts from Docker build

Note: kernel.bin will not be fingerprinted since it is not supported by `firmware-fingerprint.py`

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

This is a small build-script change for Trezor hardware wallets. It adds the new 'kernel' build artifact to the list of files copied out of the Docker build container, and makes the script continue copying artifacts even when a fingerprinting step fails. There is no direct evidence this fixes a security vulnerability; it appears to be a CI/build hygiene improvement.

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.

AI review queuedchore(deps): bump static-alloc from 0.2.4 to 0.2.6 in /core/embed/rustby dependabot[bot] · cdee99da · Mar 2, 2026 · 2 filesMessage 93 · StrongInformational 15Details
Commit message · dependabot[bot]

chore(deps): bump static-alloc from 0.2.4 to 0.2.6 in /core/embed/rust

Bumps [static-alloc](https://github.com/197g/static-alloc) from 0.2.4 to 0.2.6.
- [Changelog](https://github.com/197g/static-alloc/blob/master/release_checks)
- [Commits](https://github.com/197g/static-alloc/commits)

---
updated-dependencies:
- dependency-name: static-alloc
dependency-version: 0.2.6
dependency-type: direct:production
...

[no changelog]

Signed-off-by: dependabot[bot] <support@github.com>

93/100 · StrongMessage clarity
✓ Specific, 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
Why it was queued
automated dependency-update discountsecond-pass: broader security terminology
AI analysis · Informational 15/100

This is a routine automated dependency update by Dependabot, bumping the Rust crate 'static-alloc' from version 0.2.4 to 0.2.6. Only two metadata files (Cargo.lock and Cargo.toml) were changed, with no code modifications. There is no indication in the commit of any security fix or vulnerability.

Lower-priorityfix(common): add java-handling to solana protobufby M1nd3r · 4252b193 · Mar 2, 2026 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · M1nd3r

fix(common): add java-handling to solana protobuf

[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 adds Java-specific metadata options to a Solana protocol-buffer definition and regenerates the matching Rust protobuf descriptor bytes. It does not change message fields, parsing logic, or any security behavior. There is no indication of a vulnerability or security fix.

Lower-priorityfix(common): minor protobuf fixesby M1nd3r · 4f477f99 · Mar 2, 2026 · 4 filesMessage 80 · StrongInformational 18Details
Commit message · M1nd3r

fix(common): minor protobuf fixes

- Set `RippleSignedTx` as `wire_out` instead of `wire_in`.
- Fixed a typo in a `RippleSignTx` message definition comment.
- Fixed two typos in `messages-monero.proto` docstrings.

[no changelog]

80/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context
AI analysis · Informational 18/100

This commit fixes a small wiring mistake in how the Trezor device labels a Ripple transaction response message. The message that sends back a signed Ripple transaction was incorrectly marked as an incoming ('wire_in') message when it should be outgoing ('wire_out'). The rest of the changes are typo fixes in comments and documentation. There is no direct evidence in the commit that this caused a real security vulnerability or exploit.

Security candidatechore(common): add protobuf style checkby M1nd3r · a570b95e · Mar 2, 2026 · 30 filesMessage 80 · StrongInformational 15Details
Commit message · M1nd3r

chore(common): add protobuf style check

- Adjusted `.clang-format` for use with Proto files.
- Added `protostyle` and `protostyle_check` to `Makefile`, included them in `style` and `style_check` respectively.
- Formatted all `.proto` files, adjusted comments.
- Added a few echo statements to `Makefile` rules.

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

This commit is purely a code-style cleanup. It adds a protobuf formatter check to the project's build tooling and reformats all .proto definition files. There are no functional changes to the firmware, no protocol changes, and no security fixes or vulnerabilities introduced.

AI review queuedci: auto-assign PR to its authorby M1nd3r · 6b63f387 · Mar 2, 2026 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · M1nd3r

ci: auto-assign PR to its author

[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 or wallet pathdocumentation-only discountsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit adds a GitHub Actions workflow that automatically assigns a newly opened pull request to the person who created it. It is a repository-management convenience bot with no connection to product security, cryptography, wallet operations, or firmware behavior.

Lower-prioritychore(core): add VENDOR_FW_TYPE_CA to vendor_fw_type_tby M1nd3r · bb493c61 · Mar 2, 2026 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · M1nd3r

chore(core): add VENDOR_FW_TYPE_CA to vendor_fw_type_t

[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 simply adds a new named label, VENDOR_FW_TYPE_CA, to a list of firmware types in a header file. It does not change any executable code, logic, or security behavior. It is a routine code-maintenance change with no security relevance visible in the diff.

Lower-priorityfix(python/trezorctl): default to advanced recovery for <24 words on legacyby Roman Zeyde · eb56a645 · Mar 2, 2026 · 2 filesMessage 62 · AdequateInformational 21Details
Commit message · Roman Zeyde

fix(python/trezorctl): default to advanced recovery for <24 words on legacy

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

This commit changes the Trezor command-line tool so that when a user restores a wallet with fewer than 24 words on older (legacy) Trezor devices, it automatically uses the 'advanced/matrix' recovery method instead of the default 'scrambled words' method. The scrambled method is disabled for shorter mnemonics on legacy firmware, so without this change the recovery command could fail or behave unexpectedly. It is a usability/compatibility fix rather than a fix for a vulnerability that lets an attacker steal funds.