Skip to content

Commit

Permalink
Update technical_impact_1_0_0.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-vsarvepalli authored Oct 31, 2024
1 parent 5d43a60 commit 885184e
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions docs/_generated/decision_points/technical_impact_1_0_0.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
<!-- This content is autogenerated by doctools.py. Do not Edit. -->
!!! note "Technical Impact v1.0.0"

=== "Text"

The technical impact of the vulnerability.
=== "C"

``` c
#include <stdio.h>

int main(void) {
printf("Hello world!\n");
return 0;
}
```

=== "C++"

``` c++
#include <iostream>

| Value | Definition |
|:-----|:-----------|
| Partial | The exploit gives the adversary limited control over, or information exposure about, the behavior of the software that contains the vulnerability. Or the exploit gives the adversary an importantly low stochastic opportunity for total control. |
| Total | The exploit gives the adversary total control over the behavior of the software, or it gives total disclosure of all information on the system that contains the vulnerability. |
=== "JSON"
int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}
```

```json
{% include "../../../data/json/decision_points/technical_impact_1_0_0.json" %}
```

0 comments on commit 885184e

Please sign in to comment.