|
6 | 6 | # See https://github.com/aboutcode-org/vulnerablecode for support or download. |
7 | 7 | # See https://aboutcode.org for more information about nexB OSS projects. |
8 | 8 | # |
| 9 | + |
9 | 10 | from vulnerabilities.pipelines import GitHubCollector |
10 | 11 | from vulnerabilities.pipelines import GitLabCollector |
11 | 12 |
|
12 | 13 |
|
13 | | -class CollectKubernetesPRSIssues(GitHubCollector): |
14 | | - pipeline_id = "collect-kubernetes-prs-issues" |
| 14 | +class CollectBusyBoxPRSIssuesPipeline(GitHubCollector): |
| 15 | + pipeline_id = "collect_busybox_prs-issues" |
| 16 | + repo_url = "https://github.com/mirror/busybox" |
| 17 | + |
| 18 | + |
| 19 | +class CollectNginxPRSIssuesPipeline(GitHubCollector): |
| 20 | + pipeline_id = "collect_nginx_prs-issues" |
| 21 | + repo_url = "https://github.com/nginx/nginx" |
| 22 | + |
| 23 | + |
| 24 | +class CollectApacheTomcatPRSIssuesPipeline(GitHubCollector): |
| 25 | + pipeline_id = "collect_apache_tomcat_prs-issues" |
| 26 | + repo_url = "https://github.com/apache/tomcat" |
| 27 | + |
| 28 | + |
| 29 | +class CollectMongodbPRSIssuesPipeline(GitHubCollector): |
| 30 | + pipeline_id = "collect_mongodb_prs-issues" |
| 31 | + repo_url = "https://github.com/mongodb/mongo" |
| 32 | + |
| 33 | + |
| 34 | +class CollectRedisPRSIssuesPipeline(GitHubCollector): |
| 35 | + pipeline_id = "collect_redis_prs-issues" |
| 36 | + repo_url = "https://github.com/redis/redis" |
| 37 | + |
| 38 | + |
| 39 | +class CollectPhpPRSIssuesPipeline(GitHubCollector): |
| 40 | + pipeline_id = "collect_php_prs-issues" |
| 41 | + repo_url = "https://github.com/php/php-src" |
| 42 | + |
| 43 | + |
| 44 | +class CollectPythonCpythonPRSIssuesPipeline(GitHubCollector): |
| 45 | + pipeline_id = "collect_python_cpython_prs-issues" |
| 46 | + repo_url = "https://github.com/python/cpython" |
| 47 | + |
| 48 | + |
| 49 | +class CollectRubyPRSIssuesPipeline(GitHubCollector): |
| 50 | + pipeline_id = "collect_ruby_prs-issues" |
| 51 | + repo_url = "https://github.com/ruby/ruby" |
| 52 | + |
| 53 | + |
| 54 | +class CollectGoPRSIssuesPipeline(GitHubCollector): |
| 55 | + pipeline_id = "collect_go_prs-issues" |
| 56 | + repo_url = "https://github.com/golang/go" |
| 57 | + |
| 58 | + |
| 59 | +class CollectNodeJsPRSIssuesPipeline(GitHubCollector): |
| 60 | + pipeline_id = "collect_node_js_prs-issues" |
| 61 | + repo_url = "https://github.com/nodejs/node" |
| 62 | + |
| 63 | + |
| 64 | +class CollectRustPRSIssuesPipeline(GitHubCollector): |
| 65 | + pipeline_id = "collect_rust_prs-issues" |
| 66 | + repo_url = "https://github.com/rust-lang/rust" |
| 67 | + |
| 68 | + |
| 69 | +class CollectOpenjdkPRSIssuesPipeline(GitHubCollector): |
| 70 | + pipeline_id = "collect_openjdk_prs-issues" |
| 71 | + repo_url = "https://github.com/openjdk/jdk" |
| 72 | + |
| 73 | + |
| 74 | +class CollectSwiftPRSIssuesPipeline(GitHubCollector): |
| 75 | + pipeline_id = "collect_swift_prs-issues" |
| 76 | + repo_url = "https://github.com/swiftlang/swift" |
| 77 | + |
| 78 | + |
| 79 | +class CollectDjangoPRSIssuesPipeline(GitHubCollector): |
| 80 | + pipeline_id = "collect_django_prs-issues" |
| 81 | + repo_url = "https://github.com/django/django" |
| 82 | + |
| 83 | + |
| 84 | +class CollectRailsPRSIssuesPipeline(GitHubCollector): |
| 85 | + pipeline_id = "collect_rails_prs-issues" |
| 86 | + repo_url = "https://github.com/rails/rails" |
| 87 | + |
| 88 | + |
| 89 | +class CollectLaravelPRSIssuesPipeline(GitHubCollector): |
| 90 | + pipeline_id = "collect_laravel_prs-issues" |
| 91 | + repo_url = "https://github.com/laravel/framework" |
| 92 | + |
| 93 | + |
| 94 | +class CollectSpringFrameworkPRSIssuesPipeline(GitHubCollector): |
| 95 | + pipeline_id = "collect_spring_framework_prs-issues" |
| 96 | + repo_url = "https://github.com/spring-projects/spring-framework" |
| 97 | + |
| 98 | + |
| 99 | +class CollectReactPRSIssuesPipeline(GitHubCollector): |
| 100 | + pipeline_id = "collect_react_prs-issues" |
| 101 | + repo_url = "https://github.com/facebook/react" |
| 102 | + |
| 103 | + |
| 104 | +class CollectAngularPRSIssuesPipeline(GitHubCollector): |
| 105 | + pipeline_id = "collect_angular_prs-issues" |
| 106 | + repo_url = "https://github.com/angular/angular" |
| 107 | + |
| 108 | + |
| 109 | +class CollectWordpressPRSIssuesPipeline(GitHubCollector): |
| 110 | + pipeline_id = "collect_wordpress_prs-issues" |
| 111 | + repo_url = "https://github.com/WordPress/WordPress" |
| 112 | + |
| 113 | + |
| 114 | +class CollectDockerMobyPRSIssuesPipeline(GitHubCollector): |
| 115 | + pipeline_id = "collect_docker_moby_prs-issues" |
| 116 | + repo_url = "https://github.com/moby/moby" |
| 117 | + |
| 118 | + |
| 119 | +class CollectKubernetesPRSIssuesPipeline(GitHubCollector): |
| 120 | + pipeline_id = "collect_kubernetes_prs-issues" |
15 | 121 | repo_url = "https://github.com/kubernetes/kubernetes" |
16 | 122 |
|
17 | 123 |
|
18 | | -class CollectWiresharkPRSIssues(GitLabCollector): |
19 | | - pipeline_id = "collect-wireshark-prs-issues" |
| 124 | +class CollectXenProjectPRSIssuesPipeline(GitHubCollector): |
| 125 | + pipeline_id = "collect_xen_project_prs-issues" |
| 126 | + repo_url = "https://github.com/xen-project/xen" |
| 127 | + |
| 128 | + |
| 129 | +class CollectVirtualboxPRSIssuesPipeline(GitHubCollector): |
| 130 | + pipeline_id = "collect_virtualbox_prs-issues" |
| 131 | + repo_url = "https://github.com/mirror/vbox" |
| 132 | + |
| 133 | + |
| 134 | +class CollectContainerdPRSIssuesPipeline(GitHubCollector): |
| 135 | + pipeline_id = "collect_containerd_prs-issues" |
| 136 | + repo_url = "https://github.com/containerd/containerd" |
| 137 | + |
| 138 | + |
| 139 | +class CollectAnsiblePRSIssuesPipeline(GitHubCollector): |
| 140 | + pipeline_id = "collect_ansible_prs-issues" |
| 141 | + repo_url = "https://github.com/ansible/ansible" |
| 142 | + |
| 143 | + |
| 144 | +class CollectTerraformPRSIssuesPipeline(GitHubCollector): |
| 145 | + pipeline_id = "collect_terraform_prs-issues" |
| 146 | + repo_url = "https://github.com/hashicorp/terraform" |
| 147 | + |
| 148 | + |
| 149 | +class CollectTcpdumpPRSIssuesPipeline(GitHubCollector): |
| 150 | + pipeline_id = "collect_tcpdump_prs-issues" |
| 151 | + repo_url = "https://github.com/the-tcpdump-group/tcpdump" |
| 152 | + |
| 153 | + |
| 154 | +class CollectJenkinsPRSIssuesPipeline(GitHubCollector): |
| 155 | + pipeline_id = "collect_jenkins_prs-issues" |
| 156 | + repo_url = "https://github.com/jenkinsci/jenkins" |
| 157 | + |
| 158 | + |
| 159 | +class CollectGitlabPRSIssuesPipeline(GitLabCollector): |
| 160 | + pipeline_id = "collect_gitlab_prs-issues" |
| 161 | + repo_url = "https://gitlab.com/gitlab-org/gitlab-foss" |
| 162 | + |
| 163 | + |
| 164 | +class CollectWiresharkPRSIssuesPipeline(GitLabCollector): |
| 165 | + pipeline_id = "collect_wireshark_prs-issues" |
20 | 166 | repo_url = "https://gitlab.com/wireshark/wireshark" |
| 167 | + |
| 168 | + |
| 169 | +class CollectQemuPRSIssuesPipeline(GitLabCollector): |
| 170 | + pipeline_id = "collect_qemu_prs-issues" |
| 171 | + repo_url = "https://gitlab.com/qemu-project/qemu" |
0 commit comments