2016-07-20 11:02:01 +01:00
|
|
|
// (c) Copyright 2016 Hewlett Packard Enterprise Development LP
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go/ast"
|
|
|
|
"regexp"
|
2016-07-27 14:59:10 +01:00
|
|
|
|
2018-07-19 17:42:25 +01:00
|
|
|
"github.com/securego/gosec"
|
2016-07-20 11:02:01 +01:00
|
|
|
)
|
|
|
|
|
2017-12-13 12:35:47 +00:00
|
|
|
type sqlStatement struct {
|
2018-07-19 17:42:25 +01:00
|
|
|
gosec.MetaData
|
2017-10-05 17:24:29 +01:00
|
|
|
|
|
|
|
// Contains a list of patterns which must all match for the rule to match.
|
|
|
|
patterns []*regexp.Regexp
|
|
|
|
}
|
|
|
|
|
2018-03-12 22:57:10 +00:00
|
|
|
func (s *sqlStatement) ID() string {
|
|
|
|
return s.MetaData.ID
|
2017-10-05 22:32:03 +01:00
|
|
|
}
|
|
|
|
|
2017-10-05 17:24:29 +01:00
|
|
|
// See if the string matches the patterns for the statement.
|
2018-03-12 22:57:10 +00:00
|
|
|
func (s *sqlStatement) MatchPatterns(str string) bool {
|
2017-10-05 17:24:29 +01:00
|
|
|
for _, pattern := range s.patterns {
|
|
|
|
if !pattern.MatchString(str) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
|
2017-12-13 12:35:47 +00:00
|
|
|
type sqlStrConcat struct {
|
|
|
|
sqlStatement
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
|
2018-03-12 22:57:10 +00:00
|
|
|
func (s *sqlStrConcat) ID() string {
|
|
|
|
return s.MetaData.ID
|
2017-10-05 22:32:03 +01:00
|
|
|
}
|
|
|
|
|
2016-11-03 00:12:23 +00:00
|
|
|
// see if we can figure out what it is
|
2018-09-28 08:46:59 +01:00
|
|
|
func (s *sqlStrConcat) checkObject(n *ast.Ident, c *gosec.Context) bool {
|
2016-07-27 14:59:10 +01:00
|
|
|
if n.Obj != nil {
|
2016-11-03 00:12:23 +00:00
|
|
|
return n.Obj.Kind != ast.Var && n.Obj.Kind != ast.Fun
|
2016-07-27 14:59:10 +01:00
|
|
|
}
|
2018-09-28 08:46:59 +01:00
|
|
|
|
|
|
|
// Try to resolve unresolved identifiers using other files in same package
|
|
|
|
for _, file := range c.PkgFiles {
|
|
|
|
if node, ok := file.Scope.Objects[n.String()]; ok {
|
|
|
|
return node.Kind != ast.Var && node.Kind != ast.Fun
|
|
|
|
}
|
|
|
|
}
|
2016-07-27 14:59:10 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-07-20 11:02:01 +01:00
|
|
|
// Look for "SELECT * FROM table WHERE " + " ' OR 1=1"
|
2018-07-19 17:42:25 +01:00
|
|
|
func (s *sqlStrConcat) Match(n ast.Node, c *gosec.Context) (*gosec.Issue, error) {
|
2016-07-27 14:59:10 +01:00
|
|
|
if node, ok := n.(*ast.BinaryExpr); ok {
|
|
|
|
if start, ok := node.X.(*ast.BasicLit); ok {
|
2018-07-19 17:42:25 +01:00
|
|
|
if str, e := gosec.GetString(start); e == nil {
|
2018-01-22 18:45:07 +00:00
|
|
|
if !s.MatchPatterns(str) {
|
2017-10-05 17:24:29 +01:00
|
|
|
return nil, nil
|
|
|
|
}
|
2016-07-27 14:59:10 +01:00
|
|
|
if _, ok := node.Y.(*ast.BasicLit); ok {
|
|
|
|
return nil, nil // string cat OK
|
|
|
|
}
|
2018-09-28 08:46:59 +01:00
|
|
|
if second, ok := node.Y.(*ast.Ident); ok && s.checkObject(second, c) {
|
2016-07-27 14:59:10 +01:00
|
|
|
return nil, nil
|
|
|
|
}
|
2018-07-19 17:42:25 +01:00
|
|
|
return gosec.NewIssue(c, n, s.ID(), s.What, s.Severity, s.Confidence), nil
|
2016-07-27 14:59:10 +01:00
|
|
|
}
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-12-13 12:35:47 +00:00
|
|
|
// NewSQLStrConcat looks for cases where we are building SQL strings via concatenation
|
2018-07-19 17:42:25 +01:00
|
|
|
func NewSQLStrConcat(id string, conf gosec.Config) (gosec.Rule, []ast.Node) {
|
2018-01-22 18:45:07 +00:00
|
|
|
return &sqlStrConcat{
|
|
|
|
sqlStatement: sqlStatement{
|
2017-10-05 17:24:29 +01:00
|
|
|
patterns: []*regexp.Regexp{
|
|
|
|
regexp.MustCompile(`(?)(SELECT|DELETE|INSERT|UPDATE|INTO|FROM|WHERE) `),
|
|
|
|
},
|
2018-07-19 17:42:25 +01:00
|
|
|
MetaData: gosec.MetaData{
|
2017-10-05 22:32:03 +01:00
|
|
|
ID: id,
|
2018-07-19 17:42:25 +01:00
|
|
|
Severity: gosec.Medium,
|
|
|
|
Confidence: gosec.High,
|
2016-07-20 11:02:01 +01:00
|
|
|
What: "SQL string concatenation",
|
|
|
|
},
|
|
|
|
},
|
2016-11-13 20:55:31 +00:00
|
|
|
}, []ast.Node{(*ast.BinaryExpr)(nil)}
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
|
2017-12-13 12:35:47 +00:00
|
|
|
type sqlStrFormat struct {
|
|
|
|
sqlStatement
|
2018-09-25 08:40:05 +01:00
|
|
|
calls gosec.CallList
|
|
|
|
noIssue gosec.CallList
|
|
|
|
noIssueQuoted gosec.CallList
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Looks for "fmt.Sprintf("SELECT * FROM foo where '%s', userInput)"
|
2018-07-19 17:42:25 +01:00
|
|
|
func (s *sqlStrFormat) Match(n ast.Node, c *gosec.Context) (*gosec.Issue, error) {
|
2017-07-19 22:17:00 +01:00
|
|
|
|
2018-08-21 08:31:38 +01:00
|
|
|
// argIndex changes the function argument which gets matched to the regex
|
|
|
|
argIndex := 0
|
|
|
|
|
2017-07-19 22:17:00 +01:00
|
|
|
// TODO(gm) improve confidence if database/sql is being used
|
2018-09-25 08:40:05 +01:00
|
|
|
if node := s.calls.ContainsCallExpr(n, c, false); node != nil {
|
2018-08-21 08:31:38 +01:00
|
|
|
// if the function is fmt.Fprintf, search for SQL statement in Args[1] instead
|
|
|
|
if sel, ok := node.Fun.(*ast.SelectorExpr); ok {
|
|
|
|
if sel.Sel.Name == "Fprintf" {
|
|
|
|
// if os.Stderr or os.Stdout is in Arg[0], mark as no issue
|
|
|
|
if arg, ok := node.Args[0].(*ast.SelectorExpr); ok {
|
|
|
|
if ident, ok := arg.X.(*ast.Ident); ok {
|
|
|
|
if s.noIssue.Contains(ident.Name, arg.Sel.Name) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// the function is Fprintf so set argIndex = 1
|
|
|
|
argIndex = 1
|
|
|
|
}
|
|
|
|
}
|
2018-09-25 08:40:05 +01:00
|
|
|
|
2018-11-05 08:28:47 +00:00
|
|
|
// no formatter
|
|
|
|
if len(node.Args) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2018-09-25 08:40:05 +01:00
|
|
|
var formatter string
|
|
|
|
|
2018-08-19 18:57:36 +01:00
|
|
|
// concats callexpr arg strings together if needed before regex evaluation
|
2018-08-21 08:31:38 +01:00
|
|
|
if argExpr, ok := node.Args[argIndex].(*ast.BinaryExpr); ok {
|
2018-08-19 18:57:36 +01:00
|
|
|
if fullStr, ok := gosec.ConcatString(argExpr); ok {
|
2018-09-25 08:40:05 +01:00
|
|
|
formatter = fullStr
|
2018-08-19 18:57:36 +01:00
|
|
|
}
|
2018-09-25 08:40:05 +01:00
|
|
|
} else if arg, e := gosec.GetString(node.Args[argIndex]); e == nil {
|
|
|
|
formatter = arg
|
|
|
|
}
|
|
|
|
if len(formatter) <= 0 {
|
|
|
|
return nil, nil
|
2018-08-19 18:57:36 +01:00
|
|
|
}
|
|
|
|
|
2018-09-25 08:40:05 +01:00
|
|
|
// If all formatter args are quoted, then the SQL construction is safe
|
|
|
|
if argIndex+1 < len(node.Args) {
|
|
|
|
allQuoted := true
|
|
|
|
for _, arg := range node.Args[argIndex+1:] {
|
|
|
|
if n := s.noIssueQuoted.ContainsCallExpr(arg, c, true); n == nil {
|
|
|
|
allQuoted = false
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if allQuoted {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if s.MatchPatterns(formatter) {
|
2018-07-19 17:42:25 +01:00
|
|
|
return gosec.NewIssue(c, n, s.ID(), s.What, s.Severity, s.Confidence), nil
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2017-12-13 12:35:47 +00:00
|
|
|
// NewSQLStrFormat looks for cases where we're building SQL query strings using format strings
|
2018-07-19 17:42:25 +01:00
|
|
|
func NewSQLStrFormat(id string, conf gosec.Config) (gosec.Rule, []ast.Node) {
|
2017-12-13 12:35:47 +00:00
|
|
|
rule := &sqlStrFormat{
|
2018-09-25 08:40:05 +01:00
|
|
|
calls: gosec.NewCallList(),
|
|
|
|
noIssue: gosec.NewCallList(),
|
|
|
|
noIssueQuoted: gosec.NewCallList(),
|
2017-12-13 12:35:47 +00:00
|
|
|
sqlStatement: sqlStatement{
|
2017-10-05 17:24:29 +01:00
|
|
|
patterns: []*regexp.Regexp{
|
|
|
|
regexp.MustCompile("(?)(SELECT|DELETE|INSERT|UPDATE|INTO|FROM|WHERE) "),
|
|
|
|
regexp.MustCompile("%[^bdoxXfFp]"),
|
|
|
|
},
|
2018-07-19 17:42:25 +01:00
|
|
|
MetaData: gosec.MetaData{
|
2017-10-05 22:32:03 +01:00
|
|
|
ID: id,
|
2018-07-19 17:42:25 +01:00
|
|
|
Severity: gosec.Medium,
|
|
|
|
Confidence: gosec.High,
|
2016-07-20 11:02:01 +01:00
|
|
|
What: "SQL string formatting",
|
|
|
|
},
|
|
|
|
},
|
2017-07-19 22:17:00 +01:00
|
|
|
}
|
2018-08-21 08:31:38 +01:00
|
|
|
rule.calls.AddAll("fmt", "Sprint", "Sprintf", "Sprintln", "Fprintf")
|
|
|
|
rule.noIssue.AddAll("os", "Stdout", "Stderr")
|
2018-09-25 08:40:05 +01:00
|
|
|
rule.noIssueQuoted.Add("github.com/lib/pq", "QuoteIdentifier")
|
2017-07-19 22:17:00 +01:00
|
|
|
return rule, []ast.Node{(*ast.CallExpr)(nil)}
|
2016-07-20 11:02:01 +01:00
|
|
|
}
|