mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
Fix the configuration parsing for hardcoded credentials
Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch>
This commit is contained in:
parent
c58f3563d3
commit
802292c54f
1 changed files with 18 additions and 10 deletions
|
@ -105,28 +105,36 @@ func NewHardcodedCredentials(id string, conf gosec.Config) (gosec.Rule, []ast.No
|
||||||
ignoreEntropy := false
|
ignoreEntropy := false
|
||||||
var truncateString = 16
|
var truncateString = 16
|
||||||
if val, ok := conf["G101"]; ok {
|
if val, ok := conf["G101"]; ok {
|
||||||
conf := val.(map[string]string)
|
conf := val.(map[string]interface{})
|
||||||
if configPattern, ok := conf["pattern"]; ok {
|
if configPattern, ok := conf["pattern"]; ok {
|
||||||
pattern = configPattern
|
if cfgPattern, ok := configPattern.(string); ok {
|
||||||
|
pattern = cfgPattern
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if configIgnoreEntropy, ok := conf["ignore_entropy"]; ok {
|
if configIgnoreEntropy, ok := conf["ignore_entropy"]; ok {
|
||||||
if parsedBool, err := strconv.ParseBool(configIgnoreEntropy); err == nil {
|
if cfgIgnoreEntropy, ok := configIgnoreEntropy.(bool); ok {
|
||||||
ignoreEntropy = parsedBool
|
ignoreEntropy = cfgIgnoreEntropy
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if configEntropyThreshold, ok := conf["entropy_threshold"]; ok {
|
if configEntropyThreshold, ok := conf["entropy_threshold"]; ok {
|
||||||
if parsedNum, err := strconv.ParseFloat(configEntropyThreshold, 64); err == nil {
|
if cfgEntropyThreshold, ok := configEntropyThreshold.(string); ok {
|
||||||
entropyThreshold = parsedNum
|
if parsedNum, err := strconv.ParseFloat(cfgEntropyThreshold, 64); err == nil {
|
||||||
|
entropyThreshold = parsedNum
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if configCharThreshold, ok := conf["per_char_threshold"]; ok {
|
if configCharThreshold, ok := conf["per_char_threshold"]; ok {
|
||||||
if parsedNum, err := strconv.ParseFloat(configCharThreshold, 64); err == nil {
|
if cfgCharThreshold, ok := configCharThreshold.(string); ok {
|
||||||
perCharThreshold = parsedNum
|
if parsedNum, err := strconv.ParseFloat(cfgCharThreshold, 64); err == nil {
|
||||||
|
perCharThreshold = parsedNum
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if configTruncate, ok := conf["truncate"]; ok {
|
if configTruncate, ok := conf["truncate"]; ok {
|
||||||
if parsedInt, err := strconv.Atoi(configTruncate); err == nil {
|
if cfgTruncate, ok := configTruncate.(string); ok {
|
||||||
truncateString = parsedInt
|
if parsedInt, err := strconv.Atoi(cfgTruncate); err == nil {
|
||||||
|
truncateString = parsedInt
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue