# Improper Access Control (CWE-284) The product does not restrict or incorrectly restricts access to a resource from an unauthorized actor. **Stack:** Kubernetes - Prevalence: High Frequently exploited - Impact: High 3 high-severity rules - Prevention: Documented 4 fix examples **OWASP:** Broken Access Control (A01:2021-Broken Access Control) - #1 ## Description Access control involves determining which subjects can access which objects. When access control is implemented incorrectly, it can lead to unauthorized access to sensitive data or functionality. ## Prevention Prevention strategies for Improper Access Control based on 1 Shoulder detection rules. ### Kubernetes Define NetworkPolicy resources to restrict pod-to-pod traffic and enforce network segmentation ## Warning Signs - [MEDIUM] Workload has no NetworkPolicy for network segmentation - [MEDIUM] Kubernetes deployments without associated NetworkPolicy resources ## Consequences - Read Application Data - Modify Application Data - Execute Unauthorized Code - Gain Privileges ## Mitigations - Implement proper access control checks on all resources - Use the principle of least privilege - Enforce access controls server-side, not just in the UI ## Detection - Total rules: 4 - Languages: go, javascript, typescript, kubernetes, yaml, python ## Rules by Language ### Kubernetes (1 rules) - **Missing Network Policy** [MEDIUM]: Detects Kubernetes deployments without associated NetworkPolicy resources. - Remediation: Define a NetworkPolicy to control pod network access. ```yaml kind: NetworkPolicy spec: podSelector: {} policyTypes: [Ingress] ``` Learn more: https://shoulder.dev/learn/kubernetes/cwe-284/missing-network-policy ### Yaml (1 rules) - **Missing Network Policy** [MEDIUM]: Detects Kubernetes deployments without associated NetworkPolicy resources. - Remediation: Define a NetworkPolicy to control pod network access. ```yaml kind: NetworkPolicy spec: podSelector: {} policyTypes: [Ingress] ``` Learn more: https://shoulder.dev/learn/kubernetes/cwe-284/missing-network-policy