mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05:00
104 lines
3.2 KiB
Go
104 lines
3.2 KiB
Go
// MIT License
|
|
|
|
// Copyright (c) 2019 Zachary Rice
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package detect
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/Infisical/infisical-merge/detect/report"
|
|
)
|
|
|
|
func IsNew(finding report.Finding, redact uint, baseline []report.Finding) bool {
|
|
// Explicitly testing each property as it gives significantly better performance in comparison to cmp.Equal(). Drawback is that
|
|
// the code requires maintenance if/when the Finding struct changes
|
|
for _, b := range baseline {
|
|
if finding.RuleID == b.RuleID &&
|
|
finding.Description == b.Description &&
|
|
finding.StartLine == b.StartLine &&
|
|
finding.EndLine == b.EndLine &&
|
|
finding.StartColumn == b.StartColumn &&
|
|
finding.EndColumn == b.EndColumn &&
|
|
(redact > 0 || (finding.Match == b.Match && finding.Secret == b.Secret)) &&
|
|
finding.File == b.File &&
|
|
finding.Commit == b.Commit &&
|
|
finding.Author == b.Author &&
|
|
finding.Email == b.Email &&
|
|
finding.Date == b.Date &&
|
|
finding.Message == b.Message &&
|
|
// Omit checking finding.Fingerprint - if the format of the fingerprint changes, the users will see unexpected behaviour
|
|
finding.Entropy == b.Entropy {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func LoadBaseline(baselinePath string) ([]report.Finding, error) {
|
|
bytes, err := os.ReadFile(baselinePath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not open %s", baselinePath)
|
|
}
|
|
|
|
var previousFindings []report.Finding
|
|
err = json.Unmarshal(bytes, &previousFindings)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("the format of the file %s is not supported", baselinePath)
|
|
}
|
|
|
|
return previousFindings, nil
|
|
}
|
|
|
|
func (d *Detector) AddBaseline(baselinePath string, source string) error {
|
|
if baselinePath != "" {
|
|
absoluteSource, err := filepath.Abs(source)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
absoluteBaseline, err := filepath.Abs(baselinePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
relativeBaseline, err := filepath.Rel(absoluteSource, absoluteBaseline)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
baseline, err := LoadBaseline(baselinePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
d.baseline = baseline
|
|
baselinePath = relativeBaseline
|
|
|
|
}
|
|
|
|
d.baselinePath = baselinePath
|
|
return nil
|
|
}
|