| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- package main
- import (
- _ "fmt"
- "github.com/nbutton23/zxcvbn-go"
- "os/exec"
- "strings"
- )
- // checkDiff operates on a single diff between to chronological commits
- func checkDiff(commit1 string, commit2 string) []string {
- var leakPrs bool
- var leaks []string
- _, seen := cache[commit1+commit2]
- if seen {
- return []string{}
- }
- out, err := exec.Command("git", "diff", commit1, commit2).Output()
- if err != nil {
- return []string{}
- }
- cache[commit1+commit2] = true
- lines := checkRegex(string(out))
- if len(lines) == 0 {
- return []string{}
- }
- for _, line := range lines {
- leakPrs = checkEntropy(line)
- if leakPrs {
- leaks = append(leaks, line)
- }
- }
- return leaks
- }
- // check each line of a diff and see if there are any potential secrets
- // [1] https://people.eecs.berkeley.edu/~rohanpadhye/files/key_leaks-msr15.pdf
- func checkRegex(diff string) []string {
- var match string
- var results []string
- lines := strings.Split(diff, "\n")
- for _, line := range lines {
- // doubtful a leak would be on a line > 120 characters
- if len(line) == 0 || len(line) > 80 {
- continue
- }
- for _, re := range regexes {
- match = re.FindString(line)
- if len(match) == 0 {
- continue
- }
- results = append(results, line)
- }
- }
- return results
- }
- // checkEntropy determines whether target contains enough
- // entropy for a hash
- // TODO remove stop words:
- // setting(s), config(s), property(s), etc
- func checkEntropy(target string) bool {
- index := assignRegex.FindStringIndex(target)
- if len(index) == 0 {
- return false
- }
- // TODO check for stop words here
- target = strings.Trim(target[index[1]:len(target)], " ")
- if len(target) > 70 {
- return false
- }
- // entropy := shannonEntropy(target)
- entropy := zxcvbn.PasswordStrength(target, nil).Entropy
- // tune this/make option
- if entropy > 70 {
- return true
- }
- return false
- }
|