TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

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

926security candidates314second-pass queue2668AI analyses
338commits · 30 days
555commits · 60 days
1347commits · 180 days
2619commits · 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
488Strong · 80–100
1332Adequate · 60–79
864Thin · 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 Zeyde582183578272
PrisionMike945994273
Andrew Kozlik742572266
obrusvit21376213164
Jakub Janků22919182
Martin Pastyřík24823173
cepetr19782196059
Ioan Bizău23076230059
M1nd3r21173208071
Lukas Bielesch846784067
Martin Milata17946175063
Analysis record

Published AI watches

Last scanned 44 minutes ago

Informational 15 AI analysisMessage 57 · Thin
TZ TrezorTrezor firmware BitcoinHardware wallets

chore: remove libtropic's pin to develop branch

This commit removes a single line from the project's Git submodule configuration. It stops pinning the libtropic submodule to the 'develop' branch, meaning the project will now use the submodule's default branch (likely 'main' or 'master')…

8290eeefby M1nd3r+0−11 file
No security note in commit
Low 37 AI analysisMessage 70 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

chore(core/embed): clear temporary buffer across Optiga/Tropic calls

This is a hardening change for the random number generator inside Trezor hardware wallets. It makes sure that temporary memory holding secret random values from the Optiga and Tropic security chips is wiped immediately after use, rather th…

Sensitive intermediate buffer not cleared promptlyPotential stale-buffer reuse across RNG source boundariesDefense-in-depth memory sanitization for secure-element entropy
01ebda93by Roman Zeyde+2−21 file
No security note in commit
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 72 · Adequate
TZ TrezorTrezor firmware BitcoinHardware wallets

test(core): drop an unused parameter of `make_payment_request()`

This commit only cleans up test code by removing an unused 'session' argument from a helper function used in automated tests. It does not change the actual Trezor firmware or any code that runs on the device, so it has no security impact f…

6dd19fdcby Roman Zeyde+0−188 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
Informational 15 AI analysisMessage 85 · Strong
TZ TrezorTrezor firmware BitcoinHardware wallets

fix(build-docker): stop swallowing pub-bin copy errors

This change fixes a build script that was ignoring copy errors. Previously, the script would silently ignore any failure when copying public binary files, which could hide real problems. Now it only skips the copy when the file genuinely d…

Build script silently ignored copy failures before this fixFix removes unconditional `|| true` error suppressionKnown-benign missing files are now explicitly skipped with a file existence check
d829eda8by Andrew Kozlik+4−11 file
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
Repository ledger

Explore captured commits

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

Lower-priorityrefactor(core): move checksum validation to `Channel`by Roman Zeyde · 614044db · Aug 18, 2025 · 4 filesMessage 85 · StrongInformational 12Details
Commit message · Roman Zeyde

refactor(core): move checksum validation to `Channel`

Also, move channel usage update to `interface_context`.

Keep the last valid reassembled message at `Reassembler.message`.
It will be used to implement `ThpChannel` read functionality.

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

This commit is a code cleanup: it moves checksum verification and channel usage tracking from one part of the Trezor firmware to another. There is no indication it fixes or introduces a security vulnerability; it is described by the vendor as a refactor with no changelog entry.

Lower-prioritytest(core): send `Cancel` only on T1B1by Roman Zeyde · 45e870bf · Aug 18, 2025 · 1 fileMessage 67 · AdequateInformational 13Details
Commit message · Roman Zeyde

test(core): send `Cancel` only on T1B1

[no changelog]

67/100 · AdequateMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Mentions testing or verification! No meaningful explanatory body
AI analysis · Informational 13/100

This is a test-only change to the Python debug-link helper library. It stops sending a 'Cancel' message to newer Trezor models during a test synchronization step, because only the older T1B1 model needs it. There is no change to device firmware or production behavior.

Lower-priorityci: increase `poetry install` timeoutby Roman Zeyde · 1831084a · Aug 18, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

ci: increase `poetry install` timeout

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

This commit simply doubles the time limit for a CI build step that installs Python dependencies using Poetry. It is a build-infrastructure tweak with no security relevance.

Lower-priorityci(core): disable `core_flash_size_compare:` jobby Roman Zeyde · ccb728b0 · Aug 18, 2025 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · Roman Zeyde

ci(core): disable `core_flash_size_compare:` job

Since currently it uses GitLab.

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

