The CodeQL extractor and libraries for Go.
Перейти к файлу
Sauyon Lee db4efd6124
Add support for extracting go.mod files
2020-03-04 06:26:42 -08:00
.github/workflows Add Action for testing using the CodeQL CLI 2020-02-19 12:23:03 -08:00
build Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
change-notes Mention cookbook queries in 1.24 changenotes 2020-02-17 14:38:46 +00:00
codeql-tools Adapt Go tests to `codeql test` 2019-12-06 18:27:47 +01:00
extractor Add support for extracting go.mod files 2020-03-04 06:26:42 -08:00
ql Add support for extracting go.mod files 2020-03-04 06:26:42 -08:00
templates/project Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
tools Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
upgrades Add support for extracting go.mod files 2020-03-04 06:26:42 -08:00
vendor Add go mod dependency 2020-03-04 06:21:18 -08:00
.codeqlmanifest.json Use codeql for testing and add binary cross compilation support 2020-01-17 14:05:26 -08:00
.gitattributes .gitattributes: Use -text instead of binary 2020-02-27 00:23:56 -08:00
.gitignore Use codeql for testing and add binary cross compilation support 2020-01-17 14:05:26 -08:00
.lgtm.yml Update .lgtm.yml to classify examples. 2019-12-02 12:04:28 +00:00
CODE_OF_CONDUCT.md Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
CONTRIBUTING.md Move guidelines into `ql` folder. 2020-03-02 09:23:06 +00:00
COPYRIGHT Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
LICENSE Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
Makefile Makefile: make testdb target phony 2020-03-04 03:27:11 -08:00
README.md Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
SECURITY.md Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
alert_weighting.properties Go analysis support for CodeQL. 2019-11-08 12:16:26 +00:00
codeql-extractor.yml Teach extractor about CodeQL environment variables. 2020-01-15 14:01:30 +00:00
go.mod Add go mod dependency 2020-03-04 06:21:18 -08:00
go.sum Add go mod dependency 2020-03-04 06:21:18 -08:00

README.md

Go analysis support for CodeQL

This open-source repository contains the extractor, CodeQL libraries, and queries that power Go support in LGTM, CodeQL, and other Semmle products.

It contains two major components:

  • an extractor, itself written in Go, that parses Go source code and converts it into a database that can be queried using CodeQL.
  • static analysis libraries and queries written in QL that can be used to analyze such a database to find coding mistakes or security vulnerabilities.

The goal of this project is to provide comprehensive static analysis support for Go in CodeQL.

Installation

Simply clone this repository. There are no external dependencies.

If you want to use the CodeQL extension for Visual Studio Code, import this repository into your VS Code workspace.

Usage

To analyze a Go codebase, either use the CodeQL command-line interface to create a database yourself, or download a pre-built database from LGTM.com. You can then run any of the queries contained in this repository either on the command line or using the VS Code extension.

Note that the lgtm.com branch of this repository corresponds to the version of the queries that is currently deployed on LGTM.com. The master branch may contain changes that have not been deployed yet, so you may need to upgrade databases downloaded from LGTM.com before running queries on them.

Contributions

Contributions are welcome! Please see our contribution guidelines and our code of conduct for details on how to participate in our community.

Licensing

The code in this repository is licensed under the MIT license.

Resources