-
-
Notifications
You must be signed in to change notification settings - Fork 233
Add support for storing exploitability and weighted severity #1646
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
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
530cb52
Add exploitability and weighted_severity fields to the
ziadhany 86f6927
Optimize performance, refactor, and rename the add_vulnerability_risk…
ziadhany b97fdf4
Merge remote-tracking branch 'origin/main' into save-risk
ziadhany 405bf86
Resolve migration conflict
ziadhany fbc8fed
Merge remote-tracking branch 'origin/main' into save-risk
ziadhany ec5b972
Resolve migration conflict & add weighted_severity, exploitability to…
ziadhany 893183f
Correct help text and remove inconsistent typing.
ziadhany f29ef16
Add severities in the prefetch and optimize the prefetching process f…
ziadhany 4920e1f
Refactor the risk score calculation for vulnerabilities and packages.
ziadhany 1a9df9b
Rename vulnerability to relation for clarity in compute_package_risk
ziadhany File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8000
Loading
Loading
There are no files selected for viewing
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
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
43 changes: 43 additions & 0 deletions
43
vulnerabilities/migrations/0082_vulnerability_exploitability_and_more.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 4.2.16 on 2024-11-17 13:52 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("vulnerabilities", "0081_alter_packagechangelog_software_version_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="vulnerability", | ||
name="exploitability", | ||
field=models.DecimalField( | ||
decimal_places=1, | ||
help_text="Exploitability indicates the likelihood that a vulnerability in a software package could be used by malicious actors to compromise systems, applications, or networks. This metric is determined automatically based on the discovery of known exploits.", | ||
max_digits=2, | ||
null=True, | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="vulnerability", | ||
name="weighted_severity", | ||
field=models.DecimalField( | ||
decimal_places=1, | ||
help_text="Weighted severity is the highest value calculated by multiplying each severity by its corresponding weight, divided by 10.", | ||
max_digits=3, | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="package", | ||
name="risk_score", | ||
field=models.DecimalField( | ||
decimal_places=1, | ||
help_text="Risk score between 0.00 and 10.00, where higher values indicate greater vulnerability risk for the package.", | ||
max_digits=3, | ||
null=True, | ||
), | ||
), | ||
] |
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.