|
44 | 44 | from vulnerabilities.pipelines import pysec_importer |
45 | 45 |
|
46 | 46 | IMPORTERS_REGISTRY = [ |
| 47 | + nvd_importer.NVDImporterPipeline, |
| 48 | + github_importer.GitHubAPIImporterPipeline, |
| 49 | + gitlab_importer.GitLabImporterPipeline, |
| 50 | + github_osv.GithubOSVImporter, |
| 51 | + pypa_importer.PyPaImporterPipeline, |
| 52 | + npm_importer.NpmImporterPipeline, |
| 53 | + nginx_importer.NginxImporterPipeline, |
| 54 | + pysec_importer.PyPIImporterPipeline, |
| 55 | + apache_tomcat.ApacheTomcatImporter, |
| 56 | + postgresql.PostgreSQLImporter, |
| 57 | + debian.DebianImporter, |
| 58 | + curl.CurlImporter, |
| 59 | + epss.EPSSImporter, |
| 60 | + vulnrichment.VulnrichImporter, |
| 61 | + alpine_linux_importer.AlpineLinuxImporterPipeline, |
| 62 | + ruby.RubyImporter, |
| 63 | + apache_kafka.ApacheKafkaImporter, |
47 | 64 | openssl.OpensslImporter, |
48 | 65 | redhat.RedhatImporter, |
49 | | - debian.DebianImporter, |
50 | | - postgresql.PostgreSQLImporter, |
51 | 66 | archlinux.ArchlinuxImporter, |
52 | 67 | ubuntu.UbuntuImporter, |
53 | 68 | debian_oval.DebianOvalImporter, |
|
59 | 74 | project_kb_msr2019.ProjectKBMSRImporter, |
60 | 75 | suse_scores.SUSESeverityScoreImporter, |
61 | 76 | elixir_security.ElixirSecurityImporter, |
62 | | - apache_tomcat.ApacheTomcatImporter, |
63 | 77 | xen.XenImporter, |
64 | 78 | ubuntu_usn.UbuntuUSNImporter, |
65 | 79 | fireeye.FireyeImporter, |
66 | | - apache_kafka.ApacheKafkaImporter, |
67 | 80 | oss_fuzz.OSSFuzzImporter, |
68 | | - ruby.RubyImporter, |
69 | | - github_osv.GithubOSVImporter, |
70 | | - curl.CurlImporter, |
71 | | - epss.EPSSImporter, |
72 | | - vulnrichment.VulnrichImporter, |
73 | | - pypa_importer.PyPaImporterPipeline, |
74 | | - npm_importer.NpmImporterPipeline, |
75 | | - nginx_importer.NginxImporterPipeline, |
76 | | - gitlab_importer.GitLabImporterPipeline, |
77 | | - github_importer.GitHubAPIImporterPipeline, |
78 | | - nvd_importer.NVDImporterPipeline, |
79 | | - pysec_importer.PyPIImporterPipeline, |
80 | | - alpine_linux_importer.AlpineLinuxImporterPipeline, |
81 | 81 | ] |
82 | 82 |
|
83 | 83 | IMPORTERS_REGISTRY = { |
|
0 commit comments