Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.04 KB

README.md

File metadata and controls

49 lines (35 loc) · 1.04 KB

Go Goof

  1. Open a terminal and clone the repository

    git clone git@github.com:pstember/go-goof.git

and open the go-goof directory.

  1. Build the project

    go install //This will move the executable to the bin folder where it will be found to be executed
  2. Test the project

    snyk test

All-in-one to clone and run:

git clone git@github.com:pstember/go-goof.git && \
cd go-goof && \
go install && \
snyk test

Screenshots

The following screenshot demonstrates the extra value provided when scanning a project using the Snyk CLI tool

Vulnerability detection

This screenshot shows vulnerabilities and potential remediation when such remediation exist

Vulnerability detection screenshot

Installing Go

export GOPATH="${HOME}/.go"
export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin"
test -d "${GOPATH}" || mkdir "${GOPATH}"
brew install go

Don't forget to update your .bashrc or .zshrc