Module: Msf::Exploit::Remote::HTTP::Kubernetes::Secret

Defined in:
lib/msf/core/exploit/remote/http/kubernetes/secret.rb

Overview

Secret types:

https://kubernetes.io/docs/concepts/configuration/secret/

Constant Summary collapse

Opaque =

Arbitrary user-defined data

'Opaque'
ServiceAccountToken =

service account token

'kubernetes.io/service-account-token'
DockerConfiguration =

serialized ~/.dockercfg file

'kubernetes.io/dockercfg'
DockerConfigurationJson =

serialized ~/.docker/config.json file

'kubernetes.io/dockerconfigjson'
BasicAuth =

credentials for basic authentication

'kubernetes.io/basic-auth'
SSHAuth =

credentials for SSH authentication

'kubernetes.io/ssh-auth'
TLSAuth =

data for a TLS client or server

'kubernetes.io/tls'
BootstrapTokenData =

bootstrap token data

'bootstrap.kubernetes.io/token'