mirror of
https://github.com/MengMengCode/CLICD.git
synced 2026-08-05 05:36:07 +08:00
96 lines
2.4 KiB
Go
96 lines
2.4 KiB
Go
package kvm
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
"crypto/rand"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"clicd/internal/config"
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
)
|
|
|
|
func TestChpasswdStdinPreservesShellMetacharacters(t *testing.T) {
|
|
password := `pa'";$(touch /tmp/pwned); echo #\\word`
|
|
got, err := chpasswdStdin("root", password)
|
|
if err != nil {
|
|
t.Fatalf("chpasswdStdin returned error: %v", err)
|
|
}
|
|
|
|
want := []byte("root:" + password + "\n")
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Fatalf("chpasswdStdin = %#v, want %#v", got, want)
|
|
}
|
|
}
|
|
|
|
func TestChpasswdStdinRejectsNewlines(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
username string
|
|
password string
|
|
}{
|
|
{name: "username newline", username: "root\nadmin", password: "safe"},
|
|
{name: "username colon", username: "root:admin", password: "safe"},
|
|
{name: "password newline", username: "root", password: "safe\nroot:evil"},
|
|
{name: "password carriage return", username: "root", password: "safe\rroot:evil"},
|
|
}
|
|
|
|
for _, tc := range tests {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
if _, err := chpasswdStdin(tc.username, tc.password); err == nil {
|
|
t.Fatal("chpasswdStdin returned nil error")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestVerifyKVMHostKeyCapturesAndRejectsMismatch(t *testing.T) {
|
|
key1 := testSSHPublicKey(t)
|
|
key2 := testSSHPublicKey(t)
|
|
|
|
saves := 0
|
|
c := &config.Container{}
|
|
save := func() error {
|
|
saves++
|
|
return nil
|
|
}
|
|
|
|
if err := verifyKVMHostKey(c, key1, save); err != nil {
|
|
t.Fatalf("first host key verification returned error: %v", err)
|
|
}
|
|
if c.SSHHostKey == "" {
|
|
t.Fatal("first host key verification did not capture fingerprint")
|
|
}
|
|
if c.SSHHostKey != sshHostKeyFingerprint(key1) {
|
|
t.Fatalf("captured fingerprint = %q, want %q", c.SSHHostKey, sshHostKeyFingerprint(key1))
|
|
}
|
|
if saves != 1 {
|
|
t.Fatalf("save count = %d, want 1", saves)
|
|
}
|
|
|
|
if err := verifyKVMHostKey(c, key1, save); err != nil {
|
|
t.Fatalf("same host key verification returned error: %v", err)
|
|
}
|
|
if saves != 1 {
|
|
t.Fatalf("save count after same key = %d, want 1", saves)
|
|
}
|
|
|
|
if err := verifyKVMHostKey(c, key2, save); err == nil {
|
|
t.Fatal("mismatched host key verification returned nil error")
|
|
}
|
|
}
|
|
|
|
func testSSHPublicKey(t *testing.T) ssh.PublicKey {
|
|
t.Helper()
|
|
_, privateKey, err := ed25519.GenerateKey(rand.Reader)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
signer, err := ssh.NewSignerFromKey(privateKey)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
return signer.PublicKey()
|
|
}
|