The busybox skeleton had no /etc/shadow, so Settings/Security's root password check (grep root: /etc/shadow, mkpasswd -m md5 with the same salt) rejected the documented default password every time; the flow that covers it could only record the rejection. The guest now carries /etc/passwd, /etc/shadow (the overlay's root line, md5-crypt of the default password with salt wardenrs, verified equal to openssl passwd -1) and /etc/group. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01N3G6m9Aw5RyVY4ZowtKzEj
10 lines
340 B
Plaintext
10 lines
340 B
Plaintext
root:x:0:0:root:/root:/bin/sh
|
|
daemon:x:1:1:daemon:/usr/sbin:/bin/false
|
|
bin:x:2:2:bin:/bin:/bin/false
|
|
sys:x:3:3:sys:/dev:/bin/false
|
|
sync:x:4:100:sync:/bin:/bin/sync
|
|
mail:x:8:8:mail:/var/spool/mail:/bin/false
|
|
www-data:x:33:33:www-data:/var/www:/bin/false
|
|
operator:x:37:37:Operator:/var:/bin/false
|
|
nobody:x:65534:65534:nobody:/home:/bin/false
|