Git Product home page Git Product logo

walidshaari / certified-kubernetes-security-specialist Goto Github PK

View Code? Open in Web Editor NEW
1.9K 93.0 525.0 190 KB

Curated resources help you prepare for the CNCF/Linux Foundation CKS 2021 "Kubernetes Certified Security Specialist" Certification exam. Please provide feedback or requests by raising issues, or making a pull request. All feedback for improvements are welcome. thank you.

License: Creative Commons Attribution Share Alike 4.0 International

AGS Script 99.84% Jinja 0.16%
kubernetes-security kubernetes cks ckss kernel-hardening exam-objectives os-footprint security seccomp apparmor

certified-kubernetes-security-specialist's Introduction

License: CC BY-SA 4.0 PRs Welcome

Certified Kubernetes Security Specialist - CKS

Online curated resources that will help you prepare for taking the Kubernetes Certified Kubernetes Security Specialist CKS Certification exam.

  • Please raise an issue, or make a pull request for fixes, new additions, or updates.

Resources are primarly cross referenced back to the allowed CKS sites during the exam as per CNCF/Linux Foundation exam allowed search rules. Videos and other third party resources e.g. blogs will be provided as an optional complimentary material and any 3rd party material not allowed in the exam will be designated with 🚩 in the curriculum sections below.

Ensure you have the right version of Kubernetes documentation selected (e.g. v1.26 as of January 2023) especially for API objects and annotations, however for third party tools, you might find that you can still find references for them in old releases and blogs e.g. Falco install.

  • Icons/emoji legend
    • πŸ“‹ Expand to see more content
    • πŸ˜• Verify, not best resource yet
    • πŸ”΅ Good overall refence, can be used in the exam
    • 🚩 External third-party resource, can not be used during exam
    • πŸ“ To-do, item that needs further checking(todo list for future research/commits)

Exam Brief

Offical exam objectives you review and understand in order to pass the test.

  • Duration : two (2) hours

  • Number of questions: 15-20 hands-on performance based tasks

  • Passing score: 67%

  • Certification validity: two (2) years

  • Prerequisite: valid CKA

  • Cost: $375 USD, One (1) year exam eligibility, with a free retake within the year.

    Linux Foundation offer several discounts around the year e.g. CyberMonday, Kubecon attendees among other special holidays/events

URLs to prepare for the exam:

