|
1 | | -from vulnerabilities.pipelines import CollectVCSFixCommitPipeline |
| 1 | +from vulnerabilities.pipes.vcs_collector_utils import CollectVCSFixCommitPipeline |
2 | 2 |
|
3 | 3 |
|
4 | 4 | class CollectLinuxFixCommitsPipeline(CollectVCSFixCommitPipeline): |
5 | 5 | pipeline_id = "collect_linux_fix_commits" |
6 | | - repo_url = "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git" |
| 6 | + repo_url = "https://github.com/torvalds/linux" |
7 | 7 |
|
8 | 8 |
|
9 | 9 | class CollectBusyBoxFixCommitsPipeline(CollectVCSFixCommitPipeline): |
10 | 10 | pipeline_id = "collect_busybox_fix_commits" |
11 | | - repo_url = "https://github.com/mirror/busybox.git" |
| 11 | + repo_url = "https://github.com/mirror/busybox" |
12 | 12 |
|
13 | 13 |
|
14 | 14 | class CollectNginxFixCommitsPipeline(CollectVCSFixCommitPipeline): |
15 | 15 | pipeline_id = "collect_nginx_fix_commits" |
16 | | - repo_url = "https://github.com/nginx/nginx.git" |
| 16 | + repo_url = "https://github.com/nginx/nginx" |
17 | 17 |
|
18 | 18 |
|
19 | 19 | class CollectApacheTomcatFixCommitsPipeline(CollectVCSFixCommitPipeline): |
20 | 20 | pipeline_id = "collect_apache_tomcat_fix_commits" |
21 | | - repo_url = "https://github.com/apache/tomcat.git" |
| 21 | + repo_url = "https://github.com/apache/tomcat" |
22 | 22 |
|
23 | 23 |
|
24 | 24 | class CollectMysqlServerFixCommitsPipeline(CollectVCSFixCommitPipeline): |
25 | 25 | pipeline_id = "collect_mysql_server_fix_commits" |
26 | | - repo_url = "https://github.com/mysql/mysql-server.git" |
| 26 | + repo_url = "https://github.com/mysql/mysql-server" |
27 | 27 |
|
28 | 28 |
|
29 | 29 | class CollectPostgresqlFixCommitsPipeline(CollectVCSFixCommitPipeline): |
30 | 30 | pipeline_id = "collect_postgresql_fix_commits" |
31 | | - repo_url = "https://github.com/postgres/postgres.git" |
| 31 | + repo_url = "https://github.com/postgres/postgres" |
32 | 32 |
|
33 | 33 |
|
34 | 34 | class CollectMongodbFixCommitsPipeline(CollectVCSFixCommitPipeline): |
35 | 35 | pipeline_id = "collect_mongodb_fix_commits" |
36 | | - repo_url = "https://github.com/mongodb/mongo.git" |
| 36 | + repo_url = "https://github.com/mongodb/mongo" |
37 | 37 |
|
38 | 38 |
|
39 | 39 | class CollectRedisFixCommitsPipeline(CollectVCSFixCommitPipeline): |
40 | 40 | pipeline_id = "collect_redis_fix_commits" |
41 | | - repo_url = "https://github.com/redis/redis.git" |
| 41 | + repo_url = "https://github.com/redis/redis" |
42 | 42 |
|
43 | 43 |
|
44 | 44 | class CollectSqliteFixCommitsPipeline(CollectVCSFixCommitPipeline): |
45 | 45 | pipeline_id = "collect_sqlite_fix_commits" |
46 | | - repo_url = "https://github.com/sqlite/sqlite.git" |
| 46 | + repo_url = "https://github.com/sqlite/sqlite" |
47 | 47 |
|
48 | 48 |
|
49 | 49 | class CollectPhpFixCommitsPipeline(CollectVCSFixCommitPipeline): |
50 | 50 | pipeline_id = "collect_php_fix_commits" |
51 | | - repo_url = "https://github.com/php/php-src.git" |
| 51 | + repo_url = "https://github.com/php/php-src" |
52 | 52 |
|
53 | 53 |
|
54 | 54 | class CollectPythonCpythonFixCommitsPipeline(CollectVCSFixCommitPipeline): |
55 | 55 | pipeline_id = "collect_python_cpython_fix_commits" |
56 | | - repo_url = "https://github.com/python/cpython.git" |
| 56 | + repo_url = "https://github.com/python/cpython" |
57 | 57 |
|
58 | 58 |
|
59 | 59 | class CollectRubyFixCommitsPipeline(CollectVCSFixCommitPipeline): |
60 | 60 | pipeline_id = "collect_ruby_fix_commits" |
61 | | - repo_url = "https://github.com/ruby/ruby.git" |
| 61 | + repo_url = "https://github.com/ruby/ruby" |
62 | 62 |
|
63 | 63 |
|
64 | 64 | class CollectGoFixCommitsPipeline(CollectVCSFixCommitPipeline): |
65 | 65 | pipeline_id = "collect_go_fix_commits" |
66 | | - repo_url = "https://github.com/golang/go.git" |
| 66 | + repo_url = "https://github.com/golang/go" |
67 | 67 |
|
68 | 68 |
|
69 | 69 | class CollectNodeJsFixCommitsPipeline(CollectVCSFixCommitPipeline): |
70 | 70 | pipeline_id = "collect_node_js_fix_commits" |
71 | | - repo_url = "https://github.com/nodejs/node.git" |
| 71 | + repo_url = "https://github.com/nodejs/node" |
72 | 72 |
|
73 | 73 |
|
74 | 74 | class CollectRustFixCommitsPipeline(CollectVCSFixCommitPipeline): |
75 | 75 | pipeline_id = "collect_rust_fix_commits" |
76 | | - repo_url = "https://github.com/rust-lang/rust.git" |
| 76 | + repo_url = "https://github.com/rust-lang/rust" |
77 | 77 |
|
78 | 78 |
|
79 | 79 | class CollectOpenjdkFixCommitsPipeline(CollectVCSFixCommitPipeline): |
80 | 80 | pipeline_id = "collect_openjdk_fix_commits" |
81 | | - repo_url = "https://github.com/openjdk/jdk.git" |
| 81 | + repo_url = "https://github.com/openjdk/jdk" |
82 | 82 |
|
83 | 83 |
|
84 | 84 | class CollectSwiftFixCommitsPipeline(CollectVCSFixCommitPipeline): |
85 | 85 | pipeline_id = "collect_swift_fix_commits" |
86 | | - repo_url = "https://github.com/swiftlang/swift.git" |
87 | | - |
88 | | - |
89 | | -class CollectOpensslFixCommitsPipeline(CollectVCSFixCommitPipeline): |
90 | | - pipeline_id = "collect_openssl_fix_commits" |
91 | | - repo_url = "https://github.com/openssl/openssl.git" |
| 86 | + repo_url = "https://github.com/swiftlang/swift" |
92 | 87 |
|
93 | 88 |
|
94 | 89 | class CollectDjangoFixCommitsPipeline(CollectVCSFixCommitPipeline): |
95 | 90 | pipeline_id = "collect_django_fix_commits" |
96 | | - repo_url = "https://github.com/django/django.git" |
| 91 | + repo_url = "https://github.com/django/django" |
97 | 92 |
|
98 | 93 |
|
99 | 94 | class CollectRailsFixCommitsPipeline(CollectVCSFixCommitPipeline): |
100 | 95 | pipeline_id = "collect_rails_fix_commits" |
101 | | - repo_url = "https://github.com/rails/rails.git" |
| 96 | + repo_url = "https://github.com/rails/rails" |
102 | 97 |
|
103 | 98 |
|
104 | 99 | class CollectLaravelFixCommitsPipeline(CollectVCSFixCommitPipeline): |
105 | 100 | pipeline_id = "collect_laravel_fix_commits" |
106 | | - repo_url = "https://github.com/laravel/framework.git" |
| 101 | + repo_url = "https://github.com/laravel/framework" |
107 | 102 |
|
108 | 103 |
|
109 | 104 | class CollectSpringFrameworkFixCommitsPipeline(CollectVCSFixCommitPipeline): |
110 | 105 | pipeline_id = "collect_spring_framework_fix_commits" |
111 | | - repo_url = "https://github.com/spring-projects/spring-framework.git" |
| 106 | + repo_url = "https://github.com/spring-projects/spring-framework" |
112 | 107 |
|
113 | 108 |
|
114 | 109 | class CollectReactFixCommitsPipeline(CollectVCSFixCommitPipeline): |
115 | 110 | pipeline_id = "collect_react_fix_commits" |
116 | | - repo_url = "https://github.com/facebook/react.git" |
| 111 | + repo_url = "https://github.com/facebook/react" |
117 | 112 |
|
118 | 113 |
|
119 | 114 | class CollectAngularFixCommitsPipeline(CollectVCSFixCommitPipeline): |
120 | 115 | pipeline_id = "collect_angular_fix_commits" |
121 | | - repo_url = "https://github.com/angular/angular.git" |
| 116 | + repo_url = "https://github.com/angular/angular" |
122 | 117 |
|
123 | 118 |
|
124 | 119 | class CollectWordpressFixCommitsPipeline(CollectVCSFixCommitPipeline): |
125 | 120 | pipeline_id = "collect_wordpress_fix_commits" |
126 | | - repo_url = "https://github.com/WordPress/WordPress.git" |
| 121 | + repo_url = "https://github.com/WordPress/WordPress" |
127 | 122 |
|
128 | 123 |
|
129 | 124 | class CollectDockerMobyFixCommitsPipeline(CollectVCSFixCommitPipeline): |
130 | 125 | pipeline_id = "collect_docker_moby_fix_commits" |
131 | | - repo_url = "https://github.com/moby/moby.git" |
| 126 | + repo_url = "https://github.com/moby/moby" |
132 | 127 |
|
133 | 128 |
|
134 | 129 | class CollectKubernetesFixCommitsPipeline(CollectVCSFixCommitPipeline): |
135 | 130 | pipeline_id = "collect_kubernetes_fix_commits" |
136 | | - repo_url = "https://github.com/kubernetes/kubernetes.git" |
| 131 | + repo_url = "https://github.com/kubernetes/kubernetes" |
137 | 132 |
|
138 | 133 |
|
139 | 134 | class CollectQemuFixCommitsPipeline(CollectVCSFixCommitPipeline): |
140 | 135 | pipeline_id = "collect_qemu_fix_commits" |
141 | | - repo_url = "https://gitlab.com/qemu-project/qemu.git" |
| 136 | + repo_url = "https://gitlab.com/qemu-project/qemu" |
142 | 137 |
|
143 | 138 |
|
144 | 139 | class CollectXenProjectFixCommitsPipeline(CollectVCSFixCommitPipeline): |
145 | 140 | pipeline_id = "collect_xen_project_fix_commits" |
146 | | - repo_url = "https://github.com/xen-project/xen.git" |
| 141 | + repo_url = "https://github.com/xen-project/xen" |
147 | 142 |
|
148 | 143 |
|
149 | 144 | class CollectVirtualboxFixCommitsPipeline(CollectVCSFixCommitPipeline): |
150 | 145 | pipeline_id = "collect_virtualbox_fix_commits" |
151 | | - repo_url = "https://github.com/mirror/vbox.git" |
| 146 | + repo_url = "https://github.com/mirror/vbox" |
152 | 147 |
|
153 | 148 |
|
154 | 149 | class CollectContainerdFixCommitsPipeline(CollectVCSFixCommitPipeline): |
155 | 150 | pipeline_id = "collect_containerd_fix_commits" |
156 | | - repo_url = "https://github.com/containerd/containerd.git" |
| 151 | + repo_url = "https://github.com/containerd/containerd" |
157 | 152 |
|
158 | 153 |
|
159 | 154 | class CollectAnsibleFixCommitsPipeline(CollectVCSFixCommitPipeline): |
160 | 155 | pipeline_id = "collect_ansible_fix_commits" |
161 | | - repo_url = "https://github.com/ansible/ansible.git" |
| 156 | + repo_url = "https://github.com/ansible/ansible" |
162 | 157 |
|
163 | 158 |
|
164 | 159 | class CollectTerraformFixCommitsPipeline(CollectVCSFixCommitPipeline): |
165 | 160 | pipeline_id = "collect_terraform_fix_commits" |
166 | | - repo_url = "https://github.com/hashicorp/terraform.git" |
| 161 | + repo_url = "https://github.com/hashicorp/terraform" |
167 | 162 |
|
168 | 163 |
|
169 | 164 | class CollectWiresharkFixCommitsPipeline(CollectVCSFixCommitPipeline): |
170 | 165 | pipeline_id = "collect_wireshark_fix_commits" |
171 | | - repo_url = "https://gitlab.com/wireshark/wireshark.git" |
| 166 | + repo_url = "https://gitlab.com/wireshark/wireshark" |
172 | 167 |
|
173 | 168 |
|
174 | 169 | class CollectTcpdumpFixCommitsPipeline(CollectVCSFixCommitPipeline): |
175 | 170 | pipeline_id = "collect_tcpdump_fix_commits" |
176 | | - repo_url = "https://github.com/the-tcpdump-group/tcpdump.git" |
| 171 | + repo_url = "https://github.com/the-tcpdump-group/tcpdump" |
177 | 172 |
|
178 | 173 |
|
179 | 174 | class CollectGitFixCommitsPipeline(CollectVCSFixCommitPipeline): |
180 | 175 | pipeline_id = "collect_git_fix_commits" |
181 | | - repo_url = "https://github.com/git/git.git" |
| 176 | + repo_url = "https://github.com/git/git" |
182 | 177 |
|
183 | 178 |
|
184 | 179 | class CollectJenkinsFixCommitsPipeline(CollectVCSFixCommitPipeline): |
185 | 180 | pipeline_id = "collect_jenkins_fix_commits" |
186 | | - repo_url = "https://github.com/jenkinsci/jenkins.git" |
| 181 | + repo_url = "https://github.com/jenkinsci/jenkins" |
187 | 182 |
|
188 | 183 |
|
189 | 184 | class CollectGitlabFixCommitsPipeline(CollectVCSFixCommitPipeline): |
190 | 185 | pipeline_id = "collect_gitlab_fix_commits" |
191 | | - repo_url = "https://gitlab.com/gitlab-org/gitlab-foss.git" |
| 186 | + repo_url = "https://gitlab.com/gitlab-org/gitlab-foss" |
0 commit comments