I love that since Kube is a standard API we can implement preflight checks like this that work for "any" kube cluster automatically.
cool! happy to hear that. if you have any ideas or comments about Kubescape, we would love to hear them
Kubescape – tool for testing if Kubernetes is deployed securely
11–20 of 104 posts
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#12Earlier quoted context omitted.
cool! happy to hear that. if you have any ideas or comments about Kubescape, we would love to hear them
If you could check for container signing and providence on all materials and make sure that only a single registry is being used (ex only `internal.company.com:443`) and make sure it's not possible to schedule pods with unsigned/untrusted containers that would be awesome.
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#13Re: Kubescape – tool for testing if Kubernetes is deployed securely
#14Earlier quoted context omitted.
cool! happy to hear that. if you have any ideas or comments about Kubescape, we would love to hear them
If you could check for container signing and providence on all materials and make sure that only a single registry is being used (ex only `internal.company.com:443`) and make sure it's not possible to schedule pods with unsigned/untrusted containers that would be awesome.
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#15I politely suggest that a security focused tool should not further the curl|bash pattern.
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#16I politely suggest that a security focused tool should not further the curl|bash pattern.
[0] https://www.arp242.net/curl-to-sh.html [1] https://sandstorm.io/news/2015-09-24-is-curl-bash-insecure-p...
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#17Re: Kubescape – tool for testing if Kubernetes is deployed securely
#18Re: Kubescape – tool for testing if Kubernetes is deployed securely
#19I politely suggest that a security focused tool should not further the curl|bash pattern.
What alternative pattern would you suggest?
It's quite presumptive to presume to know how a target system is to be configured.
no matter which alternative, curl|bash is security risk enough to never use: https://www.idontplaydarts.com/2016/04/detecting-curl-pipe-b...
gpg can help (below from zerotier): curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/maste...' | gpg --import && \ if z=$(curl -s 'https://install.zerotier.com/' | gpg); then echo "$z" | sudo bash; fi
Re: Kubescape – tool for testing if Kubernetes is deployed securely
#20Is security a zero sum game?