Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Almalinux advisories #1491

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into add-almalinux-advisories
ambuj-1211 authored Dec 14, 2024

Verified

This commit was signed with the committer’s verified signature.
snyk-bot Snyk bot
commit 6f9c21b81393e5cc82d31769fb8d3b0d5cd76b51
1 change: 1 addition & 0 deletions vulnerabilities/importers/__init__.py
Original file line number Diff line number Diff line change
@@ -70,6 +70,7 @@
ruby.RubyImporter,
github_osv.GithubOSVImporter,
almalinux.AlmaImporter,
curl.CurlImporter,
epss.EPSSImporter,
vulnrichment.VulnrichImporter,
pypa_importer.PyPaImporterPipeline,
8 changes: 7 additions & 1 deletion vulnerabilities/improvers/__init__.py
Original file line number Diff line number Diff line change
@@ -35,7 +35,13 @@
valid_versions.GithubOSVImprover,
vulnerability_status.VulnerabilityStatusImprover,
valid_versions.AlmaImprover,
vulnerability_kev.VulnerabilityKevImprover,
valid_versions.CurlImprover,
flag_ghost_packages.FlagGhostPackagePipeline,
enhance_with_kev.VulnerabilityKevPipeline,
enhance_with_metasploit.MetasploitImproverPipeline,
enhance_with_exploitdb.ExploitDBImproverPipeline,
compute_package_risk.ComputePackageRiskPipeline,
compute_package_version_rank.ComputeVersionRankPipeline,
]

IMPROVERS_REGISTRY = {
6 changes: 4 additions & 2 deletions vulnerabilities/improvers/valid_versions.py
Original file line number Diff line number Diff line change
@@ -477,8 +477,10 @@ class RubyImprover(ValidVersionImprover):
class GithubOSVImprover(ValidVersionImprover):
importer = GithubOSVImporter
ignorable_versions = []



class AlmaImprover(ValidVersionImprover):
importer = AlmaImporter

class CurlImprover(ValidVersionImprover):
importer = CurlImporter
ignorable_versions = []
You are viewing a condensed version of this merge commit. You can view the full changes here.