aqua-reports

module
v0.0.0-...-c7f552b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 21, 2020 License: AGPL-3.0

README

Aqua-Reports

Build Status Go Report Card

Table of Contents

Abstract

Aqua Reports is a basic API server that provides reports for the Aqua Security Cloud Native Security Platform (CSP). Aqua Reports does this by pulling information directly from the Aqua CSP API.

Aqua Reports is compatible with Aqua Cloud Native Security Platform 4.5+

Features

  • Executive Overview
    • Containers (Running, Unregistered, With Criticals, With Highs, With No Vulnerabilities)
    • Images (Total, With Criticals, With Highs, With Mediums, With Lows, With No Vulnerabilities)
    • Vulnerabilites (Total, Criticals, Highs, Mediums, Lows)
    • Enforcers (Count)
      • Each Enforcer (Name, Hostname, Status, Mode)
  • Image Report
    • Risk (Assurance and Compliance)
    • Vulnerabilities (CVEs)
      • By Resource
      • By Layer
    • Malware Detection
    • Sensitive Data Detection

Installation

From Source

mkdir -p $GOPATH/src/github.com/BryanKMorrow
cd $GOPATH/src/github.com/BryanKMorrow
git clone https://github.com/BryanKMorrow/aqua-reports
cd aqua-reports/cmd/aqua-reports
export GO111MODULE=on
go install

Quick Start

Basic

Start the web server.

aqua-reports --mode cli --url http://<url to aqua console> --user <api user> --password <api user password> --port <port for webserver>

Docker

Pull and run the image.

Set the required environment variables.

export AQUA_URL=http://<url to aqua console>   (note: just the base url)
export AQUA_USER=<api user>
export AQUA_PASSWORD=<api user password>
export AQUA_REPORTS_PORT=<port for webserver>
docker pull bkmorrow/aqua-reports:latest
docker run --rm --name aqua-reports -v /tmp/reports:/go/src/github.com/BryanKMorrow/aqua-reports/reports -p 8000:8000 --env AQUA_URL=https://aquasec.example.com --env AQUA_USER=api --env AQUA_PASSWORD=password --env AQUA_REPORTS_PORT=8000 bkmorrow/aqua-reports:latest 

Examples

To view the images you access the following directory on the container for a list of reports: http://aqua-reports-container:8000/reports

Executive Overview

curl https://aqua-reports-container:8000/api/v1/reports/overview

All Images

curl https://aqua-reports-container:8000/api/v1/reports/all

Stream All Images

If your browser (Chrome) supports streaming, you can stream the report creation and follow the progress.

curl https://aqua-reports-container:8000/api/v1/reports/streams/all

One Image

This will have three parameters, {registry}/{image}/{tag}. The registry references the logical name assigned to the registry in Aqua.

curl https://aqua-reports-container:8000/api/v1/reports/Docker%20Hub/centos/7

List of Images

curl -d '[{"image": "postgres","tag": "9.5","registry": "Docker Hub"},{"image": "alpine","tag": "3.7","registry": "Docker Hub"}]' -H "Content-Type: application/json" -X POST https://aqua-reports-container/api/v1/reports/images

License

This repository is available under the GNU Affero General Public License v3.0

Author

Bryan Morrow (BryanKMorrow)

Troubleshooting and Support

For support and questions please contact us at - [email protected].

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL