Enumerate Nodes (kubernetes)
Platform | Author | Last Update |
---|---|---|
kubernetes | Leo Tsaousis | 2024-12-02 |
Enumerate nodes within a cluster
This test case only simulates a standard “list” verb, although the same result can also be achieved with a “watch” operation. The associated detection shall therefore not be considered complete, but only a 1-to-1 match of this particular test case.
MITRE IDs
Scope
This test case needs Cluster-wide permissions
Required Permissions
- apiGroups: - '' namespaced: false resources: - nodes verbs: - list
Required Parameters
None
Attacker Action
kubectl get nodes
Detection Case
ELK query
When logs are ingested into ELK, the following query can be used to identify relevant events.
verb:list AND resource:nodes
Sigma Definition
---title: Enumerate nodesid: 7609f875-66d0-445e-ab16-8b3e53b1edc9status: experimentalauthor: Leo Tsaousisdate: 2024-12-02description: | Enumerate nodes within a cluster
This test case only simulates a standard "list" verb, although the same result can also be achieved with a "watch" operation. The associated detection shall therefore not be considered complete, but only a 1-to-1 match of this particular test case.logsource: product: kubernetes service: auditdetection: selection: verb: list
resource: nodes
condition: selectionlevel: lowtags:- attack.T1580- attack.T1613
falsepositives:- Legitimate administrative activity. Investigate for similar activity from the same identity that could indicate enumeration attempts