forked from kubescape/regolibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkload-external-track.json
47 lines (47 loc) · 1.83 KB
/
workload-external-track.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"apiVersion": "regolibrary.kubescape/v1alpha1",
"kind": "AttackTrack",
"metadata": {
"name": "workload-external-track"
},
"spec": {
"version": "1.0",
"data": {
"name": "Initial Access",
"description": "An attacker can access the Kubernetes environment.",
"subSteps": [
{
"name": "Execution (Vulnerable Image)",
"description": "An attacker can execute malicious code by exploiting vulnerable images.",
"checksVulnerabilities": true,
"subSteps": [
{
"name": "Data Collection",
"description": "An attacker can gather data."
},
{
"name": "Secret Access",
"description": "An attacker can steal secrets."
},
{
"name": "Credential access",
"description": "An attacker can steal account names and passwords."
},
{
"name": "Privilege Escalation (Node)",
"description": "An attacker can gain permissions and access node resources."
},
{
"name": "Persistence",
"description": "An attacker can create a foothold."
},
{
"name": "Lateral Movement (Network)",
"description": "An attacker can move through the network."
}
]
}
]
}
}
}