rw ssh keys

main
jebba 2022-02-04 17:15:31 -07:00
parent 3293a80588
commit 6975c074bb
1 changed files with 18 additions and 0 deletions

View File

@ -112,6 +112,24 @@ from="10.0.0.0/8,172.16.0.0/12,192.168.0.0/16" ssh-rsa AAAAB3NzaC1yc2EAAAADAQABA
```
Other keys of note. The `/data` dir is read-write, but `/etc` is read-only.
So it looks like it is doing an overlay with `rw` data from here, for
example with the SSH keys:
```
root@tici:~# ls -l /data/etc/ssh/
total 32
-rw------- 1 root root 1385 Feb 4 23:52 ssh_host_dsa_key
-rw-r--r-- 1 root root 599 Feb 4 23:52 ssh_host_dsa_key.pub
-rw------- 1 root root 505 Feb 4 23:52 ssh_host_ecdsa_key
-rw-r--r-- 1 root root 171 Feb 4 23:52 ssh_host_ecdsa_key.pub
-rw------- 1 root root 399 Feb 4 23:52 ssh_host_ed25519_key
-rw-r--r-- 1 root root 91 Feb 4 23:52 ssh_host_ed25519_key.pub
-rw------- 1 root root 2590 Feb 4 23:52 ssh_host_rsa_key
-rw-r--r-- 1 root root 563 Feb 4 23:52 ssh_host_rsa_key.pub
```
Another way to do this would be to hijack DNS on your own wifi to intercept
the Comma Three's connection to github, then redirect the connection to
your own server. It depends if it barfs on the SSL or not.