This includes all available language translations of these pages (e.g. https://kubernetes.io/zh/docs)

Exam interface

According to official Linux Foundation documentation and as of June 2022, there was a change in the exam platform. It is just an exam platform, so the exam questions will not change, but there were a few things that seemed to concern you, so I will write them down:

  • A remote desktop configured with the tools and software needed to complete the tasks
  • Candidates can start the β€œTake Exam” Process 30 minutes prior to their scheduled date/time (currently 15mins on PSI ExamsLocal platform)
  • Self check-in: no need to wait for a proctor in order to upload your ID and scan your environment
  • The exam will now be taken using the PSI Secure Browser, which can be downloaded using the newest versions of Microsoft Edge, Safari, Chrome, or Firefox
  • Multiple monitors will no longer be permitted
  • Use of personal bookmarks will no longer be permitted (Personal browser bookmarks such as bookmarked links to YAML files will not be accessible within the PSI Secure Browser)

The new ExamUI includes improved features such as:

  • A timer that displays the actual time remaining (in minutes) and provides an alert with 30, 15, or 5 minute remaining
  • The content panel remains the same (presented on the Left Hand Side of the ExamUI)

CKS repo topics overview

Extra helpful material


Cluster Setup - 10%

πŸ”΅ Securing a Cluster

  1. Use Network security policies to restrict cluster level access

  2. 🚩 Use CIS benchmark to review the security configuration of Kubernetes components (etcd, kubelet, kubedns, kubeapi)

    • 🚩 Kube-bench - Checks whether Kubernetes is deployed securely by running the checks documented ain the CIS Kubernetes Benchmark.
  3. Properly set up Ingress objects with security control

  4. Protect node metadata and endpoints

    Using Kubernetes network policy to restrict pods access to cloud metadata
    • This example assumes AWS cloud, and metadata IP address is 169.254.169.254 should be blocked while all other external addresses are not.
    apiVersion: networking.k8s.io/v1
    kind: NetworkPolicy
    metadata:
      name: deny-only-cloud-metadata-access
    spec:
      podSelector: {}
      policyTypes:
      - Egress
      egress:
      - to:
        - ipBlock:
          cidr: 0.0.0.0/0
          except:
          - 169.254.169.254/32
  5. Minimize use of, and access to, GUI elements

  6. Verify platform binaries before deploying

    πŸ“‹ Kubernetes binaries can be verified by their digest **sha512 hash**
    • Checking the Kubernetes release page for the specific release
    • Checking the change log for the images and their digests

Cluster Hardening - 15%

  1. Restrict access to Kubernetes API
  1. Use Role-Based Access Controls to minimize exposure

  2. Exercise caution in using service accounts e.g. disable defaults, minimize permissions on newly created ones

    πŸ“‹ Opt out of automounting API credentials for a service account

    Opt out at service account scope

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: build-robot
    automountServiceAccountToken: false

    Opt out at pod scope

    apiVersion: v1
    kind: Pod
    metadata:
      name: cks-pod
    spec:
      serviceAccountName: default
      automountServiceAccountToken: false
  3. Update Kubernetes frequently

System Hardening - 15%

  1. Minimize host OS footprint (reduce attack surface)

    πŸ“‹ πŸ˜• Reduce host attack surface
  2. Minimize IAM roles

  3. Minimize external access to the network

    πŸ“‹ πŸ˜• if it means deny external traffic to outside the cluster?!!
    • not tested, however, the thinking is that all pods can talk to all pods in all name spaces but not to the outside of the cluster!!!
    apiVersion: networking.k8s.io/v1
    kind: NetworkPolicy
    metadata:
      name: deny-external-egress
    spec:
      podSelector: {}
      policyTypes:
      - Egress
      egress:
        to:
        - namespaceSelector: {}
  4. Appropriately use kernel hardening tools such as AppArmor, seccomp

Minimize Microservice Vulnerabilities - 20%

  1. Setup appropriate OS-level security domains e.g. using PSA, OPA, security contexts
  2. Manage kubernetes secrets
  3. Use container runtime sandboxes in multi-tenant environments (e.g. gvisor, kata containers)
  4. Implement pod to pod encryption by use of mTLS
  • πŸ“ check if service mesh is part of the CKS exam

Supply Chain Security - 20%

  1. Minimize base image footprint

    πŸ“‹ Minimize base Image
  2. Secure your supply chain: whitelist allowed image registries, sign and validate images

  1. Use static analysis of user workloads (e.g. kubernetes resources, docker files)
  2. Scan images for known vulnerabilities

Monitoring, Logging and Runtime Security - 20%

  1. Perform behavioural analytics of syscall process and file activities at the host and container level to detect malicious activities

  2. Detect threats within a physical infrastructure, apps, networks, data, users and workloads

  3. Detect all phases of attack regardless where it occurs and how it spreads

    πŸ“‹ Attack Phases
  4. Perform deep analytical investigation and identification of bad actors within the environment

  5. Ensure immutability of containers at runtime

  6. Use Audit Logs to monitor access


Extra helpful material

Slack

  1. Kubernetes Community - #cks-exam-prep
  2. Kubernauts Community - #cks
  3. Saiyam's Pathak OpenSource Discord #CKS channel

Twitch

  1. KubeNativeSecurity twitch stream Talk Shows & Podcasts

Books

  1. Aqua Security Liz Rice:Free Container Security Book
  2. Learn Kubernetes security: Securely orchestrate, scale, and manage your microservices in Kubernetes deployments
  3. Let's Learn CKS Scenarios

Youtube Videos

  1. Google/Ian Lewis: Kubernetes security best practices
  2. Code in Action for the book Learn Kubernetes Security playlist
  3. Kubernetes security concepts and demos
  4. Webinar | Certified Kubernetes Security Specialist (CKS), January 2022

Containers and Kubernetes Security Training

  1. Killer.sh CKS practice exam - use code walidshaari for 20% discount.
  2. UDEMY Kim WΓΌstkamp's Kubernetes CKS 2021 Complete Course with killer.sh Simulator (discounted price)
  3. Linux Foundation Kubernetes Security essentials LFS 260
  4. Mumshad's KodeCloud "Certified Kubernetes Security Specialist" CKS and training and labs
  5. Linux Academy/ACloudGuru Kubernetes security
  6. Zeal Vora's Udemy Certified Kubernetes Security Specialist 2021 - Link includes a discount till 28th January 2021
  7. Cloud native security defending containers and kubernetes
  8. Tutorial: Getting Started With Cloud-Native Security - Liz Rice, Aqua Security & Michael Hausenblas
  9. K21 academy CKS step by step activity hands-on-lab activity guide
  10. Andrew Martin Control Plane Security training
  11. Free Exam simulators from killer.sh available with CKS certification from Linux Foundation
  12. Sysdig Falco 101
  13. Killercoda in-browser CKS Playground and Challenges - FREE

Other CKS related repos

  1. Stackrox CKS study guide - Brief and informative study guide from Stackrox @mfosterrox
  2. Kim's CKS Challenge series - also posted on medium @ https://wuestkamp.medium.com/
  3. Abdennour
  4. Ibrahim Jelliti
  5. Viktor Vedmich
  6. Kubernetes Security Checklist and Requirements
  7. CKS Exam series

certified-kubernetes-security-specialist's People

Contributors

100daysofdevops avatar alles-klar avatar cloudgrimm avatar csantanapr avatar dvyakimov avatar fntlnz avatar krouser avatar miooochi avatar moabukar avatar myugan avatar pmmalinov01 avatar saiyam1814 avatar seifrajhi avatar shubhamtatvamasi avatar suchakra012 avatar tylerauerbeck avatar walidshaari avatar wuestkamp avatar zufardhiyaulhaq avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

certified-kubernetes-security-specialist's Issues

categorize resources to relevant topic

we need to categorize any resources with create a new directory maybe something like this container-security or challenges if there is some exercises to practicing (hands-on) and also other stuff, what do you think? because some resources maybe will related to container stuff not kubernetes itself (cluster)

UDEMY Kim's CKS course removed

It looks like the last merge removed the UDEMY CKS course. will issue a pull request soon, with this and new courses released recently

Exam fee $375

If possible update the price of CKS. It's now $375.

Pod Security policy removed from k8s v1.25

Since the pod security policy has been removed from 1.25, are we going to be asked any questions on it?
Would the questions instead be based on pod security admission?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.