Skip to content

Commit a907a9c

Browse files
committed
Feat: Enhance education and guidance
1 parent ce7d458 commit a907a9c

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

assets/js/scutter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var _d3;
5858
.tickFormat(function (d) {
5959
return getLabelForAxis(d);
6060
})
61-
.axisLabel("Difficulty of Implementation");
61+
.axisLabel("Ease of Implementation");
6262
chart.yAxis
6363
.tickFormat(function (d) {
6464
return getLabelForAxis(d);

data/strings.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,19 @@ strings:
88
samm2:
99
label: OWASP SAMM VERSION 2
1010
description: |-
11+
Software Assurance Maturity Model
12+
The Software Assurance Maturity Model (SAMM) is an open framework to help organizations formulate
13+
and implement a strategy for software security that is tailored
14+
to the specific risks facing the organization.
1115
https://owaspsamm.org/blog/2020/01/31/samm2-release/
1216
iso27001-2017:
1317
label: ISO27001 2017
1418
description: |-
1519
ISO 27001 / 2017
16-
samm:
17-
label: OWASP SAMM (Software Assurance Maturity Model)
18-
description: |-
19-
Software Assurance Maturity Model
20-
The Software Assurance Maturity Model (SAMM) is an open framework to help organizations formulate
21-
and implement a strategy for software security that is tailored
22-
to the specific risks facing the organization.
2320
2421
labels: ["Very Low", "Low", "Medium", "High", "Very High"]
2522
hardness: ["Very soft", "Soft", "Medium", "High", "Very high"]
2623
maturity_levels: ["Level 1: Basic understanding of security practices" ,
2724
"Level 2: Adoption of basic security practices",
2825
"Level 3: High adoption of security practices",
29-
"Level 4: Advanced deployment of security practices at scale"]
30-
de:
31-
<<: *en
32-
hardness: ["Sehr gering", "Gering", "Mittel", "Hoch", "Sehr hoch"]
26+
"Level 4: Advanced deployment of security practices at scale"]

detail.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ function printDetail($dimension, $subdimension, $activityName, $dimensions, $rep
8686
if (is_array($implementation)) {
8787
echo "<ul>";
8888
foreach ($implementation as $implementationElement) {
89+
echo "<li>";
8990
if (is_array($implementationElement)) {
9091
echo $implementationElement['name'] . ', ';
9192
if (!empty($implementationElement['url'])) {
@@ -98,7 +99,7 @@ function printDetail($dimension, $subdimension, $activityName, $dimensions, $rep
9899
} else {
99100
echo "<li>$implementationElement</li>";
100101
}
101-
102+
echo "</li>";
102103
}
103104
echo "</ul>";
104105
} else {

docs/model/decisions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Culture And Organization
2+
The subdimension _Design" fits best in _Culture and Organization_ and is yet not enough for an own dimensions.
3+
Putting it into _Application Hardening_ wouldn't cover _Infrastructure Hardening_.

0 commit comments

Comments
 (0)