Ingest upstream vex sources#2035
Open
Dboy0ZDev wants to merge 10 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds initial support for ingesting upstream OpenVEX sources by (1) fetching OpenVEX JSON documents from a GitHub repository and (2) transforming OpenVEX statements into DevGuard VEX rules, alongside a small adjustment to CycloneDX VEX rule path-pattern creation.
Changes:
- Add OpenVEX-to-VEXRule transformation logic and event-type mapping in
VEXRuleService. - Add GitHub repository crawling + raw-file download to collect OpenVEX JSON documents in
scanService. - Introduce a normalized
VexReportOpenVEXwrapper with validation helpers.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| services/vex_rule_service.go | Adds OpenVEX parsing + status mapping; adjusts CycloneDX-derived path-pattern building |
| services/vex_rule_service_test.go | Adds unit tests for OpenVEX parsing behavior |
| services/scan_service.go | Adds GitHub repo traversal and raw download helper to fetch OpenVEX JSON files |
| services/scan_service_test.go | Adds tests for GitHub OpenVEX fetching via a mocked GitHub API |
| normalize/sbom_graph.go | Introduces VexReportOpenVEX and basic OpenVEX report validation |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
timbastin
requested changes
May 21, 2026
64ed7d2 to
fa8a50f
Compare
…d handling, time nil pointer check, http request improvements and url checks
…m vexrule creation
f6ff53a to
a80aca4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related to Issue: #1977