Skip to content

gabanz/flan-orb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flan Scan Orb

CircleCI Build Status CircleCI Orb Version GitHub License CircleCI Community

This is Flan Scan orb, which is a shareable package of CircleCI configuration you can use in your CI/CD builds. It uses nmap to scan your server for open ports, services and vulnerability. As part of the workflow, it will automatically publish the report to AWS S3 bucket or Google Cloud Storage (or both!) in LaTex, HTML, markdown or JSON format.

How to use

Include this orb in your own CircleCI workflows. You can choose aws or gcp job, however make sure to include the necessary credentials. Refer to the example.yml for implementation details.

version: "2.1"
orbs:
  flanscan: gabanz/[email protected]

workflows:
  scan:
    jobs:
      - flanscan/aws:
          format: html
          ip: 9.9.9.9
          bucket: your-s3-bucket-name
          accesskey: your-aws-access-key
          secret: your-aws-secret
      - flanscan/gcp:
          format: md
          ip: 8.8.8.8
          bucket: your-gcs-bucket-name
          cred: "key.json"