1c0896347b
Per the standing directive (dynamic discovery per credential type as each driver lands): - env.go: tag DB connection URLs by scheme (postgres/postgresql, mysql/mariadb, redis/rediss) with a user:password authority, routing DATABASE_URL/REDIS_URL/ MYSQL_URL straight to the in-place DB drivers, kept regardless of the secret-name heuristic. - aws.go: emit the driver-ready single-line blob (was the bare secret) and resolve region from env / ~/.aws/config. - ssh.go: content-based key detection (not just id_*) + ~/.ssh/config IdentityFile parsing. - tea.go: new scanner mapping Gitea `tea` CLI config to a driver-ready PAT blob. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
137 lines
3.4 KiB
Go
137 lines
3.4 KiB
Go
package discover
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"math"
|
|
"net/url"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"incredigo/internal/vault"
|
|
)
|
|
|
|
func init() { Register(&envScanner{}) }
|
|
|
|
// envScanner reads .env files in the current working directory. It keeps only
|
|
// values that look secret-ish: the key name matches a sensitive pattern OR the
|
|
// value has high Shannon entropy. This avoids hoovering up PORT=8080 etc.
|
|
type envScanner struct{}
|
|
|
|
func (e *envScanner) Name() string { return "env" }
|
|
|
|
func (e *envScanner) files() []string {
|
|
matches, _ := filepath.Glob(".env")
|
|
more, _ := filepath.Glob(".env.*")
|
|
return append(matches, more...)
|
|
}
|
|
|
|
func (e *envScanner) Available() bool { return len(e.files()) > 0 }
|
|
|
|
var sensitiveHints = []string{
|
|
"secret", "token", "passwd", "password", "apikey", "api_key",
|
|
"private", "key", "credential", "auth", "access",
|
|
}
|
|
|
|
func (e *envScanner) Scan(ctx context.Context, v *vault.Vault) ([]Credential, error) {
|
|
var creds []Credential
|
|
for _, p := range e.files() {
|
|
f, err := os.Open(p) // read-only
|
|
if err != nil {
|
|
return creds, err
|
|
}
|
|
fi, _ := f.Stat()
|
|
sc := bufio.NewScanner(f)
|
|
for sc.Scan() {
|
|
line := strings.TrimSpace(sc.Text())
|
|
if line == "" || strings.HasPrefix(line, "#") {
|
|
continue
|
|
}
|
|
line = strings.TrimPrefix(line, "export ")
|
|
k, val, ok := splitKV(line)
|
|
if !ok || val == "" {
|
|
continue
|
|
}
|
|
val = strings.Trim(val, `"'`)
|
|
// A connection-string value (DATABASE_URL, REDIS_URL, …) is tagged with
|
|
// the rotation driver's Source so it becomes driver-ready, and is kept
|
|
// regardless of the secret-ish heuristic: a weak/empty DB password is
|
|
// exactly the kind of leak we must not miss.
|
|
source, kind := e.Name(), Kind(KindToken)
|
|
if dbSrc := dbSourceForURL(val); dbSrc != "" {
|
|
source, kind = dbSrc, KindPassword
|
|
} else if !looksSecret(k, val) {
|
|
continue
|
|
}
|
|
creds = append(creds, Credential{
|
|
Source: source,
|
|
Kind: kind,
|
|
Identity: filepath.Base(p) + " / " + k,
|
|
Location: p,
|
|
Modified: fi.ModTime(),
|
|
Secret: v.Store([]byte(val)),
|
|
})
|
|
}
|
|
f.Close()
|
|
if err := sc.Err(); err != nil {
|
|
return creds, err
|
|
}
|
|
}
|
|
return creds, nil
|
|
}
|
|
|
|
// dbSourceForURL maps a value that is a database connection URL to the rotation
|
|
// driver Source that can rotate it ("postgres"/"mysql"/"redis"), or "" if the value
|
|
// is not a recognised DB URL. It requires a user:password authority so a bare
|
|
// "redis://localhost" (nothing to rotate) is not mis-tagged.
|
|
func dbSourceForURL(val string) string {
|
|
u, err := url.Parse(val)
|
|
if err != nil || u.User == nil {
|
|
return ""
|
|
}
|
|
if _, hasPw := u.User.Password(); !hasPw && u.User.Username() == "" {
|
|
return ""
|
|
}
|
|
switch strings.ToLower(u.Scheme) {
|
|
case "postgres", "postgresql":
|
|
return "postgres"
|
|
case "mysql", "mariadb":
|
|
return "mysql"
|
|
case "redis", "rediss":
|
|
return "redis"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func looksSecret(key, val string) bool {
|
|
lk := strings.ToLower(key)
|
|
for _, h := range sensitiveHints {
|
|
if strings.Contains(lk, h) {
|
|
return true
|
|
}
|
|
}
|
|
// Fallback: long, high-entropy values are probably secrets.
|
|
return len(val) >= 16 && shannonEntropy(val) >= 3.5
|
|
}
|
|
|
|
func shannonEntropy(s string) float64 {
|
|
if s == "" {
|
|
return 0
|
|
}
|
|
var freq [256]float64
|
|
for i := 0; i < len(s); i++ {
|
|
freq[s[i]]++
|
|
}
|
|
n := float64(len(s))
|
|
var h float64
|
|
for _, c := range freq {
|
|
if c == 0 {
|
|
continue
|
|
}
|
|
p := c / n
|
|
h -= p * math.Log2(p)
|
|
}
|
|
return h
|
|
}
|