diff --git a/src/main/kotlin/de/fraunhofer/iem/dataprovider/kpi/enumeration/KpiKind.kt b/src/main/kotlin/de/fraunhofer/iem/dataprovider/kpi/enumeration/KpiKind.kt index e09afe3b8deade5a328cbc55e3deb87f88682cce..3fc6f50ddf791a741c802e74ac336ba85a4afa19 100644 --- a/src/main/kotlin/de/fraunhofer/iem/dataprovider/kpi/enumeration/KpiKind.kt +++ b/src/main/kotlin/de/fraunhofer/iem/dataprovider/kpi/enumeration/KpiKind.kt @@ -22,7 +22,7 @@ enum class KpiKind { } override fun getName(): String { - return "Checked in Binaries" + return "No Checked in Binaries" } }, NUMBER_OF_COMMITS { @@ -115,15 +115,18 @@ enum class KpiKind { return KPITreeResponseDto( value = value, name = this.getName(), - description = "Used to look for suspicious strings in the repository," + - " which might indicate leaked passwords or other secrets.", + description = "Used to assess the security of the software provided. " + + "For this purpose, it is checked at code level whether actual secrets " + + "are revealed within the code. There is a possibility that discovered potential secrets " + + "are no actual secrets. In future updates, the developers will be allowed " + + "to contradict the analysis results.", children = children, isEmpty = isEmpty ) } override fun getName(): String { - return "Secrets" + return "Public Secrets" } }, SAST_USAGE { @@ -332,7 +335,13 @@ enum class KpiKind { return KPITreeResponseDto( value = value, name = this.getName(), - description = "This score is calculated by the following formula: 100 - (max(CVSS score) * 10). " + + description = "Serves to assess the security of the software provided. For this purpose, " + + "the external dependencies of the software are analyzed for vulnerabilities. The assessment" + + " is performed by selecting the most critical vulnerability according to the " + + "Common Vulnerability " + + "Scoring System (CVSS) for assessing IT security vulnerabilities among all " + + "identified external dependencies." + + "This score is calculated by the following formula: 100 - (max(CVSS score) * 10). " + "Thus, a lower value indicates a more critical vulnerability.", children = children, isEmpty = isEmpty @@ -340,7 +349,7 @@ enum class KpiKind { } override fun getName(): String { - return "Maximal Dependency Vulnerability Score" + return "Maximal Dependency Vulnerability" } }, DOCUMENTATION {