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

Risk Tolerance Curve suggestion #34

Open
priamai opened this issue Jun 1, 2021 · 3 comments
Open

Risk Tolerance Curve suggestion #34

priamai opened this issue Jun 1, 2021 · 3 comments
Labels
enhancement New feature or request

Comments

@priamai
Copy link

priamai commented Jun 1, 2021

This is not strictly required by the FAIR methodology but would be a nice addition.
Typically a CISO will draw the LOE for the inherent and residual risk, he will then ask his CTO/CEO/CFO to provide a few data points to build a risk tolerance curve.
An example from PAN talk is here:

image

The tolerance curve will be interpolated from the few datapoints (the user should choose from linear, expo or polynomial) provided.

The tolerance curve should then be intersected with the other two to find out the break out points.
Would be wonderful to have a class to inject such LOE from input data.

Cheers!

@priamai
Copy link
Author

priamai commented Jun 7, 2021

Found also an interesting tutorial here all in python:
https://fluidattacks.com/blog/quantitative-python/

@theonaunheim
Copy link
Contributor

From an API perspective, how do you see this working? I.e. how does an analyst define this curve?

t_curve = np.polyfit(
   [100, 1_000, 10_000], 
   [1, .2, .1],
   3
)
fsr = FairSimpleReport([model_1, model_2))
fsr.add_tolerance_curve(t_curve)
fsr.to_html('output.html')

@priamai
Copy link
Author

priamai commented Jun 11, 2021

Hi @theonaunheim yes that would work!

@theonaunheim theonaunheim added the enhancement New feature or request label Jun 11, 2021
@cneskey cneskey added enhancement New feature or request and removed enhancement New feature or request labels Jan 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants