gosec/output/formatter.go

426 lines
10 KiB
Go
Raw Normal View History

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 output
import (
"bufio"
"bytes"
"encoding/csv"
2016-07-26 00:39:55 +01:00
"encoding/json"
2018-01-26 03:16:49 +00:00
"encoding/xml"
"fmt"
2016-10-18 06:36:35 +01:00
htmlTemplate "html/template"
2016-07-20 11:02:01 +01:00
"io"
2019-03-11 20:13:48 +00:00
"strconv"
"strings"
2016-10-18 06:36:35 +01:00
plainTemplate "text/template"
2016-07-20 11:02:01 +01:00
color "github.com/gookit/color"
"github.com/securego/gosec/v2"
"gopkg.in/yaml.v2"
2016-07-20 11:02:01 +01:00
)
// ReportFormat enumerates the output format for reported issues
2016-07-20 11:02:01 +01:00
type ReportFormat int
const (
// ReportText is the default format that writes to stdout
2016-07-20 11:02:01 +01:00
ReportText ReportFormat = iota // Plain text format
// ReportJSON set the output format to json
ReportJSON // Json format
// ReportCSV set the output format to csv
ReportCSV // CSV format
2018-01-26 03:16:49 +00:00
2018-01-27 04:14:35 +00:00
// ReportJUnitXML set the output format to junit xml
ReportJUnitXML // JUnit XML format
2019-03-12 13:22:58 +00:00
// ReportSARIF set the output format to SARIF
ReportSARIF // SARIF format
2019-03-13 00:25:11 +00:00
//SonarqubeEffortMinutes effort to fix in minutes
2019-03-12 13:22:58 +00:00
SonarqubeEffortMinutes = 5
2016-07-20 11:02:01 +01:00
)
var text = `Results:
{{range $filePath,$fileErrors := .Errors}}
Golang errors in file: [{{ $filePath }}]:
{{range $index, $error := $fileErrors}}
> [line {{$error.Line}} : column {{$error.Column}}] - {{$error.Err}}
{{end}}
{{end}}
2016-07-20 11:02:01 +01:00
{{ range $index, $issue := .Issues }}
[{{ highlight $issue.FileLocation $issue.Severity }}] - {{ $issue.RuleID }} (CWE-{{ $issue.Cwe.ID }}): {{ $issue.What }} (Confidence: {{ $issue.Confidence}}, Severity: {{ $issue.Severity }})
{{ printCode $issue }}
2016-07-20 11:02:01 +01:00
{{ end }}
{{ notice "Summary:" }}
2016-07-20 11:02:01 +01:00
Files: {{.Stats.NumFiles}}
Lines: {{.Stats.NumLines}}
Nosec: {{.Stats.NumNosec}}
Issues: {{ if eq .Stats.NumFound 0 }}
{{- success .Stats.NumFound }}
{{- else }}
{{- danger .Stats.NumFound }}
{{- end }}
2016-07-20 11:02:01 +01:00
`
2017-04-26 01:57:12 +01:00
type reportInfo struct {
Errors map[string][]gosec.Error `json:"Golang errors"`
Issues []*gosec.Issue
Stats *gosec.Metrics
2017-04-26 01:57:12 +01:00
}
2017-12-13 07:39:00 +00:00
// CreateReport generates a report based for the supplied issues and metrics given
// the specified format. The formats currently accepted are: json, yaml, csv, junit-xml, html, sonarqube, golint and text.
func CreateReport(w io.Writer, format string, enableColor bool, rootPaths []string, issues []*gosec.Issue, metrics *gosec.Metrics, errors map[string][]gosec.Error) error {
2017-04-26 01:57:12 +01:00
data := &reportInfo{
Errors: errors,
2017-04-26 01:57:12 +01:00
Issues: issues,
Stats: metrics,
}
2016-07-26 00:39:55 +01:00
var err error
2016-07-20 11:02:01 +01:00
switch format {
case "json":
2016-07-26 00:39:55 +01:00
err = reportJSON(w, data)
case "yaml":
err = reportYAML(w, data)
2016-07-26 00:39:55 +01:00
case "csv":
err = reportCSV(w, data)
2018-01-27 04:19:38 +00:00
case "junit-xml":
err = reportJUnitXML(w, data)
2016-10-18 06:36:35 +01:00
case "html":
err = reportFromHTMLTemplate(w, html, data)
2016-07-20 11:02:01 +01:00
case "text":
err = reportFromPlaintextTemplate(w, text, enableColor, data)
2019-03-11 20:13:48 +00:00
case "sonarqube":
err = reportSonarqube(rootPaths, w, data)
case "golint":
err = reportGolint(w, data)
case "sarif":
err = reportSARIFTemplate(rootPaths, w, data)
2016-07-20 11:02:01 +01:00
default:
err = reportFromPlaintextTemplate(w, text, enableColor, data)
2016-07-26 00:39:55 +01:00
}
return err
}
func reportSonarqube(rootPaths []string, w io.Writer, data *reportInfo) error {
si, err := convertToSonarIssues(rootPaths, data)
if err != nil {
return err
}
raw, err := json.MarshalIndent(si, "", "\t")
if err != nil {
return err
}
_, err = w.Write(raw)
return err
}
func convertToSonarIssues(rootPaths []string, data *reportInfo) (*sonarIssues, error) {
si := &sonarIssues{[]sonarIssue{}}
2019-03-11 20:13:48 +00:00
for _, issue := range data.Issues {
var sonarFilePath string
for _, rootPath := range rootPaths {
if strings.HasPrefix(issue.File, rootPath) {
sonarFilePath = strings.Replace(issue.File, rootPath+"/", "", 1)
}
}
if sonarFilePath == "" {
continue
}
2019-03-11 20:13:48 +00:00
lines := strings.Split(issue.Line, "-")
startLine, err := strconv.Atoi(lines[0])
if err != nil {
return si, err
}
2019-03-11 20:13:48 +00:00
endLine := startLine
if len(lines) > 1 {
endLine, err = strconv.Atoi(lines[1])
if err != nil {
return si, err
}
2019-03-11 20:13:48 +00:00
}
2019-03-11 20:13:48 +00:00
s := sonarIssue{
2019-03-11 20:16:30 +00:00
EngineID: "gosec",
RuleID: issue.RuleID,
2019-03-11 20:13:48 +00:00
PrimaryLocation: location{
Message: issue.What,
FilePath: sonarFilePath,
2019-03-11 20:13:48 +00:00
TextRange: textRange{StartLine: startLine, EndLine: endLine},
},
Type: "VULNERABILITY",
Severity: getSonarSeverity(issue.Severity.String()),
2019-03-12 13:22:58 +00:00
EffortMinutes: SonarqubeEffortMinutes,
Cwe: issue.Cwe,
2019-03-11 20:13:48 +00:00
}
2019-03-11 21:32:32 +00:00
si.SonarIssues = append(si.SonarIssues, s)
2019-03-11 20:13:48 +00:00
}
return si, nil
2019-03-11 20:13:48 +00:00
}
func convertToSarifReport(rootPaths []string, data *reportInfo) (*sarifReport, error) {
sr := buildSarifReport()
var rules []*sarifRule
var locations []*sarifLocation
var results []*sarifResult
for index, issue := range data.Issues {
rules = append(rules, buildSarifRule(issue))
location, err := buildSarifLocation(issue, rootPaths)
if err != nil {
return nil, err
}
locations = append(locations, location)
result := &sarifResult{
RuleID: fmt.Sprintf("%s (CWE-%s)", issue.RuleID, issue.Cwe.ID),
RuleIndex: index,
Level: sarifWarning,
Message: &sarifMessage{
Text: issue.What,
},
Locations: locations,
}
results = append(results, result)
}
tool := &sarifTool{
Driver: &sarifDriver{
Name: "gosec",
InformationURI: "https://github.com/securego/gosec/",
Rules: rules,
},
}
run := &sarifRun{
Tool: tool,
Results: results,
}
sr.Runs = append(sr.Runs, run)
return sr, nil
}
2017-04-26 01:57:12 +01:00
func reportJSON(w io.Writer, data *reportInfo) error {
2016-07-26 00:39:55 +01:00
raw, err := json.MarshalIndent(data, "", "\t")
if err != nil {
2019-03-13 00:23:45 +00:00
return err
2016-07-20 11:02:01 +01:00
}
2016-07-26 00:39:55 +01:00
_, err = w.Write(raw)
return err
}
func reportYAML(w io.Writer, data *reportInfo) error {
raw, err := yaml.Marshal(data)
if err != nil {
return err
}
_, err = w.Write(raw)
return err
}
2017-04-26 01:57:12 +01:00
func reportCSV(w io.Writer, data *reportInfo) error {
out := csv.NewWriter(w)
defer out.Flush()
for _, issue := range data.Issues {
err := out.Write([]string{
issue.File,
2017-10-01 01:31:39 +01:00
issue.Line,
issue.What,
issue.Severity.String(),
issue.Confidence.String(),
issue.Code,
fmt.Sprintf("CWE-%s", issue.Cwe.ID),
})
if err != nil {
return err
}
}
return nil
}
func reportGolint(w io.Writer, data *reportInfo) error {
// Output Sample:
// /tmp/main.go:11:14: [CWE-310] RSA keys should be at least 2048 bits (Rule:G403, Severity:MEDIUM, Confidence:HIGH)
for _, issue := range data.Issues {
what := issue.What
if issue.Cwe.ID != "" {
what = fmt.Sprintf("[CWE-%s] %s", issue.Cwe.ID, issue.What)
}
// issue.Line uses "start-end" format for multiple line detection.
lines := strings.Split(issue.Line, "-")
start := lines[0]
_, err := fmt.Fprintf(w, "%s:%s:%s: %s (Rule:%s, Severity:%s, Confidence:%s)\n",
issue.File,
start,
issue.Col,
what,
issue.RuleID,
issue.Severity.String(),
issue.Confidence.String(),
)
if err != nil {
return err
}
}
return nil
}
2018-01-27 04:19:38 +00:00
func reportJUnitXML(w io.Writer, data *reportInfo) error {
junitXMLStruct := createJUnitXMLStruct(data)
raw, err := xml.MarshalIndent(junitXMLStruct, "", "\t")
2018-01-26 03:16:49 +00:00
if err != nil {
2018-01-30 01:54:30 +00:00
return err
2018-01-26 03:16:49 +00:00
}
2018-01-27 04:14:35 +00:00
xmlHeader := []byte("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n")
raw = append(xmlHeader, raw...)
2018-01-26 03:16:49 +00:00
_, err = w.Write(raw)
if err != nil {
2018-01-30 01:54:30 +00:00
return err
2018-01-26 03:16:49 +00:00
}
2018-01-30 01:54:30 +00:00
return nil
2018-01-26 03:16:49 +00:00
}
func reportSARIFTemplate(rootPaths []string, w io.Writer, data *reportInfo) error {
sr, err := convertToSarifReport(rootPaths, data)
if err != nil {
return err
}
raw, err := json.MarshalIndent(sr, "", "\t")
if err != nil {
return err
}
_, err = w.Write(raw)
return err
}
func reportFromPlaintextTemplate(w io.Writer, reportTemplate string, enableColor bool, data *reportInfo) error {
t, e := plainTemplate.
New("gosec").
Funcs(plainTextFuncMap(enableColor)).
Parse(reportTemplate)
2016-10-18 06:36:35 +01:00
if e != nil {
return e
}
return t.Execute(w, data)
}
2017-04-26 01:57:12 +01:00
func reportFromHTMLTemplate(w io.Writer, reportTemplate string, data *reportInfo) error {
t, e := htmlTemplate.New("gosec").Parse(reportTemplate)
2016-07-20 11:02:01 +01:00
if e != nil {
return e
}
return t.Execute(w, data)
}
func plainTextFuncMap(enableColor bool) plainTemplate.FuncMap {
if enableColor {
return plainTemplate.FuncMap{
"highlight": highlight,
"danger": color.Danger.Render,
"notice": color.Notice.Render,
"success": color.Success.Render,
"printCode": printCodeSnippet,
}
}
// by default those functions return the given content untouched
return plainTemplate.FuncMap{
"highlight": func(t string, s gosec.Score) string {
return t
},
"danger": fmt.Sprint,
"notice": fmt.Sprint,
"success": fmt.Sprint,
"printCode": printCodeSnippet,
}
}
var (
errorTheme = color.New(color.FgLightWhite, color.BgRed)
warningTheme = color.New(color.FgBlack, color.BgYellow)
defaultTheme = color.New(color.FgWhite, color.BgBlack)
)
// highlight returns content t colored based on Score
func highlight(t string, s gosec.Score) string {
switch s {
case gosec.High:
return errorTheme.Sprint(t)
case gosec.Medium:
return warningTheme.Sprint(t)
default:
return defaultTheme.Sprint(t)
}
}
// printCodeSnippet prints the code snippet from the issue by adding a marker to the affected line
func printCodeSnippet(issue *gosec.Issue) string {
start, end := parseLine(issue.Line)
scanner := bufio.NewScanner(strings.NewReader(issue.Code))
var buf bytes.Buffer
line := start
for scanner.Scan() {
codeLine := scanner.Text()
if strings.HasPrefix(codeLine, strconv.Itoa(line)) && line <= end {
codeLine = " > " + codeLine + "\n"
line++
} else {
codeLine = " " + codeLine + "\n"
}
buf.WriteString(codeLine)
}
return buf.String()
}
// parseLine extract the start and the end line numbers from a issue line
func parseLine(line string) (int, int) {
parts := strings.Split(line, "-")
start := parts[0]
end := start
if len(parts) > 1 {
end = parts[1]
}
s, err := strconv.Atoi(start)
if err != nil {
return -1, -1
}
e, err := strconv.Atoi(end)
if err != nil {
return -1, -1
}
return s, e
}