TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2673 commits in the local evidence base

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

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

Does the history explain itself?

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

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

Who is changing the project?

Public Git author strings; identities are not independently verified.

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

Published AI watches

Last scanned 8 minutes ago

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

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

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

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

build(core): propagate emulator feature from projects

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

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

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

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

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

test(core): test RLP self-encoding bytestrings

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

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

chore(core): remove sha1 from regular FW

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

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

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

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

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

refactor(crypto): change order of parameters

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

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

refactor(crypto): prefix enums

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

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

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

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

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

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

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

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

refactor(xtask): rename ProjectProfile to ProjectConfig

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

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

refactor(xtask): introduce ResolvedBuildArgs

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

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

refactor(xtask): make build args tristate

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

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

refactor(xtask): introduce build options

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

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

feat(xtask): introduce build presets

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

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

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

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

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

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

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

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

refactor(xtask): rename ResolvedBuild to ResolvedBuildFeatures

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

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

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

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

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

refactor(xtask): simplify dependencies

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

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

Explore captured commits

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

Lower-priorityci: enable build-docker.sh for T3W1by Martin Milata · 0307fdbf · Oct 6, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

ci: enable build-docker.sh for T3W1

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 adds a new hardware model code (T3W1) to the list of devices that get built automatically in GitHub's continuous integration system. It is a one-line CI configuration change with no effect on the firmware code that runs on users' devices.

Security candidatefeat(core+python): support device unlocking during THP handshakeby Roman Zeyde · 456ea7d5 · Oct 6, 2025 · 8 filesMessage 85 · StrongLow 37Details
Commit message · Roman Zeyde

feat(core+python): support device unlocking during THP handshake

Add a flag to the first THP handshake message, so the device can:

- fail the handshake if the device is locked (current behavior)
- prompt the user to enter the PIN (similar to other non-pairing flows)

NOTE: This is a backward-incompatible change, so Suite THP implementation MUST be adapted as well.

Co-authored-by: M1nd3r <petrsedlacek.km@seznam.cz>

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
access controlcryptography-sensitive pathparser or protocol path
AI analysis · Low 37/100

This commit changes how a Trezor device handles its initial secure connection (THP handshake) when the device is PIN-locked. Previously, the handshake simply failed if the device was locked. Now, the host can send a new 'try to unlock' flag in the very first handshake message. If that flag is set and the device is locked, the device shows the PIN keyboard so the user can unlock it, and then the handshake continues. If the flag is not set, the device still fails the handshake when locked, preserving the old behavior. The change is described by the vendor as backward-incompatible, meaning companion software (Suite) must be updated to match the new message format.

Lower-priorityfix: use correct PR number in changelogby Roman Zeyde · 116a7a44 · Oct 6, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

fix: use correct PR number in changelog

