Eze the one stop cli for security testing
Project description
______ ______ ______ _____ _ _____
| ____| |___ / | ____| / ____| | | |_ _|
| |__ / / | |__ ______ | | | | | |
| __| / / | __| |______| | | | | | |
| |____ / /__ | |____ | |____ | |____ _| |_
|______| /_____| |______| \_____| |______| |_____|
The one stop solution for security testing in modern development
Getting Started
Eze is the one stop solution developed by RiverSafe Ltd for security testing in modern development.
Eze cli scans for vulnerable dependencies, insecure code, hardcoded secrets, and license violations across a range of languages
pip install eze-cli
eze test
Features:
- Quick setup via Dockerfile with preinstalled tools
- Auto-configures tools out the box, Supported languages: Python, Node and Java
- SAST tools for finding security anti-patterns
- SCA tools for finding vulnerable dependencies
- Secret tools for finding hardcoded passwords
- SBOM tools for generating a list of components
- License scanning for violations (aka strong copyleft usage)
- Extendable plugin architecture for adding new security tools
- Layering enterprise level reporting and auditing via the Eze Management Console (PAID service offered by RiverSafe)
Eze Usage
Just one command will run eze, and generate a configuration file ".ezerc.toml" based off the current codebase
Install
via pip
pip install eze-cli
eze --version
download exe's from releases page and put on path
eze --version
Run Scan
run all tools
cd path/to/src
eze test
just a single tool
cd path/to/src
# eze test -t <tool_name>
eze test -t semgrep
Language Support
Language | SBOM | SCA | SAST |
---|---|---|---|
Java | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Node | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Python | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
C# | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Docker | :heavy_check_mark:* | :heavy_check_mark:* | :heavy_check_mark: |
Terraform | :heavy_check_mark: | :heavy_check_mark: | |
Go | :heavy_check_mark: | ||
Ruby | :heavy_check_mark: | ||
ocaml | :heavy_check_mark: | ||
PHP | :heavy_check_mark: |
- Auto Configured = :heavy_check_mark:
- Manually Configured = :heavy_check_mark:*
future language support will be implemented according to popularity, see https://pypl.github.io/PYPL.html
Configuring Eze
Advanced Configuration: Autoconfig .ezerc.toml
When .ezerc.toml is not present, Eze will auto configure tools according to a "autoconfig.json" file, and generates a .ezerc.toml for you
The default autoconfig settings is in "eze/data/default_autoconfig.json"
Can be set to a custom file with --autoconfig
flag
eze test --autoconfig PATH
Custom Autoconfig configuration
Eze runs off a local .ezerc.toml file, when this config is not present, a sample config will be generated automatically by scanning the codebase (eze test
). You can customise it to:
- Add/remove a scanning tool
- Customise the arguments passed to a specific tool
Autoconfig JSON format
{
"_help_message": "<DEVELOPER COMMENTS>",
"license": {
"_help_message": "eze.enums.LicenseScanType value",
"license_mode": "PROPRIETARY|PERMISSIVE|OPENSOURCE|OFF"
},
"tools": {
"<tool-id>": {
"_help_message": "<DEVELOPER COMMENTS>",
"enabled_always": "true or false",
"enable_on_file": [
"<LIST OF FILE NAMES IF FOUND WILL ENABLE TOOL>"
],
"enable_on_file_ext": [
"<LIST OF FILE EXTENSIONS IF FOUND WILL ENABLE TOOL>"
],
"config": {
"<FIELD>": "<VALUE>"
}
}
},
"reporters": {
"<reporter-id>": {
"_help_message": "LISTED REPORTERS ARE ALWAYS ENABLED",
"config": {
"<FIELD>": "<VALUE>"
}
}
}
}
Advanced Configuration: .ezerc.toml
On top of the auto-configuration, you can edit your local .ezerc.toml to run custom tools with custom configuration
When a .ezerc.toml
is present, this will be used instead of the autoconfiguration settings
see list of available tools and reporters using these commands
# which tools are available in eze
eze tools list
eze tools help <TOOL>
# which reporters are available in eze
eze reporters list
eze reporters help <TOOL>
# which projects are being detected by eze
eze projects
Advanced Configuration: .ezerc.toml format
basic .ezerc.toml TOML format
https://en.wikipedia.org/wiki/TOML
# create template with "eze housekeeping create-local-config'"
# ===================================
# GLOBAL CONFIG
# ===================================
[global]
# LICENSE_CHECK
LICENSE_CHECK = "PROPRIETARY|PERMISSIVE|OPENSOURCE|OFF"
# LICENSE_ALLOWLIST, list of licenses to exempt from license checks
LICENSE_ALLOWLIST = []
# LICENSE_DENYLIST, list of licenses to always report usage as a error
LICENSE_DENYLIST = []
# ========================================
# TOOL CONFIG
# ========================================
[TOOL_1]
# Full List of Fields and Tool Help available "docker run riversafe/eze-cli tools help <TOOL_NAME>"
TOOL_CONFIG_FIELD = "TOOL_CONFIG_VALUE"
[TOOL_2]
"..." = "..."
# ========================================
# REPORT CONFIG
# ========================================
[REPORTER_1]
# Full List of Fields and Reporter Help available "docker run riversafe/eze-cli reporters help REPORTER_NAME"
REPORTER_CONFIG_FIELD = "REPORTER_CONFIG_VALUE"
[REPORTER_2]
"..." = "..."
# ========================================
# SCAN CONFIG
# ========================================
[scan]
tools = ["TOOL_1","..."]
reporters = ["REPORTER_1", "..."]
Tools and Reporters available
Updated: 2023/01/25
Opensource Tools in Eze
Type | Name | Version | License | Description |
---|---|---|---|---|
SCA | anchore-grype | 0.54.0 (docker) | Apache-2.0 | Opensource multi-language SCA and container scanner |
SBOM | anchore-syft | 0.64.0 (docker) | Apache-2.0 | Opensource multi-language and container bill of materials (SBOM) generation utility |
SCA | container-trivy | 0.35.0 (docker) | Apache-2.0 | Opensource container scanner |
SBOM | dotnet-cyclonedx | 2.3.0.0 | Apache-2.0 | Opensource utility for generating bill of materials (SBOM) in C#/dotnet projects |
SAST | kics | 1.6.6 (docker) | Apache-2.0 | Opensource Infrastructure as a Code (IaC) scanner |
SBOM | java-cyclonedx | 2.7.4 (docker) | Apache-2.0 | Opensource java bill of materials generator & open-source vulnerability detection tool |
SCA | node-npmaudit | 9.2.0 | NPM | Opensource node SCA scanner |
SAST | node-npmoutdated | 9.2.0 | NPM | Opensource tool for scanning Node.js projects and identifying outdated dependencies |
SBOM | node-cyclonedx | 3.10.6 (docker) | Apache-2.0 | Opensource node bill of materials (SBOM) generation utility |
SCA | python-outdated | 3.10.1 (docker) | Apache-2.0 | Inbuilt python outdated dependency scanner |
SAST | python-bandit | 1.7.4 (docker) | Apache-2.0 | Opensource python SAST scanner |
SBOM | python-cyclonedx | 3.10.1 (docker) | Apache-2.0 | Opensource python bill of materials (SBOM) generation utility, also runs SCA via pypi |
MISC | raw | 1.1.0 | inbuilt | Input for saved eze json reports |
SAST | semgrep | 1.2.0 (docker) | LGPL | Opensource multi language SAST scanner |
SECRET | trufflehog | 3.21.0 (docker) | GPL | Opensource secret scanner |
An updated list of tools, licenses, and sizes pre-installed in latest Eze Cli Docker image can be found using the command
eze tools list --include-version
eze tools help <tool-name>
# aka eze tools help trufflehog
Reporters in Eze
Name | Version | License | Description |
---|---|---|---|
console | 1.1.0 | inbuilt | Standard command line reporter |
json | 1.1.0 | inbuilt | JSON output file reporter |
eze | 1.1.0 | inbuilt | Eze management console reporter |
bom | 1.1.0 | inbuilt | JSON cyclonedx bill of materials reporter |
sarif | 1.1.0 | inbuilt | Sarif output file reporter |
markdown | 1.1.0 | inbuilt | Markdown output file formatter |
html | 1.1.0 | inbuilt | HTML output file formatter |
An updated list of reporters can be found using the command
eze reporters list
eze reporters help <reporter-name>
# aka eze reporters help console
Running eze via docker
Starting from version 1, eze is now primarily a local executable or python script, docker is a legacy way of running eze in an monolithic container.
For most users, executable version much faster as only need to install docker images for languages being used, rather than all language tools.
This docker image tool orchestrator is designed to be run by developers, security consultants, and ci pipelines
docker run -t -v FOLDER_TO_SCAN:/data riversafe/eze-cli test
Eze Docker Usage
Just one line, via docker will run eze, and generate a configuration file ".ezerc.toml" based off the current codebase
docker run -t -v FOLDER_TO_SCAN:/data riversafe/eze-cli test
add -t
to docker to enable terminal colours
add --debug
to docker to enable terminal colours
for sysadmin and power users wanting to build their own images, see the README-DEVELOPMENT.md
Eze Docker cli shortcuts
These commands will run a security scan against code in the current folder
CLI | Command |
---|---|
linux/mac os bash | docker run -it -v "$(pwd)":/data riversafe/eze-cli test |
windows git bash | docker run -it -v $(pwd -W):/data riversafe/eze-cli test |
windows powershell | docker run -it -v ${PWD}:/data riversafe/eze-cli test |
windows cmd | docker run -it -v %cd%:/data riversafe/eze-cli test |
Eze Docker and CI Servers: Howto detect Headless Git
Normally when a project is checked out of git, the location can be read from the .git folder.
For CI servers git is check out headlessly (with no .git) and environments are provided for git repo / build number etc, eze will read these environment variables when detecting headless git repos.
These environment variables will need to be fed to eze's docker image.
aka for ado pipeline
docker run --rm -e "BUILD_SOURCEBRANCHNAME=$BUILD_SOURCEBRANCHNAME" -e "BUILD_REPOSITORY_URI=$BUILD_REPOSITORY_URI" -e "SYSTEM_PULLREQUEST_SOURCEBRANCH=$SYSTEM_PULLREQUEST_SOURCEBRANCH" -v "$(pwd)":/data riversafe/eze-cli test
CI server | Environment Variables |
---|---|
ADO | BUILD_SOURCEBRANCH BUILD_SOURCEBRANCHNAME SYSTEM_PULLREQUEST_SOURCEBRANCH |
AWS Amplify | AWS_BRANCH |
AWS Codebuild | AWS_BRANCH |
JENKINS | GIT_LOCAL_BRANCH GIT_BRANCH |
IBMCLOUD toolchain | GIT_BRANCH |
GCP | BRANCH_NAME |
Gitlab CI | CI_COMMIT_BRANCH CI_MERGE_REQUEST_TARGET_BRANCH_NAME CI_EXTERNAL_PULL_REQUEST_TARGET_BRANCH_NAME CI_DEFAULT_BRANCH |
Github CI | GITHUB_REF |
Other Common commands
Stopping a docker image
Started a local eze scan but want to stop the scan without waiting the 30-40 seconds for the scan to complete
To immediately stop a docker image do the following
# get docker container id
$ docker stats
CONTAINER ID NAME CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS
f0bef6e0bba7 optimistic_burnell 0.01% 104.8MiB / 12.33GiB 0.83% 221MB / 4.73MB 0B / 0B 17
# docker stop container id
$ docker stop -t 0 f0bef6e0bba7
Dotnet sharing
Dotnet can be slow downloading all the artifacts it requires
When you provide a persistent .nuget/packages/ folder which will speed up scans
# example of sharing your local .nuget/packages/
docker run -t -v LOCATION:/data -v ~/.nuget/packages/:/home/ezeuser/.nuget/packages/ eze-cli test
NPM cache sharing
NPM can be slow downloading all the artifacts it requires
When you provide a persistent .npm/ folder which will speed up scans
ps your local node_modules will help as well
# example of sharing your local .npm
docker run -t -v LOCATION:/data -v ~/.npm/:/home/ezeuser/.npm/ eze-cli test
terraform cache sharing
terraform can be slow downloading all the artifacts it requires
When you provide a persistent .terraform.d/ folder which will speed up scans
ps your local node_modules will help as well
# example of sharing your local .terraform.d
docker run -t -v LOCATION:/data -v ~/.terraform.d/:/home/ezeuser/.terraform.d/ eze-cli test
Developers Documentation
To add your own tools checkout [README-DEVELOPMENT.md], this will walk you through installing eze locally for local development.
Contribute
To start contributing read [CONTRIBUTING.md]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file eze-cli-1.1.0.tar.gz
.
File metadata
- Download URL: eze-cli-1.1.0.tar.gz
- Upload date:
- Size: 120.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85a507cb9dedb6f4986397505353a0b632645e87807051f645077d0ca0d129c2 |
|
MD5 | 6cf242f269a8fed1e2d4f88ed50d7926 |
|
BLAKE2b-256 | ffdc30b9773c3ea5904697e60e964eca6fc4098ef89494363a659204025dfe68 |