Illuminate Vulnerability Intelligence for own and third-party attack surfaces#39
Merged
Illuminate Vulnerability Intelligence for own and third-party attack surfaces#39
Conversation
…ethod to load an Attack Surface.
…roperty on VulnArticles to retrieve related articles.
… access vuln report fields directly from the CVE object. Updated README.
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.
Enhancements
cvesproperty of AttackSurface objects finds vulnerabilities impacting assets within thatattack surface. Works identically for the primary (your own) attack surface and third-party
attack surfaces.
AttackSurfaceCVEsrecord list to contain a list ofAttackSurfaceCVEobjects, with propertiesto access the vulnerability report, RiskIQ priority score, and list of impacted assets.
VulnArticleobject to provide details on a CVE and discover the list of third-party vendorswith assets impacted by the vuln. Custom views in the article's
to_dataframe()method renderdataframes focused on article references, component detections, and third-party impacts.
analyzer.AttackSurface()to directly load an attack surface. Works without params to loadthe main attack surface, with an ID to load a third-party vendor attack surface by ID, or with a string
to find an attack surface by vendor name.
analyzermodule into distinct files located under asubpackage. Existing imports in client code should not be impacted.