What changed, and why it matters
This commit only updates automated test scripts to navigate a new 'Buried Settings' submenu that was apparently added to the COLDCARD user interface. It does not change any firmware code, cryptography, or security behavior. There is no security issue here.
No security action needed. Treat as routine test maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two Python test files under the testing/ directory. Test cases for ‘Home Menu XFP’ and ‘Menu Wrapping’ are adjusted to first select ‘Buried Settings’ before choosing the target setting, matching a UI menu reorganization. No production firmware or cryptographic code is touched.
Changed components
testing/test_ephemeral.pytesting/test_ux.pyInspect captured patch +5 / −0
diff --git a/testing/test_ephemeral.py b/testing/test_ephemeral.py
index ae9767d..bd21407 100644
--- a/testing/test_ephemeral.py
+++ b/testing/test_ephemeral.py
@@ -1639,6 +1639,7 @@ def test_home_menu_xfp(goto_home, pick_menu_item, press_select, cap_story, cap_m
settings_get, goto_eph_seed_menu, need_keypress):
goto_home()
pick_menu_item("Settings")
+ pick_menu_item("Buried Settings")
pick_menu_item("Home Menu XFP")
time.sleep(.1)
_, story = cap_story()
@@ -1677,6 +1678,7 @@ def test_home_menu_xfp(goto_home, pick_menu_item, press_select, cap_story, cap_m
assert m[0] == "<" + xfp2str(settings_get("xfp")) + ">"
# disable now
pick_menu_item("Settings")
+ pick_menu_item("Buried Settings")
pick_menu_item("Home Menu XFP")
time.sleep(.1)
diff --git a/testing/test_ux.py b/testing/test_ux.py
index dfcbdc4..f4b6be1 100644
--- a/testing/test_ux.py
+++ b/testing/test_ux.py
@@ -761,10 +761,12 @@ def test_menu_wrapping(goto_home, pick_menu_item, cap_story, cap_menu,
press_up()
press_select()
+ pick_menu_item("Buried Settings")
pick_menu_item("Menu Wrapping")
press_select()
pick_menu_item("Always Wrap")
time.sleep(1)
+ press_cancel() # back to Settings
press_cancel() # back to home menu
press_cancel() # at Ready To Sign
@@ -773,6 +775,7 @@ def test_menu_wrapping(goto_home, pick_menu_item, cap_story, cap_menu,
press_up()
press_select()
+ pick_menu_item("Buried Settings")
pick_menu_item("Menu Wrapping")
pick_menu_item("Default")
time.sleep(1)
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.