Skip to content

bethdevopsbunny/tvd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tvd - tenable vulnerability diff

tenable vulnerability diff is a pipeline utility leveraging tenable api to check you haven't introduced new vulnerabilities into your deployment.

190847683-b2d78322-f1fa-45c5-a5b2-00e36ea789d2

authentication

authentication is handled by storing a tenable api key in an environment variable TENABLE_API_KEY

export TENABLE_API_KEY='accessKey=accesskey;secretKey=secretkey'

how to generate api key

arguments

run

tvd run [flags]

flags short hand type description default mandatory
--help ------ ------ help for this command ------ ------
--scan-name -s string target scan you wish to diff ------ yes
--critical -c bool if set to false will omit critical results true no
--high -h bool if set to false will omit high results true no
--medium -m bool if set to false will omit medium results true no
--low -l bool if set to false will omit low results true no
--exit-with-error -e bool returns errorcode 1 if increase to vulnerabilities false no
--top -t int clamp the number of vulnerabilities
returned in NewVulnerabilities
30 no
--verbose -v int Displays Logging 0 no
flags short hand type description default mandatory
--no-scan -n bool runs the diff without triggering a new scan false no

ci example

version: 2.1
jobs:
  launch_tvd:
    docker:
      - image: cimg/go:1.19.1
    steps:

      - checkout

      - run:
          name: "tvd download"
          command: |
            sudo wget https://github.com/bethdevopsbunny/tvd/releases/download/v0.1/tvd.linux -O /usr/local/bin/tvd
            sudo chmod +x /usr/local/bin/tvd

      - run:
          name: "tvd run"
          command: |
           tvd run --scan-name << pipeline.scan-name >> --no-scan=true --verbose=1 --exit-with-error=true | jq  

workflows:
  version: 2
  build:
    jobs:
      - launch_tvd

About

tenable vulnerability diff - a pipeline utility leveraging tenable api to check you haven't introduced new vulnerabilities into your deployment.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages