vulnera-advisor 0.1.7

Aggregates security advisories from GHSA, NVD, OSV, CISA KEV, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
//! Package version registry for fetching available versions from package managers.
//!
//! This module provides a trait and implementation for querying package registries
//! across various ecosystems to get a list of all available versions for a package.

use crate::ecosystem::canonicalize_ecosystem;
use crate::error::{AdvisoryError, Result};
use async_trait::async_trait;
use serde::Deserialize;
use std::collections::HashMap;
use tracing::debug;

/// Trait for fetching package versions from registries.
#[async_trait]
pub trait VersionRegistry: Send + Sync {
    /// Get all available versions for a package in the given ecosystem.
    async fn get_versions(&self, ecosystem: &str, package: &str) -> Result<Vec<String>>;
}

/// Multi-ecosystem package registry implementation.
///
/// Supports fetching versions from:
/// - npm (Node.js)
/// - PyPI (Python)
/// - Maven (Java)
/// - crates.io (Rust)
/// - Go proxy (Go modules)
/// - Packagist (PHP/Composer)
/// - RubyGems (Ruby/Bundler)
/// - NuGet (.NET)
#[derive(Clone)]
pub struct PackageRegistry {
    client: reqwest::Client,
}

impl Default for PackageRegistry {
    fn default() -> Self {
        Self::new()
    }
}

impl PackageRegistry {
    /// Create a new PackageRegistry with default configuration.
    pub fn new() -> Self {
        Self {
            client: reqwest::Client::builder()
                .user_agent("vulnera-advisor/0.1")
                .timeout(std::time::Duration::from_secs(30))
                .build()
                .expect("Failed to build HTTP client"),
        }
    }

    /// Create a new PackageRegistry with a custom HTTP client.
    pub fn with_client(client: reqwest::Client) -> Self {
        Self { client }
    }

    /// Fetch versions from npm registry.
    async fn fetch_npm_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://registry.npmjs.org/{}", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "npm".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "npm".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: NpmPackageResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "npm".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.versions.keys().cloned().collect())
    }

    /// Fetch versions from PyPI.
    async fn fetch_pypi_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://pypi.org/pypi/{}/json", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "pypi".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "pypi".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: PyPiPackageResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "pypi".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.releases.keys().cloned().collect())
    }

    /// Fetch versions from crates.io.
    async fn fetch_cargo_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://crates.io/api/v1/crates/{}", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "crates.io".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "crates.io".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: CratesIoResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "crates.io".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.versions.into_iter().map(|v| v.num).collect())
    }

    /// Fetch versions from Maven Central.
    async fn fetch_maven_versions(&self, package: &str) -> Result<Vec<String>> {
        // Maven packages are in format "group:artifact"
        let parts: Vec<&str> = package.split(':').collect();
        if parts.len() != 2 {
            return Err(AdvisoryError::config(
                "Maven package must be in format 'group:artifact'",
            ));
        }

        let (group, artifact) = (parts[0], parts[1]);
        let url = format!(
            "https://search.maven.org/solrsearch/select?q=g:{}+AND+a:{}&core=gav&rows=200&wt=json",
            group, artifact
        );

        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "maven".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "maven".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: MavenSearchResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "maven".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.response.docs.into_iter().map(|d| d.v).collect())
    }

    /// Fetch versions from Go module proxy.
    async fn fetch_go_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://proxy.golang.org/{}/@v/list", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "go".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "go".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let text = response
            .text()
            .await
            .map_err(|e| AdvisoryError::SourceFetch {
                source_name: "go".to_string(),
                message: e.to_string(),
            })?;

        // Go proxy returns newline-separated versions
        Ok(text.lines().map(|s| s.to_string()).collect())
    }

    /// Fetch versions from Packagist (Composer/PHP).
    async fn fetch_composer_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://repo.packagist.org/p2/{}.json", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "packagist".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "packagist".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: PackagistResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "packagist".to_string(),
                    message: e.to_string(),
                })?;

        // Packagist format: {"packages": {"vendor/name": [{"version": "1.0.0"}, ...]}}
        let versions = data
            .packages
            .get(package)
            .map(|versions| versions.iter().map(|v| v.version.clone()).collect())
            .unwrap_or_default();

        Ok(versions)
    }

    /// Fetch versions from RubyGems.
    async fn fetch_gem_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!("https://rubygems.org/api/v1/versions/{}.json", package);
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "rubygems".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "rubygems".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: Vec<RubyGemVersion> =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "rubygems".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.into_iter().map(|v| v.number).collect())
    }

    /// Fetch versions from NuGet.
    async fn fetch_nuget_versions(&self, package: &str) -> Result<Vec<String>> {
        let url = format!(
            "https://api.nuget.org/v3-flatcontainer/{}/index.json",
            package.to_lowercase()
        );
        let response =
            self.client
                .get(&url)
                .send()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "nuget".to_string(),
                    message: e.to_string(),
                })?;

        if !response.status().is_success() {
            return Err(AdvisoryError::SourceFetch {
                source_name: "nuget".to_string(),
                message: format!("HTTP {}", response.status()),
            });
        }

        let data: NuGetVersionsResponse =
            response
                .json()
                .await
                .map_err(|e| AdvisoryError::SourceFetch {
                    source_name: "nuget".to_string(),
                    message: e.to_string(),
                })?;

        Ok(data.versions)
    }
}

