github.com/khulnasoft-lab/tunnel-db@v0.0.0-20231117205118-74e1113bd007/pkg/vulnsrc/vulnerability/const.go (about) 1 package vulnerability 2 3 import "github.com/khulnasoft-lab/tunnel-db/pkg/types" 4 5 const ( 6 // Data source 7 NVD types.SourceID = "nvd" 8 RedHat types.SourceID = "redhat" 9 RedHatOVAL types.SourceID = "redhat-oval" 10 Debian types.SourceID = "debian" 11 Ubuntu types.SourceID = "ubuntu" 12 CentOS types.SourceID = "centos" 13 Rocky types.SourceID = "rocky" 14 Fedora types.SourceID = "fedora" 15 Amazon types.SourceID = "amazon" 16 OracleOVAL types.SourceID = "oracle-oval" 17 SuseCVRF types.SourceID = "suse-cvrf" 18 Alpine types.SourceID = "alpine" 19 ArchLinux types.SourceID = "arch-linux" 20 Alma types.SourceID = "alma" 21 CBLMariner types.SourceID = "cbl-mariner" 22 Photon types.SourceID = "photon" 23 RubySec types.SourceID = "ruby-advisory-db" 24 PhpSecurityAdvisories types.SourceID = "php-security-advisories" 25 NodejsSecurityWg types.SourceID = "nodejs-security-wg" 26 GHSA types.SourceID = "ghsa" 27 GLAD types.SourceID = "glad" 28 OSV types.SourceID = "osv" 29 Wolfi types.SourceID = "wolfi" 30 Chainguard types.SourceID = "chainguard" 31 BitnamiVulndb types.SourceID = "bitnami" 32 K8sVulnDB types.SourceID = "k8s" 33 34 // Ecosystem 35 Unknown types.Ecosystem = "unknown" 36 Npm types.Ecosystem = "npm" 37 Composer types.Ecosystem = "composer" 38 Pip types.Ecosystem = "pip" 39 RubyGems types.Ecosystem = "rubygems" 40 Cargo types.Ecosystem = "cargo" 41 NuGet types.Ecosystem = "nuget" 42 Maven types.Ecosystem = "maven" 43 Go types.Ecosystem = "go" 44 Conan types.Ecosystem = "conan" 45 Erlang types.Ecosystem = "erlang" 46 Pub types.Ecosystem = "pub" 47 Swift types.Ecosystem = "swift" 48 Cocoapods types.Ecosystem = "cocoapods" 49 Bitnami types.Ecosystem = "bitnami" 50 Kubernetes types.Ecosystem = "k8s" 51 )