├── .dockerignore ├── .github └── workflows │ └── ruby.yml ├── .gitignore ├── .rubocop.yml ├── .whitesource ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── assets ├── browser.png ├── index.png ├── name.png └── terminal.png ├── cache └── .gitkeep ├── config ├── configuration.rb └── environment-example.rb ├── env ├── .gitkeep ├── development.env └── production.env ├── rest.rb ├── sorbet ├── config └── rbi │ ├── hidden-definitions │ ├── errors.txt │ └── hidden.rbi │ └── sorbet-typed │ └── lib │ ├── bundler │ └── all │ │ └── bundler.rbi │ ├── rainbow │ └── all │ │ └── rainbow.rbi │ └── ruby │ └── all │ ├── gem.rbi │ ├── open3.rbi │ └── resolv.rbi ├── src ├── helper │ └── general.rb └── util │ ├── cache.rb │ └── scan.rb └── views ├── index.erb ├── result.erb └── stylesheet └── index.css /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/.whitesource -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/README.md -------------------------------------------------------------------------------- /assets/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/assets/browser.png -------------------------------------------------------------------------------- /assets/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/assets/index.png -------------------------------------------------------------------------------- /assets/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/assets/name.png -------------------------------------------------------------------------------- /assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/assets/terminal.png -------------------------------------------------------------------------------- /cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/config/configuration.rb -------------------------------------------------------------------------------- /config/environment-example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/config/environment-example.rb -------------------------------------------------------------------------------- /env/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /env/development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/env/development.env -------------------------------------------------------------------------------- /env/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/env/production.env -------------------------------------------------------------------------------- /rest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/rest.rb -------------------------------------------------------------------------------- /sorbet/config: -------------------------------------------------------------------------------- 1 | --dir 2 | . 3 | -------------------------------------------------------------------------------- /sorbet/rbi/hidden-definitions/errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/hidden-definitions/errors.txt -------------------------------------------------------------------------------- /sorbet/rbi/hidden-definitions/hidden.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/hidden-definitions/hidden.rbi -------------------------------------------------------------------------------- /sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/sorbet-typed/lib/bundler/all/bundler.rbi -------------------------------------------------------------------------------- /sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi -------------------------------------------------------------------------------- /sorbet/rbi/sorbet-typed/lib/ruby/all/gem.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/sorbet-typed/lib/ruby/all/gem.rbi -------------------------------------------------------------------------------- /sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/sorbet-typed/lib/ruby/all/open3.rbi -------------------------------------------------------------------------------- /sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/sorbet/rbi/sorbet-typed/lib/ruby/all/resolv.rbi -------------------------------------------------------------------------------- /src/helper/general.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/src/helper/general.rb -------------------------------------------------------------------------------- /src/util/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/src/util/cache.rb -------------------------------------------------------------------------------- /src/util/scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/src/util/scan.rb -------------------------------------------------------------------------------- /views/index.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/views/index.erb -------------------------------------------------------------------------------- /views/result.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/views/result.erb -------------------------------------------------------------------------------- /views/stylesheet/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beyarz/Cve-api/HEAD/views/stylesheet/index.css --------------------------------------------------------------------------------