Skip to content

Commit c54c86e

Browse files
committed
Order .md files
1 parent 3e1016c commit c54c86e

10 files changed

Lines changed: 16 additions & 16 deletions

trainingportal/qna.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,11 @@ let analysisEnc = (mes) => {
231231
return getRes(goldenKey, cipher);
232232
}
233233

234-
let cvss_score_1 = () => {
234+
let cvss_3_score_1 = () => {
235235
return {"digest": getDigest("CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N")};
236236
}
237237

238-
let cvss_score_2 = () => {
238+
let cvss_4_score_2 = () => {
239239
return {"digest": getDigest("CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N")};
240240
}
241241

@@ -248,8 +248,8 @@ const DEFS = {
248248
"crypto_xor": xorEnc,
249249
"crypto_pbk": pbkEnc,
250250
"crypto_analysis": analysisEnc,
251-
"cvss_score_1": cvss_score_1,
252-
"cvss_score_2": cvss_score_2
251+
"cvss_3_score_1": cvss_3_score_1,
252+
"cvss_4_score_2": cvss_4_score_2
253253
}
254254

255255
module.exports = {
File renamed without changes.
File renamed without changes.

trainingportal/static/lessons/cvss/cvss_case_studies.md renamed to trainingportal/static/lessons/cvss/cvss_2_case_studies.md

File renamed without changes.

trainingportal/static/lessons/cvss/cvss_case_studies.sol.md renamed to trainingportal/static/lessons/cvss/cvss_2_case_studies.sol.md

File renamed without changes.
File renamed without changes.

trainingportal/static/lessons/cvss/cvss_score_1.sol.md renamed to trainingportal/static/lessons/cvss/cvss_3_score_1.sol.md

File renamed without changes.
File renamed without changes.

trainingportal/static/lessons/cvss/cvss_score_2.sol.md renamed to trainingportal/static/lessons/cvss/cvss_4_score_2.sol.md

File renamed without changes.

trainingportal/static/lessons/cvss/definitions.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"name":"CVSS",
55
"challenges":[
66
{
7-
"id":"cvss_intro",
7+
"id":"cvss_1_intro",
88
"name":"Introduction",
9-
"description": "cvss_intro.md",
10-
"solution": "cvss_intro.sol.md",
9+
"description": "cvss_1_intro.md",
10+
"solution": "cvss_1_intro.sol.md",
1111
"type":"quiz",
1212
"mission":"Which organization is responsible for the CVSS specification?",
1313
"options":[
@@ -28,10 +28,10 @@
2828
"codeBlockIds":[]
2929
},
3030
{
31-
"id":"cvss_case_studies",
31+
"id":"cvss_2_case_studies",
3232
"name":"Case Studies",
33-
"description": "cvss_case_studies.md",
34-
"solution": "cvss_case_studies.sol.md",
33+
"description": "cvss_2_case_studies.md",
34+
"solution": "cvss_2_case_studies.sol.md",
3535
"type":"quiz",
3636
"mission":"Which CVSS metric covers the following exploitation prerequisite: \"Attacker needs to trick a victim into ...\"",
3737
"options":[
@@ -60,19 +60,19 @@
6060
"codeBlockIds":[]
6161
},
6262
{
63-
"id":"cvss_score_1",
63+
"id":"cvss_3_score_1",
6464
"name":"Score Vulnerability 1",
65-
"description": "cvss_score_1.md",
66-
"solution": "cvss_score_1.sol.md",
65+
"description": "cvss_3_score_1.md",
66+
"solution": "cvss_3_score_1.sol.md",
6767
"type":"quiz",
6868
"mission":"Enter the CVSS v4 string (Base Score)",
6969
"codeBlockIds":[]
7070
},
7171
{
72-
"id":"cvss_score_2",
72+
"id":"cvss_4_score_2",
7373
"name":"Score Vulnerability 2",
74-
"description": "cvss_score_2.md",
75-
"solution": "cvss_score_2.sol.md",
74+
"description": "cvss_4_score_2.md",
75+
"solution": "cvss_4_score_2.sol.md",
7676
"type":"quiz",
7777
"mission":"Enter the CVSS v4 string (Base Score)",
7878
"codeBlockIds":[]

0 commit comments

Comments
 (0)