TZ
← All projectsTrezor

Trezor firmware

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

BitcoinHardware walletsNormal
Repository coverage

2672 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
322commits · 30 days
552commits · 60 days
1343commits · 180 days
2643commits · 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
481Strong · 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 Zeyde578182576272
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 12 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-priorityfeat(core/embed): introduce wear leveling of mac-and-destroy slotsby Ondřej Vejpustek · 8b07b544 · Dec 5, 2025 · 3 filesMessage 62 · AdequateLow 35Details
Commit message · Ondřej Vejpustek

feat(core/embed): introduce wear leveling of mac-and-destroy slots

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

This commit changes how the Trezor hardware wallet uses a special secure-chip feature called 'mac-and-destroy' slots during PIN verification. Previously, the same small set of slots was used every time the PIN was set or checked. Over many PIN changes, repeatedly erasing and rewriting those same slots could physically wear out that part of the secure chip. The patch spreads the wear across 64 slots by rotating which slot is used based on how many times the PIN has been changed. This is a reliability and physical-security improvement, not a fix for an obvious remote attack. There is no claim in the commit that this resolves a known security bug or reported vulnerability.

Security candidaterefactor(core/embed): cache tropic change pin counterby Ondřej Vejpustek · 7db3fa01 · Dec 5, 2025 · 1 fileMessage 62 · AdequateInformational 11Details
Commit message · Ondřej Vejpustek

refactor(core/embed): cache tropic change pin counter

