mirror of
https://github.com/securego/gosec.git
synced 2024-12-25 12:05:52 +00:00
Fix crash when parsing the TLS min version value (#724)
This commit is contained in:
parent
40fa36d1de
commit
55c6ceaaa6
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ func (t *insecureConfigTLS) processTLSConfVal(n *ast.KeyValueExpr, c *gosec.Cont
|
||||||
|
|
||||||
case "MinVersion":
|
case "MinVersion":
|
||||||
if d, ok := n.Value.(*ast.Ident); ok {
|
if d, ok := n.Value.(*ast.Ident); ok {
|
||||||
if vs, ok := d.Obj.Decl.(*ast.ValueSpec); ok {
|
if vs, ok := d.Obj.Decl.(*ast.ValueSpec); ok && len(vs.Values) > 0 {
|
||||||
if s, ok := vs.Values[0].(*ast.SelectorExpr); ok {
|
if s, ok := vs.Values[0].(*ast.SelectorExpr); ok {
|
||||||
x := s.X.(*ast.Ident).Name
|
x := s.X.(*ast.Ident).Name
|
||||||
sel := s.Sel.Name
|
sel := s.Sel.Name
|
||||||
|
|
Loading…
Reference in a new issue