forked from CERTCC/SSVC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d43a60
commit 885184e
Showing
1 changed file
with
20 additions
and
12 deletions.
There are no files selected for viewing
32 changes: 20 additions & 12 deletions
32
docs/_generated/decision_points/technical_impact_1_0_0.md
This file contains 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 |
---|---|---|
@@ -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" %} | ||
``` |