[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
access control
AI analysis · Informational 11/100

This commit is a small internal refactor of the Trezor firmware's Tropic secure-element integration. It adds a software cache for a hardware-backed 'change PIN counter' so the firmware does not have to repeatedly ask the secure chip for the same value during PIN operations. There is no indication in the commit or title that this fixes a security bug; it appears to be a performance or timing-predictability improvement.

Lower-priorityrefactor(core): move HSI initialization to sysmonby cepetr · 35fa1ab0 · Dec 3, 2025 · 2 filesMessage 57 · ThinInformational 12Details
Commit message · cepetr

refactor(core): move HSI initialization to sysmon

[no changelog]

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

This commit is a code cleanup: it moves the initialization of the HSI (High-Speed Internal) clock from the RGB LED driver into the system startup code. The change removes a duplicate HSI startup block and stops the system from turning HSI off after switching to the external HSE clock. There is no indication this is a security fix or introduces a security vulnerability.

Lower-priorityfeat(core): improve trustzone settingsby cepetr · 592b346e · Dec 3, 2025 · 3 filesMessage 57 · ThinLow 35Details
Commit message · cepetr

feat(core): improve trustzone settings

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

This commit hardens the security boundaries inside Trezor's STM32U5 microcontroller. It moves USB power initialization into the trusted secure monitor, restricts access to sensitive system registers (power, clock, cache, watchdog, RAM config), and locks down the TrustZone configuration so it cannot be changed later. These are defensive improvements that reduce the attack surface if untrusted code runs on the device, but the commit itself does not fix a known exploitable bug.

Security candidatefix(core): fix resuming from suspend when optiga is properly paired and bootloader lockedby tychovrahe · 387db1b0 · Dec 3, 2025 · 1 fileMessage 62 · AdequateLow 41Details
Commit message · tychovrahe

fix(core): fix resuming from suspend when optiga is properly paired and bootloader locked

[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 trust
AI analysis · Low 41/100

This commit changes the order in which a Trezor hardware wallet resumes internal components after waking from a low-power suspend state. Previously, secure drivers were resumed after the Optiga security chip was resumed. The fix moves secure-driver resumption before Optiga resumption. The commit title says this fixes a problem that occurs when the Optiga chip is properly paired and the bootloader is locked. Without more context, the exact security impact is unclear, but an incorrect resume order could in principle cause a secure-driver failure or leave a security-critical component in an inconsistent state during wake-up.

Lower-prioritychore(core): update 2.9.5 release dateby Roman Zeyde · d5e3bbdf · Dec 1, 2025 · 2 filesMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

chore(core): update 2.9.5 release date

[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 only updates the release date text in two changelog files, changing 'internal release' to '28th November 2025'. It does not modify any code, firmware logic, or security behavior. There is no security issue present.

Lower-prioritychore(core): update T3W1 dev secmonby Roman Zeyde · 2fc90acf · Dec 1, 2025 · 2 filesMessage 80 · StrongInformational 12Details
Commit message · Roman Zeyde

chore(core): update T3W1 dev secmon

Also, add a comment about dev secmon build in `SConscript.kernel`.

[no changelog]

(cherry picked from commit 7d0ae5012dcbeecd038ef1bca6c6d5471ff94c5f)

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

This commit updates a pre-built binary file used only in developer builds of the Trezor T3W1 hardware wallet's secure monitor, and adds a one-line comment explaining how that developer binary is built. There is no indication this affects production firmware or fixes a security vulnerability. It appears to be a routine development-only maintenance change.

Lower-prioritydocs(core): changelog for 2.9.5by Roman Zeyde · eacc9e51 · Dec 1, 2025 · 7 filesMessage 72 · AdequateLow 43Details
Commit message · Roman Zeyde

docs(core): changelog for 2.9.5

[no changelog]

(cherry picked from commit 666497180be4e02f2e9b61767f616eefaef4ab6b)

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

This commit is just a documentation update: it adds a changelog note saying that firmware version 2.9.5 fixes a bug where the device's tamper-detection red screen of death (RSOD) was not appearing. The actual code fix is not shown in this commit, so we can only judge the issue from the one-line changelog entry. If the RSOD really failed to display when a tamper event happened, a local attacker who opened or probed the device might not trigger the expected warning, potentially hiding physical tampering. However, this commit itself changes no code, so its direct security risk is low and the severity depends entirely on the unseen fix.

Lower-prioritychore: update releases.jsonby Roman Zeyde · e7058bfd · Dec 1, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · Roman Zeyde

chore: update releases.json

[no changelog]

(cherry picked from commit 0eafab28372ff1b76b207328eea34ccba68b871d)

62/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides an explanatory body
AI analysis · Informational 15/100

This commit simply adds a new firmware version number (2.9.5) for one Trezor device model (T3W1) to a release-tracking JSON file. It is an administrative metadata update with no code changes and no apparent security relevance.

Lower-prioritychore: update embedded secmon for T3W1by Roman Zeyde · f1c721cc · Dec 1, 2025 · 1 fileMessage 72 · AdequateInformational 0Details
Commit message · Roman Zeyde

chore: update embedded secmon for T3W1

[no changelog]

(cherry picked from commit aecac16bb1261988d146079e9ab235056cee422e)

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

This commit replaces a binary firmware component called 'secmon.bin' for the T3W1 hardware model. The change is a binary blob update with no source code diff, no changelog entry, and no description of what changed inside the file. There is not enough public information to determine whether this is a security fix, a routine update, or something else.

AI review queuedchore(core): sign translationsby Roman Zeyde · d0e6cc09 · Dec 1, 2025 · 1 fileMessage 62 · AdequateInformational 18Details
Commit message · Roman Zeyde

chore(core): sign translations

[no changelog]

(cherry picked from commit 74faaff1c63a545fa5834871639ca7bf89c26ac2)

62/100 · AdequateMessage clarity
✓ Descriptive subject✓ Uses a recognizable type or scope✓ Provides an explanatory body
Why it was queued
signing or wallet pathtranslation-only discountsecond-pass: security-sensitive path
AI analysis · Informational 18/100

This commit adds a new cryptographic signature entry to a JSON file that records approved translations for the Trezor hardware wallet firmware. The signature verifies that the translation data for version 2.9.5.0 is authentic and has not been tampered with. There is no code change and no direct security vulnerability visible in the diff itself.

Lower-priorityfix(core/prodtest): fix default backlight settings.by kopecdav · 55e451cc · Dec 1, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · kopecdav

fix(core/prodtest): fix default backlight settings.

[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 adjusts the default screen brightness for the Trezor T3W1 model during production testing. It changes one number in a factory test program from 85 to 155, matching other models. There is no security issue visible in this change.

Lower-priorityfix(core/emulator): start BLE driver in enabled state by defaultby tychovrahe · d8c727ef · Dec 1, 2025 · 1 fileMessage 62 · AdequateInformational 14Details
Commit message · tychovrahe

fix(core/emulator): start BLE driver in enabled state by default

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

This commit changes the Trezor firmware emulator's fake Bluetooth driver so it starts in an 'enabled' state by default. It only affects the Unix emulator build used for software testing, not real Trezor hardware. The change moves socket setup from the 'start' routine to the 'init' routine and adds a new flag tracking whether communication is running. There is no direct evidence this fixes a security vulnerability; it appears to be an emulator behavior or test-fix change.

Security candidatechore: bump versionsby Ioan Bizău · 0bd90aa6 · Dec 1, 2025 · 9 filesMessage 55 · ThinInformational 15Details
Commit message · Ioan Bizău

chore: bump versions

core -> 2.9.7
secmon -> 1.0.6

[no changelog]

55/100 · ThinMessage clarity
✓ Subject identifies a change✓ 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 housekeeping change that only updates version numbers from 2.9.6 to 2.9.7 for the main firmware and from 1.0.5 to 1.0.6 for the security monitor, plus refreshes translation file metadata and their cryptographic signature. There are no code behavior changes, no bug fixes, and no security-related modifications visible in the diff.

Lower-priorityci(core): copy only target artifacts to Docker build output directoryby Roman Zeyde · 4e36f853 · Nov 29, 2025 · 1 fileMessage 93 · StrongInformational 17Details
Commit message · Roman Zeyde

ci(core): copy only target artifacts to Docker build output directory

It seems that copying the full `build/` directory may fail on CI:
https://github.com/trezor/trezor-firmware/actions/runs/19740721662/job/56563676033

[no changelog]

93/100 · StrongMessage clarity
✓ Specific, descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 17/100

This is a small build-script change for the Trezor hardware wallet firmware. It changes the CI build so that only the final firmware/bootloader files are copied out of the Docker container, instead of the entire build folder. The stated reason is to fix a CI failure, not to fix a security bug. There is no direct evidence in the commit that this is a security fix.

Lower-prioritybuild(core): make Docker build less verboseby Roman Zeyde · 1c857d98 · Nov 29, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Roman Zeyde

build(core): make Docker build less verbose

[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 reduces the amount of text printed during a Docker build script. It adds quieter download flags for wget/curl and removes the terminal allocation flag from the Docker run command. There is no security-relevant change.

Lower-priorityci(core): collect secmon fingerprint as wellby Roman Zeyde · 18912508 · Nov 29, 2025 · 1 fileMessage 88 · StrongInformational 15Details
Commit message · Roman Zeyde

ci(core): collect secmon fingerprint as well

In some models, secmon is not built -> `secmon.bin` will be empty [1].
Use `-s` (instead of `-f`) to skip empty `.bin` files.

[1] https://github.com/trezor/trezor-firmware/blob/9d4223c2613f0542716c45a02781bcac7e5803a2/core/SConscript.secmon#L240-L247

[no changelog]

88/100 · StrongMessage clarity
✓ Descriptive subject✓ Names a concrete action or component✓ Uses a recognizable type or scope✓ Provides detailed explanatory context✓ Links an issue, advisory, or supporting reference
AI analysis · Informational 15/100

This is a minor build-script change that adds the secure-monitor (secmon) component to the list of firmware artifacts whose fingerprints are collected during CI. It also switches the file-existence check from `-f` to `-s` so that empty placeholder files are skipped. There is no user-facing or security-relevant code change.

Security candidatefeat(core/bootloader_emu): add option to wipe firmware image on startby tychovrahe · dfbea0b0 · Nov 27, 2025 · 1 fileMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

feat(core/bootloader_emu): add option to wipe firmware image on start

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

This commit adds a new command-line option (-w) to the Trezor bootloader emulator, a software-only testing tool. When used, it erases any simulated firmware image before the emulator starts booting. It is a development/testing convenience and does not change real hardware behavior or fix a security problem.

Security candidatechore(core/bootloader): add option to disable animations in bootloaderby tychovrahe · 360e6d47 · Nov 27, 2025 · 5 filesMessage 62 · AdequateInformational 15Details
Commit message · tychovrahe

chore(core/bootloader): add option to disable animations in bootloader

[no changelog]

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

This commit adds a build-time and emulator option to turn off visual animations in the bootloader. It is a routine developer convenience change and does not fix, introduce, or change any security behavior.

Security candidatefeat(core/bootloader_emu): add option to preload firmware imageby tychovrahe · 28735118 · Nov 27, 2025 · 1 fileMessage 62 · AdequateInformational 21Details
Commit message · tychovrahe

feat(core/bootloader_emu): add option to preload firmware image

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

This commit adds a new command-line option to the Trezor bootloader emulator that lets developers pre-load a firmware image into the emulated flash memory before running tests. It is a development/testing convenience feature and does not change the real hardware bootloader or wallet behavior.

Security candidatebuild(core): support DISABLE_TROPIC for HW testsby Roman Zeyde · 08d8e016 · Nov 27, 2025 · 3 filesMessage 67 · AdequateInformational 15Details
Commit message · Roman Zeyde

build(core): support DISABLE_TROPIC for HW tests

[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
Why it was queued
boot or update path
AI analysis · Informational 15/100

This commit adds a new build option, DISABLE_TROPIC, that lets developers compile Trezor firmware test builds without the Tropic secure-element feature. It mirrors the existing DISABLE_OPTIGA flag and is blocked from production builds. There is no indication this is a security fix or vulnerability patch; it is a build-system convenience for hardware testing.

Lower-priorityfix(core): fix pm_suspend return value in case of stabilization TIMEOUT.by kopecdav · 95c3a289 · Nov 26, 2025 · 1 fileMessage 62 · AdequateInformational 23Details
Commit message · kopecdav

fix(core): fix pm_suspend return value in case of stabilization TIMEOUT.

[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 is a one-line bug fix in the Trezor hardware wallet's power manager for STM32U5 chips. When the device timed out while waiting for its power state to stabilize, the function was accidentally returning the wrong value (false) instead of the proper error code (PM_TIMEOUT). This could cause callers to misinterpret a timeout as success, potentially mishandling power-state transitions. It is a correctness fix rather than an obvious exploit, but in embedded firmware such misreporting can contribute to reliability or security issues.

Lower-priorityfix(core): explicitly disable external tamper triggerby tychovrahe · 5782cb9e · Nov 26, 2025 · 3 filesMessage 62 · AdequateLow 46Details
Commit message · tychovrahe

fix(core): explicitly disable external tamper trigger

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

This commit adds a new function that explicitly turns off an external physical tamper-detection input on Trezor's secure microcontroller after initialization. Previously, the tamper input may have been left enabled by default after tamper_init(), which could allow a physical attacker to trigger a tamper event (and potentially wipe secrets or reset the device) using an external signal. The fix ensures the external trigger is disabled unless later explicitly enabled.

Lower-prioritybuild(core): fix T3W1 build with DISABLE_OPTIGA=1by Martin Milata · 43e0ac41 · Nov 26, 2025 · 1 fileMessage 57 · ThinInformational 15Details
Commit message · Martin Milata

build(core): fix T3W1 build with DISABLE_OPTIGA=1

[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 build-system fix that moves a single function outside of a conditional compilation block. When the Optiga secure chip support was disabled (DISABLE_OPTIGA=1), the T3W1 hardware build failed because a function named secret_key_delegated_identity was accidentally placed inside the Optiga-only code section. The patch makes that function always available, which is correct because it is unrelated to Optiga. There is no security vulnerability here.

AI review queuedchore(translations): sync Crowdin translationsby obrusvit · 9ca5dab2 · Nov 26, 2025 · 7 filesMessage 57 · ThinInformational 15Details
Commit message · obrusvit

chore(translations): sync Crowdin translations

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 pathsecond-pass: security-sensitive path
AI analysis · Informational 15/100

This commit is a routine synchronization of translated user-interface text strings from the Crowdin translation platform. It updates wording in Czech, German, Spanish, French, and Portuguese translation files, refreshes the cryptographic signature that authenticates those translations, and updates the corresponding visual test snapshots. There are no code logic changes, no security fixes, and no behavior changes beyond the exact text shown on screen.