Go security checker
Find a file
2018-03-02 23:44:51 +00:00
cmd Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
Godeps Add a tool to generate the TLS configuration form Mozilla's ciphers recommendation (#178) 2018-02-21 15:59:18 +10:00
output Excape html string for junit output. 2018-02-01 12:30:47 +08:00
rules Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
testutils Merge pull request #165 from cosmincojocar/fix_gas_warnings 2018-02-08 11:54:16 +10:00
.gitignore Use glide to manage vendored dependencies 2017-05-09 21:59:12 -07:00
.travis.yml Update the build file with more checks 2018-02-10 19:59:27 +01:00
analyzer.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
analyzer_test.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
call_list.go Use explicit packages in call lists 2018-01-05 23:05:53 +10:00
call_list_test.go Use explicit packages in call lists 2018-01-05 23:05:53 +10:00
config.go address review comments 2017-12-14 10:04:22 +10:00
config_test.go Major rework of codebase 2017-07-19 15:17:00 -06:00
Dockerfile Updating Dockerfile with requested changes 2017-08-09 13:00:19 -06:00
gas_suite_test.go Major rework of codebase 2017-07-19 15:17:00 -06:00
helpers.go Major rework of codebase 2017-07-19 15:17:00 -06:00
helpers_test.go actually skip tests until implementation exists 2017-12-13 16:35:28 +10:00
import_tracker.go fix hound-ci errors 2017-12-13 17:39:00 +10:00
issue.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
issue_test.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
LICENSE.txt Initial public release 2016-07-20 15:56:32 +01:00
README.md Add a tool to generate the TLS configuration form Mozilla's ciphers recommendation (#178) 2018-02-21 15:59:18 +10:00
resolve.go Major rework of codebase 2017-07-19 15:17:00 -06:00
resolve_test.go Add test cases 2017-09-16 10:12:27 +10:00
rule.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00
rule_test.go Add support for #excluding specific rules 2018-03-02 23:44:51 +00:00

GAS - Go AST Scanner

Inspects source code for security problems by scanning the Go AST.

License

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 here.

Project status

Build Status GoDoc

Gas is still in alpha and accepting feedback from early adopters. We do not consider it production ready at this time.

Install

$ go get github.com/GoASTScanner/gas/cmd/gas/...

Usage

Gas can be configured to only run a subset of rules, to exclude certain file paths, and produce reports in different formats. By default all rules will be run against the supplied input files. To recursively scan from the current directory you can supply './...' as the input argument.

Selecting rules

By default Gas will run all rules against the supplied file paths. It is however possible to select a subset of rules to run via the '-include=' flag, or to specify a set of rules to explicitly exclude using the '-exclude=' flag.

Available rules
  • G101: Look for hardcoded credentials
  • G102: Bind to all interfaces
  • G103: Audit the use of unsafe block
  • G104: Audit errors not checked
  • G105: Audit the use of math/big.Int.Exp
  • G106: Audit the use of ssh.InsecureIgnoreHostKey
  • G201: SQL query construction using format string
  • G202: SQL query construction using string concatenation
  • G203: Use of unescaped data in HTML templates
  • G204: Audit use of command execution
  • G301: Poor file permissions used when creating a directory
  • G302: Poor file permisions used with chmod
  • G303: Creating tempfile using a predictable path
  • G401: Detect the usage of DES, RC4, or MD5
  • G402: Look for bad TLS connection settings
  • G403: Ensure minimum RSA key length of 2048 bits
  • G404: Insecure random number source (rand)
  • G501: Import blacklist: crypto/md5
  • G502: Import blacklist: crypto/des
  • G503: Import blacklist: crypto/rc4
  • G504: Import blacklist: net/http/cgi
# Run a specific set of rules
$ gas -include=G101,G203,G401 ./...

# Run everything except for rule G303
$ gas -exclude=G303 ./...

Excluding files:

Gas will ignore dependencies in your vendor directory any files that are not considered build artifacts by the compiler (so test files).

Annotating code

As with all automated detection tools there will be cases of false positives. In cases where Gas reports a failure that has been manually verified as being safe it is possible to annotate the code with a '#nosec' comment.

The annotation causes Gas to stop processing any further nodes within the AST so can apply to a whole block or more granularly to a single expression.


import "md5" // #nosec


func main(){

    /* #nosec */
    if x > y {
        h := md5.New() // this will also be ignored
    }

}

In some cases you may also want to revisit places where #nosec annotations have been used. To run the scanner and ignore any #nosec annotations you can do the following:

$ gas -nosec=true ./...

Output formats

Gas currently supports text, json, csv and JUnit XML output formats. By default results will be reported to stdout, but can also be written to an output file. The output format is controlled by the '-fmt' flag, and the output file is controlled by the '-out' flag as follows:

# Write output in json format to results.json
$ gas -fmt=json -out=results.json *.go

Generate TLS rule

The configuration of TLS rule can be generated from Mozilla's TLS ciphers recommendation.

First you need to install the generator tool:

go get github.com/GoASTScanner/gas/cmd/tlsconfig/...

You can invoke now the go generate in the root of the project:

go generate ./...

This will generate the rules/tls_config.go file with will contain the current ciphers recommendation from Mozilla.