#[async_trait]
impl VersionRegistry for PackageRegistry {
    async fn get_versions(&self, ecosystem: &str, package: &str) -> Result<Vec<String>> {
        let ecosystem_lower = canonicalize_ecosystem(ecosystem)
            .unwrap_or(ecosystem)
            .to_ascii_lowercase();
        debug!("Fetching versions for {} in {}", package, ecosystem_lower);

        match ecosystem_lower.as_str() {
            "npm" => self.fetch_npm_versions(package).await,
            "pypi" | "pip" => self.fetch_pypi_versions(package).await,
            "cargo" | "crates.io" => self.fetch_cargo_versions(package).await,
            "maven" => self.fetch_maven_versions(package).await,
            "go" | "golang" => self.fetch_go_versions(package).await,
            "composer" | "packagist" => self.fetch_composer_versions(package).await,
            "gem" | "rubygems" | "bundler" => self.fetch_gem_versions(package).await,
            "nuget" => self.fetch_nuget_versions(package).await,
            _ => Err(AdvisoryError::config(format!(
                "Unsupported ecosystem: {}",
                ecosystem
            ))),
        }
    }
}

// === Response types for JSON parsing ===

#[derive(Debug, Deserialize)]
struct NpmPackageResponse {
    versions: HashMap<String, serde_json::Value>,
}

#[derive(Debug, Deserialize)]
struct PyPiPackageResponse {
    releases: HashMap<String, serde_json::Value>,
}

#[derive(Debug, Deserialize)]
struct CratesIoResponse {
    versions: Vec<CratesIoVersion>,
}

#[derive(Debug, Deserialize)]
struct CratesIoVersion {
    num: String,
}

#[derive(Debug, Deserialize)]
struct MavenSearchResponse {
    response: MavenSearchDocs,
}

#[derive(Debug, Deserialize)]
struct MavenSearchDocs {
    docs: Vec<MavenDoc>,
}

#[derive(Debug, Deserialize)]
struct MavenDoc {
    v: String,
}

#[derive(Debug, Deserialize)]
struct PackagistResponse {
    packages: HashMap<String, Vec<PackagistVersion>>,
}

#[derive(Debug, Deserialize)]
struct PackagistVersion {
    version: String,
}

#[derive(Debug, Deserialize)]
struct RubyGemVersion {
    number: String,
}

#[derive(Debug, Deserialize)]
struct NuGetVersionsResponse {
    versions: Vec<String>,
}

#[cfg(test)]
mod tests {
    #[test]
    fn test_ecosystem_normalization() {
        // Test that ecosystem names are properly normalized
        assert_eq!("npm".to_lowercase(), "npm");
        assert_eq!("PyPI".to_lowercase(), "pypi");
        assert_eq!("CARGO".to_lowercase(), "cargo");
    }

    #[test]
    fn test_maven_package_parsing() {
        let package = "org.apache.logging.log4j:log4j-core";
        let parts: Vec<&str> = package.split(':').collect();
        assert_eq!(parts.len(), 2);
        assert_eq!(parts[0], "org.apache.logging.log4j");
        assert_eq!(parts[1], "log4j-core");
    }
}