Skip to content

Latest commit

 

History

History
54 lines (48 loc) · 2.27 KB

Audit Findings Severity.md

File metadata and controls

54 lines (48 loc) · 2.27 KB

Per OWASP, the Likelihood estimate and the Impact estimate are put together to calculate an overall Severity for this risk.

This is done by figuring out whether the Likelihood is Low, Medium, or High and then do the same for impact.

  1. OWASP proposes a 3x3 Severity Matrix which combines the three Likelihood levels with the three Impact levels
  2. Severity Matrix (Likelihood-Impact = Severity):
Likelhood Impact Severity
Low Low Note
Low Med Low
Low High Medium
Med Low Low
Med Med Med
Med High High
High Low Med
High Med High
High High Critical
  1. Trail of Bits uses:
    1. Informational: The issue does not pose an immediate risk, but is relevant to security best practices or Defence in Depth
    2. Undetermined: The extent of the risk was not determined during this engagement
    3. Low: The risk is relatively small or is not a risk the customer has indicated is important
    4. Medium: Individual user’s information is at risk, exploitation would be bad for client’s reputation, moderate financial impact, possible legal implications for client
    5. High: Large numbers of users, very bad for client’s reputation, or serious legal or financial implications
  2. ConsenSys uses:
    1. Minor: issues are subjective in nature. They are typically suggestions around best practices or readability. Code maintainers should use their own judgment as to whether to address such issues.
    2. Medium: issues are objective in nature but are not security vulnerabilities. These should be addressed unless there is a clear reason not to.
    3. Major: issues are security vulnerabilities that may not be directly exploitable or may require certain conditions in order to be exploited. All major issues should be addressed.
    4. Critical: issues are directly exploitable security vulnerabilities that need to be fixed.

Slide Screenshot

017.jpg


Slide Text

Likelhood Impact Severity
Low Low Note
Low Med Low
Low High Medium
Med Low Low
Med Med Med
Med High High
High Low Med
High Med High
High High Critical

References


Tags