| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package detect
- import (
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func TestDecode(t *testing.T) {
- tests := []struct {
- chunk string
- expected string
- name string
- }{
- {
- name: "only b64 chunk",
- chunk: `bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q=`,
- expected: `longer-encoded-secret-test`,
- },
- {
- name: "mixed content",
- chunk: `token: bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q=`,
- expected: `token: longer-encoded-secret-test`,
- },
- {
- name: "no chunk",
- chunk: ``,
- expected: ``,
- },
- {
- name: "env var (looks like all b64 decodable but has `=` in the middle)",
- chunk: `some-encoded-secret=dGVzdC1zZWNyZXQtdmFsdWU=`,
- expected: `some-encoded-secret=test-secret-value`,
- },
- {
- name: "has longer b64 inside",
- chunk: `some-encoded-secret="bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q="`,
- expected: `some-encoded-secret="longer-encoded-secret-test"`,
- },
- {
- name: "many possible i := 0substrings",
- chunk: `Many substrings in this slack message could be base64 decoded
- but only dGhpcyBlbmNhcHN1bGF0ZWQgc2VjcmV0 should be decoded.`,
- expected: `Many substrings in this slack message could be base64 decoded
- but only this encapsulated secret should be decoded.`,
- },
- {
- name: "b64-url-safe: only b64 chunk",
- chunk: `bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q`,
- expected: `longer-encoded-secret-test`,
- },
- {
- name: "b64-url-safe: mixed content",
- chunk: `token: bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q`,
- expected: `token: longer-encoded-secret-test`,
- },
- {
- name: "b64-url-safe: env var (looks like all b64 decodable but has `=` in the middle)",
- chunk: `some-encoded-secret=dGVzdC1zZWNyZXQtdmFsdWU=`,
- expected: `some-encoded-secret=test-secret-value`,
- },
- {
- name: "b64-url-safe: has longer b64 inside",
- chunk: `some-encoded-secret="bG9uZ2VyLWVuY29kZWQtc2VjcmV0LXRlc3Q"`,
- expected: `some-encoded-secret="longer-encoded-secret-test"`,
- },
- {
- name: "b64-url-safe: hyphen url b64",
- chunk: `dHJ1ZmZsZWhvZz4-ZmluZHMtc2VjcmV0cw`,
- expected: `trufflehog>>finds-secrets`,
- },
- {
- name: "b64-url-safe: underscore url b64",
- chunk: `YjY0dXJsc2FmZS10ZXN0LXNlY3JldC11bmRlcnNjb3Jlcz8_`,
- expected: `b64urlsafe-test-secret-underscores??`,
- },
- {
- name: "invalid base64 string",
- chunk: `a3d3fa7c2bb99e469ba55e5834ce79ee4853a8a3`,
- expected: `a3d3fa7c2bb99e469ba55e5834ce79ee4853a8a3`,
- },
- }
- decoder := NewDecoder()
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- decoded, _ := decoder.decode(tt.chunk, []EncodedSegment{})
- assert.Equal(t, tt.expected, decoded)
- })
- }
- }
|