You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2023. It is now read-only.
Gammaray is a software that helps developers to look for vulnerabilities on their Node.js
applications. Its pluggable infrastructure makes very easy to write an integration with
several vulnerabilities databases.
Get It
In order to get it just run:
$> go get github.com/nearform/gammaray
Once it is finished, you should have the gammaray binary in your GOPATH/bin folder.
Build it
$> make
Usage
Gammaray comes as a single binary so you only need to run it passing your project as argument:
$> gammaray <path-to-your-node-app>
Gammaray supports the following flags:
-path - path to directory where package.json is located
-image - docker image to scan
-log-level - valid values: panic | fatal | error | warn | info | debug. The default is info.
-ignore-list - path to JSON file with CVE/CWE ignore array
The sample file is shown below:
[
{"CVE": "CWE-400", "description": "We ignore this because it does not affect us"},
{"CVE": "CVE-2015-8851", "description": "We ignore this because it does not affect us"}
]
And that is all, all the vulnerabilities that affect your packages will be displayed.
Contributing
As a developer
Clone the repository, then start hacking, PRs are welcome !
$> mkdir -p $GOPATH/src/github.com/nearform/$> cd $GOPATH/src/github.com/nearform/$> git clone https://github.com/nearform/gammaray.git$> cd gammaray$> make dev-install