Octovy
is a GitHub App to scan vulnerability of package system (such as RubyGems, NPM, etc.) for GitHub repository. It detects a package lock file such as Gemfile.lock
and checks if the package includes vulnerability based on package version. After that, Octovy stores scan report to database that can be accessed via Web UI and sends a result to GitHub Check as CI. A conclusion of GitHub Check is only success
(No vulnerable packages) or neutral
(Vulnerable package found) for now.
Basic idea of Octovy is based on Trivy.
Octovy provides 2 modes: Public or Private.
- Public mode is available at https://octovy.io and you can install GitHub App from https://github.com/apps/octovy
- Private mode can be deployed as your own AWS CDK stack. See Deployment section for installation step.
Public mode feature is limited because of scalability and access control perspective. I recommend to deploy your own Octovy as Private mode if you want to control access to vulnerability information of your repository.
Octovy consists of GitHub App and AWS CDK stack. Therefore deployment steps are slightly complex.
- npm >= 7.10.0
- AWS CDK >= 1.90.0
- Move https://github.com/settings/apps and click
New GitHub App
- Fill
GitHub App name
andHomepage URL
- Disable Webhook ->
Active
for now - Change
Repository permissions
Checks
toRead & Write
Contents
toRead-only
Pull requests
toRead & Write
- Choose
Any account
inWhere can this GitHub App be installed?
if you wan to use the App in other's repository
Then click Create GitHub App
and save following information.
- Get
App ID
inAbout
- Create a private key by
Generate a private key
button and it will be downloaded to your PC automatically.
- Create a S3 bucket
- Create a secret of Secrets Manager. The secret must have following secret values:
github_app_id
: PutApp ID
of your GitHub Appgithub_app_private_key
: Put a private key that is encoded to base64
Create your CDK configuration and clone octovy code.
$ mkdir your-octovy-deploy
$ cd your-octovy-deploy
$ cdk init --language=typescript
$ npm i @aws-cdk/[email protected]
$ git clone https://github.com/m-mizutani/octovy.git
$ cd octovy && npm i && cd ..
Edit a deployment configuration in bin
directory (e.g. bin/your-octovy-deploy.ts
)
#!/usr/bin/env node
import "source-map-support/register";
import * as cdk from "@aws-cdk/core";
import * as apigateway from "@aws-cdk/aws-apigateway";
import { OctovyStack } from "../octovy/lib/octovy-stack";
const app = new cdk.App();
new OctovyStack(app, "your-octovy-stack", {
stage: "public",
secretsARN:
"arn:aws:secretsmanager:ap-northeast-1:11111111111:secret:octovy-xxxxxx",
s3Region: "ap-northeast-1",
s3Bucket: "your-octovy-bucket",
s3Prefix: "production/",
webhookEndpointTypes: [apigateway.EndpointType.REGIONAL],
apiEndpointTypes: [apigateway.EndpointType.REGIONAL],
});
Then run cdk deploy
. After deployment, you should see API
✅ your-octovy-stack
Outputs:
your-octovy-stack.octovyapiEndpointXXXXXX = https://xxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/prod/
your-octovy-stack.octovywebhookEndpointYYYYYY = https://yyyyyyy.execute-api.ap-northeast-1.amazonaws.com/prod/
Back to GitHub app configuration page like https://github.com/settings/apps/my-octovy and do additional configurations.
- Enable Webhook (check
Active
) and set Webhook URL that is webhookEndpoint +webhook/github
(e.g.https://yyyyyyy.execute-api.ap-northeast-1.amazonaws.com/prod/webhook/github
). Then clickSave changes
- Move to
Permissions & events
->Subscribe to events
and check following events andSave changes
Pull request
Push
lambdaRoleARN
: You can use pre-configured IAM role for LambdagithubEndpoint
: API endpoint for GitHub EnterprisevpcConfig
: VPC information if GitHub Enterprise is in VPC networkdomainConfig
: You can assign your own domain name to Web UIdynamoPITR
: You can enable Point in Time Recovery of DynamoDBfrontendURL
: Web UI if you use own domain namewebhookEndpointTypes
: API endpoint type for GitHub App webhookapiEndpointTypes
: API endpoint type for Web UIsentryDSN
: DSN URL of https://sentry.iosentryEnv
: Environment name of sentry
You need 2 consoles: 1) webpack dev server and 2) API server. API server requires actual DynamoDB table. You can use dynamodb-local also however please notice dynamodb-local can not be stored scan results for now. Please note that AWS credential is required to access DynamoDB if you use DynamoDB on AWS.
- webpack dev server
- Move
./frontend/
- Run
npm run dev-public
ornpm run dev-private
- Move
- API server
- Move root of repository
- Run
go run ./cmd/octovy/ api -r [your-aws-region] -t [dynamodb-table-name]
After invoking webpack dev server and API server, access to http://localhost:8080
- Run dynamodb-local such as
docker run -d -p 127.0.0.1:8000:8000 amazon/dynamodb-local
- Run go test
go test ./backend/...
Octovy
is massively inspired by Trivy and has a similar mechanism with trivy to detect vulnerability. Additionally Octovy leverages trivy-db as vulnerability/advisory database. I appreciate trivy authors for publishing great OSS.