[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 renames two changelog fragment files so they reference the correct pull request number (5928 instead of 5922). The actual text describing the feature—allowing the device serial number to be exported—does not change. There is no code change and no security impact.

Security candidatefeat(core/eckhart): remove soc from homescreenby obrusvit · 8bb8fd1a · Oct 6, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

feat(core/eckhart): remove soc from homescreen

[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 small user-interface change for the Trezor hardware wallet's homescreen. It removes the battery percentage number (state-of-charge, or 'SoC') from the homescreen and instead shows only a battery icon. The code renames an internal mode from 'OnChargingChangeOrAttach' to 'HomescreenBar' and adjusts how the battery icon is drawn. There is no security-relevant behavior change visible in the diff.

Security candidatefix(eckhart): adjust page counter positionby Ioan Bizău · 4c4362c9 · Oct 6, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Ioan Bizău

fix(eckhart): adjust page counter position

[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 purely cosmetic UI fix for the Trezor hardware wallet's new 'Eckhart' layout. It adjusts where the page counter (for example, '1/3') is drawn on screen by giving it its own smaller padding values instead of reusing the larger padding used for instructional text. The change only affects visual spacing; it does not touch cryptography, transaction signing, backup/recovery logic, or any security-sensitive code. The large number of changed test hashes is expected because any screen-pixel change alters the recorded screenshots used for automated UI regression tests.

Lower-priorityfeat(core/eckhart): extend fuel gauge batt iconsby obrusvit · d2b60ae9 · Oct 3, 2025 · 14 filesMessage 72 · AdequateInformational 15Details
Commit message · obrusvit

feat(core/eckhart): extend fuel gauge batt icons

- a few other icons just saved in greyscale for consistency

[no changelog]

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

This commit is a user-interface polish change for the Trezor hardware wallet's battery indicator. It adds finer battery-level icons (splitting one 'mid' icon into 'mid-plus' and 'mid-minus') and adjusts the percentage thresholds at which each icon appears. It also includes automated tests to verify the new thresholds. There is no security-relevant change here.

Lower-priorityfix(core): fix BLE disableby tychovrahe · c0dd5314 · Oct 3, 2025 · 1 fileMessage 57 · ThinLow 34Details
Commit message · tychovrahe

fix(core): fix BLE disable

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

This commit fixes a bug in how the Trezor hardware wallet disables Bluetooth (BLE). Previously, when BLE was turned off, the function returned early and never updated the internal 'enabled' state flag. That could leave the system believing BLE is still on, potentially causing unexpected behavior, power drain, or confusion about whether the wireless radio is active. The fix removes the early return so the state flag is always set correctly.

Lower-priorityfix(core): do not break chunks at the end of a lineby Lukas Bielesch · 411b7e49 · Oct 3, 2025 · 3 filesMessage 62 · AdequateInformational 19Details
Commit message · Lukas Bielesch

fix(core): do not break chunks at the end of a line

- properly render trailing ellipsis

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

This commit fixes a visual text-rendering bug in the Trezor hardware wallet's user interface. Specifically, when long cryptocurrency addresses are split into small chunks for easier reading, the last chunk on a screen line was sometimes displayed incorrectly or with a missing '...' ellipsis. The fix changes how the layout code decides when a chunk is the final one and how much space to reserve for the trailing ellipsis. There is no evidence this bug could be exploited to steal funds, bypass security, or alter transaction data.

Lower-priorityfeat(python): allow exporting unit serial numberby Roman Zeyde · a7fe6b89 · Oct 3, 2025 · 5 filesMessage 57 · ThinInformational 23Details
Commit message · Roman Zeyde

feat(python): allow exporting unit serial number

[no changelog]

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

This commit adds a new Python command and library function that lets a user ask a Trezor device for its hardware serial number. The device already had a way to provide this number; the change only exposes it through the PC-side tools and adds tests. There is no obvious security bug in the code shown, though making serial numbers easier to read could slightly help someone track or fingerprint a specific device.

Security candidatefeat(core): allow exporting unit serial numberby Roman Zeyde · cb237740 · Oct 3, 2025 · 19 filesMessage 57 · ThinInformational 19Details
Commit message · Roman Zeyde

feat(core): allow exporting unit serial number

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

This commit adds a new optional feature that lets a connected computer ask a Trezor device for its hardware serial number. The device shows the request on its screen and requires the user to tap 'Allow' before sending the number. It is a deliberate product feature, not a hidden backdoor or bug, and only works on models that explicitly support it (currently the T3W1 / Trezor Safe 7 line).

Security candidatefeat(common): allow exporting unit serial numberby Roman Zeyde · aa98a40c · Oct 3, 2025 · 10 filesMessage 57 · ThinInformational 24Details
Commit message · Roman Zeyde

feat(common): allow exporting unit serial number

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

This commit adds a new device message that lets a connected computer ask a Trezor hardware wallet for its unit serial number. The change only defines the message format across several programming languages and build files; it does not include the actual firmware code that reads or returns the serial number. Because the serial number is a low-sensitivity identifier and the real behavior is not shown, the direct security risk is small, but it slightly expands what an untrusted host can learn about the device without user approval.

Lower-prioritychore(core): remove unused function in `trezor.ui.layouts.eckhart`by Roman Zeyde · 06f2af26 · Oct 3, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore(core): remove unused function in `trezor.ui.layouts.eckhart`

[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 deletes an unused Python helper function from a Trezor hardware wallet UI layout file. The function was not being called anywhere, and removing it does not change any runtime behavior or introduce any security risk.

Lower-prioritychore(core): add auto_lock_delay_battery_ms to Feature messagesby Lukas Bielesch · 3325181e · Oct 3, 2025 · 5 filesMessage 62 · AdequateInformational 15Details
Commit message · Lukas Bielesch

chore(core): add auto_lock_delay_battery_ms to Feature 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
AI analysis · Informational 15/100

This commit simply exposes a new device setting in the information message the hardware wallet reports to connected computers. It adds a field called auto_lock_delay_battery_ms to the Features message across the protocol definition and generated code for Python, Rust, and the device firmware. There is no change to security logic, no bug fix, and no behavior change beyond reporting the value.

Security candidatefeat(core/tests): device menu click testsby Lukas Bielesch · 45cc5ffb · Oct 3, 2025 · 23 filesMessage 82 · StrongInformational 20Details
Commit message · Lukas Bielesch

feat(core/tests): device menu click tests

- move keyboard shared code to common
[no changelog]

82/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides an explanatory body✓ Mentions testing or verification
Why it was queued
cryptography-sensitive pathboot or update pathauthentication path
AI analysis · Informational 20/100

This commit is almost entirely a test-suite expansion for the Trezor Safe 7 device menu. It adds automated click tests for settings like auto-lock, device label, LED, haptic feedback, brightness, backup checks, notifications, menu traversal, and device wipe. A small amount of production code changed: a new 'led' field was added to the Features protobuf message so the device can report RGB LED support, and a few UI debug-trace strings were improved to make automated testing easier. There is no obvious security vulnerability in the diff.

Lower-priorityfeat(core): update ble binaries.by kopecdav · f0927f27 · Oct 2, 2025 · 2 filesMessage 57 · ThinInformational 11Details
Commit message · kopecdav

feat(core): update ble binaries.

[no changelog]

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

This commit replaces two pre-compiled binary files used for Bluetooth Low Energy (BLE) testing on the Trezor T3W1 hardware model. The change is described as a routine update to test binaries, with no source code changes and no changelog entry. There is no information in the commit or supplied references indicating a security fix or vulnerability.

Security candidatefeat(core/eckhart): no virtual locking btn at homeby obrusvit · 29b0d472 · Oct 2, 2025 · 1 fileMessage 62 · AdequateLow 25Details
Commit message · obrusvit

feat(core/eckhart): no virtual locking btn at home

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

This commit removes a 'virtual lock button' from the Trezor hardware wallet's home screen on the Eckhart layout. Previously, holding a finger anywhere on the home screen (except the bottom action bar) for a set duration could lock the device. Now that gesture is gone. The change is described as a feature tweak, not a security fix, and no security relevance is disclosed in the commit or supplied references.

Lower-priorityrefactor(core): touch drivers' FT6x36 and FT3168 source code split. Each of them shall be developed separately. FT3168 source files derived out of FT6x36 ones. FT3168 source files are referenced from the respective build scripts of T3W1 (TS7). Board revisions A, B, C are covered. Macro TOUCH_WAKEUP_by bleska · 266ba54c · Oct 2, 2025 · 11 filesMessage 85 · StrongInformational 18Details
Commit message · bleska

refactor(core): touch drivers' FT6x36 and FT3168 source code split. Each of them shall be developed separately. FT3168 source files derived out of FT6x36 ones. FT3168 source files are referenced from the respective build scripts of T3W1 (TS7). Board revisions A, B, C are covered. Macro TOUCH_WAKEUP_WORKAROUND isn't needed anymore - removing its definition and references. T3W1 (TS7) uses LX250A2410A touch panel with FT3168 driver - removing other variants relevant for older models. Removing LX250A2410A touch panel option from ft6x36.c file as it's no longer supported by this code. Symbols "ft6x36"/"FT6x36" of macros and functions have been refactored inside FT3168 source code. Cleaning up - removing of lx250a2410a.c/h files from ft6x36 driver's location, removing ft6x36_wake_up() function as it's not longer relevant for ft6x36 driver.
[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 18/100

This commit is a code cleanup and hardware-support refactor. It splits the touch-screen driver for the FT3168 controller out of the older FT6x36 driver, updates the T3W1 device build files to use the new driver, and removes an unused wake-up workaround. There is no obvious security vulnerability introduced, but any driver refactor carries a small risk of functional regressions in touch handling on the T3W1 hardware.

Security candidatechore: bump versionsby obrusvit · e6be3c1c · Oct 2, 2025 · 13 filesMessage 40 · ThinInformational 15Details
Commit message · obrusvit

chore: bump versions

[no changelog]

40/100 · ThinMessage clarity
✓ Subject identifies a change✓ Uses a recognizable type or scope! No meaningful explanatory body
Why it was queued
signing or wallet pathboot or update path
AI analysis · Informational 15/100

This commit only increases version numbers across Trezor firmware components and translation files. There are no code changes that fix or introduce any security behavior, so it has no direct security relevance on its own.

Lower-priorityfeat(core): introduce enabling/disabling of BLE on driver levelby tychovrahe · cfb952ee · Oct 2, 2025 · 11 filesMessage 62 · AdequateInformational 23Details
Commit message · tychovrahe

feat(core): introduce enabling/disabling of BLE 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 23/100

This commit adds a new software switch that lets the device turn its Bluetooth Low Energy (BLE) radio on or off from the driver level. It is a feature addition, not a fix for an existing bug. The change introduces guards so that when BLE is disabled, the driver refuses to process incoming BLE data, send data, enter pairing, or switch the radio on. There is no evidence in the commit that this is a security patch or that it addresses a known vulnerability.

Lower-priorityrefactor(core): refactor io/ble.h documentationby tychovrahe · 90ee1ed4 · Oct 2, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · tychovrahe

refactor(core): refactor io/ble.h documentation

[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 reformats and expands the documentation comments in a single Bluetooth header file. No actual code logic, function behavior, or security properties changed.

Security candidaterefactor(core): refactor io/ble interfaceby tychovrahe · 2c2e7052 · Oct 2, 2025 · 16 filesMessage 57 · ThinLow 28Details
Commit message · tychovrahe

refactor(core): refactor io/ble interface

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

This commit is a code cleanup that rewrites how the Trezor firmware talks to its Bluetooth chip. Instead of sending one big generic 'command' packet that could describe many different actions, the code now uses a separate, specific function for each Bluetooth action (such as turn on, pair, disconnect, erase bonds). The change also tightens the security boundary between the app and the kernel by validating the pairing name and pairing code directly, rather than trusting a caller-built command structure. There is no direct evidence in the commit that this fixes an active security bug, but the old design made it easier for a caller to request unintended operations by crafting command data, and the new design removes that entire class of mistakes.

Security candidatefix(python): uncache transport when waiting for the bootloaderby Roman Zeyde · ded39508 · Oct 2, 2025 · 2 filesMessage 62 · AdequateInformational 23Details
Commit message · Roman Zeyde

fix(python): uncache transport when waiting for the 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 · Informational 23/100

This is a small bug-fix change in the Trezor Python command-line tools. It fixes a situation where the tool would keep using an old cached connection to the device while waiting for the device to reboot into bootloader mode. Now it clears that cached connection and tries to reconnect. There is no direct evidence this is a security vulnerability; it appears to be a reliability/usability fix for firmware updates.

Lower-priorityfeat(core): expose get device serial number via smcalls and syscallsby tychovrahe · e1a05f89 · Oct 1, 2025 · 10 filesMessage 62 · AdequateLow 26Details
Commit message · tychovrahe

feat(core): expose get device serial number via smcalls and 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 · Low 26/100

This commit adds a new internal interface that lets trusted and less-trusted software running on the Trezor device read the device's serial number. The code checks that the caller is allowed to write to the memory it provides, then copies the serial number there. There is no direct evidence in the commit that this is a security fix or that it introduces a vulnerability; it appears to be a feature exposing information that was already available elsewhere in firmware.

Lower-prioritychore(core): improve unit_properties module commentsby tychovrahe · 1da30b93 · Oct 1, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core): improve unit_properties module comments

[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 rewrites code comments in a header file to use a more formal documentation style. No actual program logic, function behavior, or security checks were changed. It is not a security fix and does not introduce any security issue.

Lower-prioritychore(core): rename get_device_sn functionby tychovrahe · 99d063cf · Oct 1, 2025 · 4 filesMessage 57 · ThinInformational 15Details
Commit message · tychovrahe

chore(core): rename get_device_sn function

[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 is a simple code cleanup change that renames a function from get_device_sn to unit_properties_get_sn across four files. It does not change what the function does, how it is called, or any security behavior. It is not a security fix.