Draft
Conversation
2557947 to
996fea4
Compare
Contributor
|
can you create the PR for staging first please? |
Contributor
Author
|
Yep can do |
There was a problem hiding this comment.
Pull request overview
Adds configuration for an Argus-backed, asynchronous malware scanning backend to the existing ovsx.scanning.configured scanner framework, enabling pre-publish scans via Argus’s job-based API flow.
Changes:
- Introduces a new
argusscanner configuration block (typeARGUS) with async start/poll/result endpoints. - Adds per-scanner HTTP client settings, polling cadence, and a 30-minute overall timeout.
- Maps Argus JSON responses into the common threat model via JSON-path fields.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
netomi
approved these changes
Apr 10, 2026
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.
This PR adds support for Argus as a pre-publish malware scanning backend in the Open VSX registry as part of the work agreed upon by the Eclipse Foundation.
Argus is a cloud-based multi-engine malware and AI analysis service exposed through https://app.yeethsecurity.com / https://api.yeethsecurity.com. The integration follows Argus’s asynchronous scan flow:
The scanner is wired into the existing configurable scanner framework and maps Argus responses into the registry’s standard scan result model.
Configuration added
This change introduces an argus scanner definition with the following behavior:
Why
This strengthens pre-publish security checks by adding another detection layer for malicious extensions. Argus complements the existing checks by providing cloud-based multi-engine and AI-assisted analysis, while fitting the same enforcement model already being introduced for other scanners.
The 30-minute timeout is deliberately set as larger buffer. This provides enough headroom for additional detection stages and future detection enhancements.
Implementation details
Operational notes
@chrisguindon @netomi