TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

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

921security candidates311second-pass queue2660AI analyses
321commits · 30 days
548commits · 60 days
1354commits · 180 days
2638commits · 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
478Strong · 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 Zeyde577181575272
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 56 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-priorityfeat(core): disable stack protector in syscall stubsby cepetr · b2782fbf · Nov 13, 2025 · 1 fileMessage 62 · AdequateLow 26Details
Commit message · cepetr

feat(core): disable stack protector in syscall stubs

[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 changes a low-level firmware file that handles system calls on Trezor hardware wallets. It disables the compiler's stack protector (a safety feature that helps detect certain memory corruption bugs) specifically in the 'syscall stubs' code. The commit message frames this as a feature and does not explain why the protector is being disabled or claim any security benefit. On its own, disabling a security mitigation is a security signal, but the diff is too small to determine whether this introduces a real vulnerability or is a necessary workaround for a technical constraint.

Lower-priorityfix(core): fix event polling for multiple appletsby cepetr · 94f357eb · Nov 13, 2025 · 3 filesMessage 62 · AdequateLow 45Details
Commit message · cepetr

fix(core): fix event polling for multiple applets

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

This commit fixes two low-level operating-system bugs in Trezor's embedded firmware. First, it corrects how the kernel waits for hardware events (button presses, USB packets, etc.) when more than one mini-program ('applet') is running. Previously, the kernel stored direct pointers to each waiting task's event masks, which could create race conditions or incorrect results when multiple tasks polled at the same time; now it keeps private copies and only writes the result back when the task actually wakes up. Second, it fixes a bookkeeping bug where new system task IDs were never marked as used, which could eventually hand out the same ID twice. It also makes sure the memory-protection unit (MPU) is switched to the correct applet before a task starts running or is woken up. The commit is tagged '[no changelog]' and gives no security context, so while the bugs are real, there is no direct evidence they are exploitable for theft of funds or secrets.

Lower-priorityfeat(core): improve applet mpu reconfigby cepetr · 06518461 · Nov 13, 2025 · 2 filesMessage 57 · ThinLow 41Details
Commit message · cepetr

feat(core): improve applet mpu reconfig

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

This commit reworks how the Trezor Core firmware configures the memory protection unit (MPU) when switching to small helper programs called applets. It adds a dedicated thread-local storage (TLS) region for applets and fixes a bug where region 4 was being configured from the wrong layout field (code2 vs data2). The changes are framed by the developer as an improvement, not a security fix, and no external security references are provided.

Security candidatefeat(core): introduce coreapp TLS sectionby cepetr · b8d5b8cc · Nov 13, 2025 · 10 filesMessage 57 · ThinLow 27Details
Commit message · cepetr

feat(core): introduce coreapp TLS section

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

This commit adds a new 'thread-local storage' (TLS) memory section for Trezor's coreapp on newer hardware models. It changes how the device saves and restores small, per-task memory areas when switching between tasks. The change is a feature implementation, not a fix for a known security bug. There is no evidence in the commit or supplied references that this addresses an active vulnerability or was disclosed as security-relevant.

Security candidaterefactor(core): improve applet interfaceby cepetr · 54e319e2 · Nov 13, 2025 · 4 filesMessage 57 · ThinLow 28Details
Commit message · cepetr

refactor(core): improve applet 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
cryptography-sensitive path
AI analysis · Low 28/100

This commit is a small internal cleanup of how the Trezor firmware's kernel talks to applets (isolated mini-programs). It removes a direct pointer to the applet's header from the applet structure and instead reads that header from the start of the applet's code area when needed. The change is described as a refactor with no changelog. There is no direct evidence in the commit that this fixes a security vulnerability, but it does reduce the chance that a stale or manipulated header pointer could be used.

Security candidaterefactor(core): remove coreapp specific logic from appletsby cepetr · 3f383a6f · Nov 13, 2025 · 8 filesMessage 62 · AdequateInformational 11Details
Commit message · cepetr

refactor(core): remove coreapp specific logic from applets

[no changelog]

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

This commit is a code cleanup that moves coreapp-specific logic out of the generic applet code into a new dedicated coreapp module. It does not appear to fix or introduce a security vulnerability; it is a structural refactor to make the applet abstraction more generic and prepare for future extension applets.

Security candidatefix(core): relocate const globals to .rodataby cepetr · 5226cb5e · Nov 13, 2025 · 3 filesMessage 57 · ThinInformational 15Details
Commit message · cepetr

fix(core): relocate const globals to .rodata

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

This commit marks several fixed data objects as read-only constants so the compiler can place them in flash memory (.rodata) instead of writable RAM. This is a hardening change: it prevents accidental or malicious code from modifying values like the device model name, USB product strings, firmware revision, and the base32 alphabet. There is no direct evidence in the commit that an actual exploit exists; it is a defensive memory-layout fix.

Lower-priorityci: crowdin pull translations fixby obrusvit · 8ace18c2 · Nov 12, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · obrusvit

ci: crowdin pull translations fix

[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 is a one-line fix in an automated GitHub workflow that pulls translations from Crowdin. The change adds 'uv run' before the 'make' command so the build environment finds the correct Python tooling. There is no indication this affects device firmware, user funds, secrets, or security.

Lower-priorityci: fix crowdin push split commandby obrusvit · 45dbd02d · Nov 12, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · obrusvit

ci: fix crowdin push split command

[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 is a routine fix to a GitHub Actions workflow that pushes translation source files to Crowdin. It renames the job, adjusts how the environment is set up, and corrects the secret name used for the Crowdin API token. There is no security-relevant change.

Lower-priorityci: crowdin pull translations and make a PRby obrusvit · c65bd6e8 · Nov 12, 2025 · 1 fileMessage 80 · StrongInformational 15Details
Commit message · obrusvit

ci: crowdin pull translations and make a PR

- Github Actions workflow to pull translation files from Crowdin, merge
them into lang jsons
- manually triggered

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

This commit adds a manually-triggered GitHub Actions workflow that downloads translated text files from the Crowdin service, merges them into the project's language files, and opens a pull request. It does not change any firmware code, wallet logic, or cryptographic handling. There is no indication this introduces a security vulnerability.

Security candidatefeat(common,core,python,tests): add `tron.get_address` support.by Jun Luo · 590d3e98 · Nov 12, 2025 · 36 filesMessage 72 · AdequateInformational 18Details
Commit message · Jun Luo

feat(common,core,python,tests): add `tron.get_address` support.

[no changelog]

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

This commit adds support for retrieving Tron cryptocurrency addresses on Trezor hardware wallets. It is a feature addition that extends existing address-derivation infrastructure to a new blockchain. There is no indication in the commit that it fixes a security bug or introduces a vulnerability.

Security candidatefix(tron): update tron to use sessionby PrisionMike · 0468fa14 · Nov 12, 2025 · 15 filesMessage 80 · StrongInformational 17Details
Commit message · PrisionMike

fix(tron): update tron to use session

- Minor code fixes to old PR by overcat
- Only build Tron for debug builds
- Updated message index
- Updated text fixtures
[no changelog]

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

This commit updates the Tron coin support in Trezor firmware to use the newer 'session' API and changes the Tron message type numbers. It also removes unused Tron transaction-signing message definitions and limits Tron support to debug builds only. There is no direct evidence in the commit of a security vulnerability being fixed; it appears to be a maintenance and integration cleanup change.

Lower-prioritychore(core): remove Bolt-specific strings from ENby obrusvit · adacf4f6 · Nov 11, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

chore(core): remove Bolt-specific strings from EN

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

This commit is a routine cleanup of on-screen text for the Trezor hardware wallet. It removes English text strings that are only used by the older 'Bolt' user-interface layout, leaving those strings empty for newer layouts (Caesar, Delizia, Eckhart) where they are not displayed. There is no change to security logic, cryptography, or how the device protects funds.

Lower-priorityfix(core): fix power manager rtc event scheduling.by kopecdav · 84e5f271 · Nov 10, 2025 · 3 filesMessage 62 · AdequateLow 28Details
Commit message · kopecdav

fix(core): fix power manager rtc event scheduling.

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

This commit fixes how the Trezor hardware wallet schedules its automatic deep-sleep (hibernate) timer on STM32U5 devices. It replaces a simpler one-shot RTC timer with a new RTC scheduler that tracks event IDs, and it now properly cancels pending hibernate events when the device wakes up. The change appears to be a bug-fix for power management reliability rather than a security patch, but a mis-scheduled hibernate event could theoretically affect device availability or battery life.

Lower-priorityfeat(core): Add optiga suspend/resume functions + refactor the optiga initialization routines.by kopecdav · c5925fee · Nov 10, 2025 · 14 filesMessage 62 · AdequateLow 33Details
Commit message · kopecdav

feat(core): Add optiga suspend/resume functions + refactor the optiga initialization routines.

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

This commit refactors how the Trezor hardware wallet talks to its built-in Infineon OPTIGA security chip. It splits the old 'init/deinit' routines into smaller steps (power up/down, open/close channel) and adds new suspend/resume logic. The goal appears to be reducing wear on the OPTIGA chip by avoiding full power cycles when the chip's internal security-event counter (SEC) is high. There is no direct evidence in the commit that this fixes a known exploitable vulnerability, but it changes sensitive secure-element lifecycle code and introduces new secure-monitor call interfaces that could affect device security if misused.

Lower-priorityfeat(core): Update suspend routine to keep optiga powered up until SEC counter clears.by kopecdav · 3c3d97fe · Nov 10, 2025 · 1 fileMessage 62 · AdequateLow 44Details
Commit message · kopecdav

feat(core): Update suspend routine to keep optiga powered up until SEC counter clears.

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

This commit changes how the Trezor hardware wallet's low-power suspend/resume routine handles the Optiga security chip. Previously, the device fully shut down and later re-initialized Optiga during suspend and resume. Now it keeps Optiga powered and uses new suspend/resume helpers, with the suspend step moved out of secure mode so it can access the real-time-clock scheduler while waiting for an internal security counter to clear. The change is framed as a feature/refactor, but it touches security-critical hardware state and could affect secure-key availability or side-channel behavior if the new helpers are not equivalent to the old init/deinit cycle.

Lower-priorityfix(core): fix optiga dependencies.by kopecdav · 7b25fa4d · Nov 10, 2025 · 3 filesMessage 57 · ThinInformational 11Details
Commit message · kopecdav

fix(core): fix optiga dependencies.

[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 is a straightforward build fix that changes which internal header files three source files include when the Optiga security chip support is enabled. It replaces references to configuration and transport headers with a single initialization header. There is no indication in the commit that this fixes a security vulnerability or changes runtime behavior in a security-relevant way.

Lower-priorityfeat(core): Introduce rtc event scheduler.by kopecdav · f1108d94 · Nov 10, 2025 · 6 filesMessage 57 · ThinInformational 13Details
Commit message · kopecdav

feat(core): Introduce rtc event scheduler.

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

This commit refactors the real-time clock (RTC) wakeup system in Trezor's embedded firmware so that multiple timed wakeup events can be queued and scheduled instead of only one at a time. It is a feature addition ("Introduce rtc event scheduler") with no changelog entry. The change is mostly architectural: it moves single-wakeup logic into a small scheduler and changes the timer API from a relative number of seconds to an absolute RTC timestamp. There is no direct evidence in the commit that this fixes a security vulnerability, and the vendor does not describe it as security-relevant.

Lower-prioritybuild(core): fix emulator build on macOSby Martin Milata · d1fdcf57 · Nov 10, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

build(core): fix emulator build on macOS

[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 fixes the Trezor emulator build on macOS. It replaces Linux-only socket flags (SOCK_NONBLOCK and MSG_DONTWAIT) with portable equivalents that work on both Linux and macOS. The socket is still set to non-blocking mode using fcntl, and the send/receive calls now rely on that non-blocking state instead of per-call flags. There is no security-relevant change.

Lower-priorityfeat(core/embed): do not reestablish session for the same keyby Ondřej Vejpustek · 9eeb61b7 · Nov 10, 2025 · 1 fileMessage 62 · AdequateLow 26Details
Commit message · Ondřej Vejpustek

feat(core/embed): do not reestablish session for the same key

[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 small optimization to the Tropic secure-element integration in Trezor firmware: if a secure session is already active for the same pairing key, the code now skips re-establishing it. The change is defensive in nature and appears aimed at avoiding redundant session setup, not at fixing a known vulnerability. There is no direct evidence in the commit that this resolves an exploitable security flaw.

Lower-priorityfix(prodtest): establish session when reading fido keyby Ondřej Vejpustek · 7b29bc62 · Nov 10, 2025 · 2 filesMessage 62 · AdequateLow 29Details
Commit message · Ondřej Vejpustek

fix(prodtest): establish session when reading fido key

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 a production-test command used inside Trezor's factory tooling. The command for reading a FIDO security key was failing because it tried to read the key without first starting a secure session with the Tropic chip. The patch adds the missing session-start step before reading the key. It is a bug fix in internal manufacturing diagnostics, not a user-facing wallet security flaw.

Lower-prioritystyle(prodtest): remove obsolete commentby Ondřej Vejpustek · 16ad3aec · Nov 10, 2025 · 1 fileMessage 45 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

style(prodtest): remove obsolete comment

[no changelog]

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
AI analysis · Informational 15/100

This commit only removes an old TODO comment from a production-test source file. No code behavior changes, no bug fix, and no security relevance is present in the diff or commit message.

Lower-priorityrefactor(core/embed): refactor and improve tropic session establishingby Ondřej Vejpustek · 1ba78726 · Nov 10, 2025 · 5 filesMessage 62 · AdequateLow 33Details
Commit message · Ondřej Vejpustek

refactor(core/embed): refactor and improve tropic session establishing

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

This commit refactors how the Trezor firmware's production-test code establishes secure sessions with the Tropic secure chip. It replaces scattered, manually-managed key-loading and session-start code with a single internal helper, `tropic_custom_session_start()`, and adds a way to invalidate an existing session before starting a new handshake. The change is described by the vendor as a refactor and improvement, not as a security fix. The diff does not show an obvious exploitable vulnerability, but it does remove several direct `memzero()` calls that cleared private key buffers in production-test routines; that cleanup is now handled inside the new helper. Because the commit touches sensitive pairing-key handling and session state, it has defensive-security relevance, but there is no disclosed incident or CVE.

Security candidatefix(crypto): fix empty array warningby Ondřej Vejpustek · 8ea41b3c · Nov 10, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

fix(crypto): fix empty array warning

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

This commit changes a function parameter declaration from an empty array syntax to a pointer syntax in the Noise protocol cryptography code. It is purely a coding-style/compiler-warning fix with no functional change to the program's behavior or security.

AI review queuedrefator(core): refactor tropic certificate cacheby Ondřej Vejpustek · 2f857bf6 · Nov 10, 2025 · 3 filesMessage 45 · ThinInformational 15Details
Commit message · Ondřej Vejpustek

refator(core): refactor tropic certificate cache

45/100 · ThinMessage clarity
✓ Descriptive subject✓ Names a concrete action or component! No meaningful explanatory body
Why it was queued
second-pass: broader security terminology
AI analysis · Informational 15/100

This commit is a code cleanup: it moves the Tropic chip certificate cache out of the production-test command file and into the shared Tropic driver, then exposes two helper functions so other code can fetch the cached public key and certificate chain. There is no visible security bug being fixed or introduced in the diff itself.