mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
12436217ae
* feat: add filemanager session and crypto version detection * refactor: move copy logic into filemanager, remove fileutil dependency * fix: apply review suggestions for filemanager * feat: add Windows locked file tests, fix readFileContent with ReadFile+FileMapping fallback * fix: remove self-PID skip in findFileHandle to fix Windows CI test * fix: seek to file start before reading duplicated handle * fix: use full path matching in findFileHandle to avoid cross-app handle collision * test: enhance Windows copyLocked tests with write-then-read, large file, and normal copy scenarios * fix: check all errors in Windows tests, use bytes.Equal for large file comparison * fix: use stable path suffix matching to handle Windows short path names in CI
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package crypto
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDetectVersion(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
ciphertext []byte
|
|
want CipherVersion
|
|
}{
|
|
{"v10 prefix", []byte("v10" + "encrypted_data"), CipherV10},
|
|
{"v20 prefix", []byte("v20" + "encrypted_data"), CipherV20},
|
|
{"no prefix (DPAPI)", []byte{0x01, 0x00, 0x00, 0x00}, CipherDPAPI},
|
|
{"short input", []byte{0x01, 0x02}, CipherDPAPI},
|
|
{"empty input", []byte{}, CipherDPAPI},
|
|
{"nil input", nil, CipherDPAPI},
|
|
{"unknown prefix", []byte("xyz_data"), CipherDPAPI},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert.Equal(t, tt.want, DetectVersion(tt.ciphertext))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStripPrefix(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
ciphertext []byte
|
|
want []byte
|
|
}{
|
|
{"strips v10", []byte("v10PAYLOAD"), []byte("PAYLOAD")},
|
|
{"strips v20", []byte("v20PAYLOAD"), []byte("PAYLOAD")},
|
|
{"keeps DPAPI unchanged", []byte{0x01, 0x00, 0x00}, []byte{0x01, 0x00, 0x00}},
|
|
{"keeps short unchanged", []byte{0x01}, []byte{0x01}},
|
|
{"keeps nil unchanged", nil, nil},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert.Equal(t, tt.want, StripPrefix(tt.ciphertext))
|
|
})
|
|
}
|
|
}
|