This commit simply removes a GitHub Actions CI job that compared the firmware's flash size against the master branch. It is a routine build-pipeline change with no effect on the actual Trezor firmware code, device behavior, or user security.

Lower-priorityfix(python): skip `EndSession` in case of invalidated THP channelby Roman Zeyde · 469ebc9a · Aug 18, 2025 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · Roman Zeyde

fix(python): skip `EndSession` in case of invalidated THP channel

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

This is a small fix in the Trezor Python command-line library. It stops the software from sending an 'EndSession' message when the secure communication channel (THP) has already been invalidated. Without the fix, the code might try to close a session on a broken or closed channel, which could cause an unnecessary error or warning. It does not appear to be a security vulnerability in the hardware wallet itself.

Security candidatefeat(core): show chrg icon in Eckhart BldHeaderby obrusvit · 26b3d50a · Aug 18, 2025 · 7 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

feat(core): show chrg icon in Eckhart BldHeader

[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 routine user-interface refactor for the Trezor hardware wallet's bootloader screen header. It changes how a battery/charging icon is displayed in the header and tidies up event handling for that icon across several bootloader screens. There is no indication it fixes a security bug or introduces a security-relevant change.

Lower-priorityfeat(core): extend fuel gauge UI componentby obrusvit · 02d058e5 · Aug 18, 2025 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · obrusvit

feat(core): extend fuel gauge UI component

- new mode for showing only the charging icon indication

[no changelog]

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

This commit adds a new display mode to the battery indicator on Trezor hardware wallets. It lets the device show only a charging icon (without the battery percentage number) when the device is plugged in. There is no security-relevant change here—only a user-interface tweak.

Lower-prioritychore(embed): add boardloader ec/pq and secmon public keys to T3W1 model [no changelog]by M1nd3r · f82944d4 · Aug 18, 2025 · 1 fileMessage 77 · AdequateInformational 18Details
Commit message · M1nd3r

chore(embed): add boardloader ec/pq and secmon public keys to T3W1 model
[no changelog]

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

This commit updates the public keys embedded in the firmware for the Trezor T3W1 hardware wallet model. It adds new boardloader keys and replaces temporary development security-monitor keys with what appear to be production keys. This is a routine key provisioning change, not a fix for an active security flaw. There is no evidence in the commit that this addresses a vulnerability or that any keys were leaked.

Security candidatechore(python): add ROOT signing public keys [no changelog]by M1nd3r · affeefa6 · Aug 18, 2025 · 1 fileMessage 77 · AdequateInformational 21Details
Commit message · M1nd3r

chore(python): add ROOT signing public keys
[no changelog]

77/100 · AdequateMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
signing boundaryboot or update path
AI analysis · Informational 21/100

This commit simply fills in previously empty lists of official production 'root' public keys used by Trezor's Python library to validate firmware signatures. These are public keys, not private secrets, so adding them does not by itself create a vulnerability. It is a routine configuration update replacing placeholder TODO entries with real key values.

Lower-priorityfix(core): fix irq locking in ble driverby cepetr · ec412366 · Aug 18, 2025 · 1 fileMessage 57 · ThinLow 42Details
Commit message · cepetr

fix(core): fix irq locking in ble driver

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

This is a small bug fix in the Bluetooth driver for Trezor hardware wallets. The code had a path where it returned early without unlocking interrupts, which could leave the device in a state where important background tasks stop running. This could cause the device to freeze or behave unpredictably during Bluetooth communication. There is no direct evidence this was exploited or reported as a security vulnerability.

Lower-priorityfeat(core/prodtest): implement tropic FW updateby tychovrahe · 139f5822 · Aug 18, 2025 · 7 filesMessage 57 · ThinInformational 21Details
Commit message · tychovrahe

feat(core/prodtest): implement tropic FW update

[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 new production-test command to Trezor hardware wallets that updates the firmware of an internal Tropic security chip. It also speeds up the SPI bus used to talk to that chip. The change is part of the factory/production testing tooling, not the normal user wallet firmware, and there is no claim in the commit that it fixes a security bug. The main things to watch are that the update mechanism only accepts one hard-coded silicon revision ('ABAB') and that the SPI speed increase is reliable.

Lower-priorityfix(core/prodtest): fix tropic version and chip id commands error handlingby tychovrahe · 7499713c · Aug 18, 2025 · 1 fileMessage 62 · AdequateInformational 23Details
Commit message · tychovrahe

fix(core/prodtest): fix tropic version and chip id commands error handling

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

This commit fixes error handling in a Trezor factory-production test tool for the Tropic chip. Previously, when the chip failed to return a firmware version or chip ID, the tool would print an error but then continue and print a second 'OK' response with whatever leftover data happened to be in memory. The fix makes the function return immediately after the error, and also checks the correct success/failure code and clears the buffers first. It is a bug fix in an internal manufacturing diagnostic command, not a user-facing wallet security flaw.

Lower-prioritychore(core): update libtropicby tychovrahe · c1b769af · Aug 18, 2025 · 2 filesMessage 47 · ThinInformational 6Details
Commit message · tychovrahe

chore(core): update libtropic

[no changelog]

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

This commit only changes which Git branch the build system follows for an external library called libtropic. It does not modify any actual firmware code, fix a bug, or change device behavior. There is no visible security relevance in the commit itself.

Lower-priorityfix(core): tropic fixes after libtropic updateby tychovrahe · ab3c6718 · Aug 18, 2025 · 7 filesMessage 57 · ThinInformational 17Details
Commit message · tychovrahe

fix(core): tropic fixes after libtropic update

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

This commit updates Trezor firmware to match a newer version of an external security chip library called libtropic. Most changes are mechanical: renaming internal fields (h->l2_buff to h->l2.buff), adding newly required source files to build scripts, and adjusting function signatures. One function that reads a device certificate is temporarily stubbed out with a TODO comment and always returns success without actually fetching the certificate. The commit is marked [no changelog] and does not describe itself as a security fix.

Lower-priorityfix(core): initialize tropic model device in emulatorby tychovrahe · d31832dd · Aug 18, 2025 · 1 fileMessage 62 · AdequateLow 29Details
Commit message · tychovrahe

fix(core): initialize tropic model device 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 · Low 29/100

This commit fixes how the Trezor emulator initializes its connection to a simulated Tropic secure chip. Previously, the emulator build likely failed to set up the TCP device address and port before calling the Tropic library's init function, which could cause initialization to fail or behave incorrectly in emulator builds. The change only affects emulator builds and does not alter real hardware behavior.

Security candidatefeat(core): remove `tropic.get_certificate()`by Ondřej Vejpustek · b7f2e6f5 · Aug 18, 2025 · 15 filesMessage 57 · ThinInformational 12Details
Commit message · Ondřej Vejpustek

feat(core): remove `tropic.get_certificate()`

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

This commit removes an unused function called tropic.get_certificate() from the Trezor firmware. The function was already a stub that did nothing useful: it returned success without actually fetching any certificate. The change is a cleanup, not a security fix, and does not appear to address any active vulnerability.

Lower-priorityfeat(core): implement explicit secret sector locking mechanismby tychovrahe · 89d09b6d · Aug 18, 2025 · 9 filesMessage 62 · AdequateLow 43Details
Commit message · tychovrahe

feat(core): implement explicit secret sector locking mechanism

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

This commit adds a new 'lock' feature for a special secret-storage area inside Trezor hardware wallets. It lets factory-test software explicitly lock the secret sector after writing keys, and it makes the secret-write function report failures instead of silently crashing. The change is defensive: it reduces the chance that secrets can be accidentally or maliciously modified after production. There is no direct evidence in the commit that this fixes a known active attack.

Lower-priorityfeat(core): use explicit secret locking on T3W1 and allocate space for MCU device cert in the secret sectorby tychovrahe · c5054998 · Aug 18, 2025 · 1 fileMessage 62 · AdequateInformational 22Details
Commit message · tychovrahe

feat(core): use explicit secret locking on T3W1 and allocate space for MCU device cert in the secret sector

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

This commit adjusts the on-device secret memory layout for the Trezor T3W1 hardware model. It removes unnecessary parentheses from one offset, reserves space for an MCU device certificate, and adds a dedicated 'lock slot' region. The change is preparatory: it allocates memory regions but does not by itself add or change any code that reads or writes these regions. There is no direct evidence in the commit that this fixes an active security bug, though the title mentions 'explicit secret locking' which is a security-hardening concept.

Lower-prioritychore(core/eckhart): adapt loader for click testsby Lukas Bielesch · 77005378 · Aug 18, 2025 · 1 fileMessage 72 · AdequateInformational 15Details
Commit message · Lukas Bielesch

chore(core/eckhart): adapt loader for click 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
AI analysis · Informational 15/100

This commit makes a small UI change to the Trezor hardware wallet's loading animation. When animations are disabled (likely during automated testing), the loader is forced to show 0% progress instead of its real value. This is a test/development convenience change, not a security fix.

Security candidatechore(core/eckhart): update tutorial screenby Lukas Bielesch · 093ad5f6 · Aug 18, 2025 · 19 filesMessage 72 · AdequateInformational 15Details
Commit message · Lukas Bielesch

chore(core/eckhart): update tutorial screen

- add independent screen background component
[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
signing or wallet pathboot or update path
AI analysis · Informational 15/100

This commit is a routine user-interface refresh for the Trezor Safe 7 tutorial. It replaces some tutorial text, adds new icons, and extracts the screen background drawing into a reusable component. There is no security-relevant change visible in the code.

Security candidatefix(core/bootloader): improve failed communication behaviorby tychovrahe · 7ee86377 · Aug 18, 2025 · 1 fileMessage 62 · AdequateLow 32Details
Commit message · tychovrahe

fix(core/bootloader): improve failed communication behavior

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

This bootloader patch changes how the Trezor device handles a failed USB/communication write. Previously, if sending a packet failed, the bootloader would call an 'ensure' function that effectively halted or panicked the device. Now the function returns a failure status up to the caller instead. This is a hardening improvement that makes the bootloader more resilient to communication errors, but the commit message frames it only as a behavior improvement with no changelog.

Lower-priorityfix(core): don't reuse `TASK_CLOSED` exception objectby Roman Zeyde · fb9a087d · Aug 16, 2025 · 1 fileMessage 85 · StrongLow 46Details
Commit message · Roman Zeyde

fix(core): don't reuse `TASK_CLOSED` exception object

Following https://github.com/trezor/trezor-firmware/issues/5472#issuecomment-3174382038.

[no changelog]

85/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Links an issue, advisory, or supporting reference
AI analysis · Low 46/100

This change fixes a subtle bug in the Trezor device's internal task scheduler. Previously, the same exception object was reused every time a background task was closed. Reusing the same exception object can cause unexpected behavior if code catches and re-raises it, or if the exception object is modified. The fix creates a fresh exception object each time, which is safer and more predictable. There is no direct evidence in the commit that this is exploitable as a security vulnerability.

Lower-priorityfix(core): preserve BLE peer count info during suspendby tychovrahe · 386fd4c8 · Aug 15, 2025 · 2 filesMessage 62 · AdequateInformational 19Details
Commit message · tychovrahe

fix(core): preserve BLE peer count info during suspend

[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 small firmware patch makes sure a Bluetooth Low Energy (BLE) connection counter is saved before the device goes to sleep and restored when it wakes up. Without this, the device could forget how many peers it thinks are connected after suspend/resume, which might confuse the wallet's Bluetooth state machine and lead to minor glitches or unexpected behavior. There is no direct evidence in the commit that this is an exploitable security vulnerability.

Security candidatefeat(bolt): SLIP-24 payment requestsby Ioan Bizău · b85ab377 · Aug 15, 2025 · 8 filesMessage 57 · ThinInformational 18Details
Commit message · Ioan Bizău

feat(bolt): SLIP-24 payment requests

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

This commit adds on-device user-interface support for SLIP-24 payment requests on the Trezor Model T (Bolt layout). It does not change transaction validation, cryptography, or signing logic. Instead, it wires up new confirmation screens so users can review payment-request details (provider, refund addresses, swap/trade details, fees) before signing. Existing tests that previously skipped Model T are now enabled for it, and new UI test hashes are recorded. There is no direct evidence of a security vulnerability in this patch.

Security candidatefix(python): fix BootloaderV2Image verify [no changelog]by M1nd3r · 7f5df8fb · Aug 15, 2025 · 1 fileMessage 87 · StrongModerate 57Details
Commit message · M1nd3r

fix(python): fix BootloaderV2Image verify
[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 trustboot or update path
AI analysis · Moderate 57/100

This commit fixes the verification logic for Trezor bootloader version 2 images in the Python firmware library. Previously, the code checked the elliptic-curve (EC) signature against only the Merkle root digest. The fix now hashes that digest together with the post-quantum (SLH) signature first, matching the actual signing procedure. Without this fix, a valid-looking bootloader signature could be accepted even if the SLH signature was wrong or missing, weakening the dual-signature security check.