Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
kube-trivy — Trivy para Kubernetes | Kitploit
Ferramentas/GitHubGitHub/masahiro331/kube-trivy
Scanners de VulnerabilidadesSegurança de ContêineresSegurança na Nuvem
GitHubmasahiro331/kube-trivy

kube-trivy

Trivy para Kubernetes

Ver Repositório
43há 7 anosAinda não revisado

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Um Scanner de Vulnerabilidades Simples e Abrangente para Kubernetes

Resumo

KubeTrivy é uma extensão do trivy para kubernetes. KubeTrivy é um scanner de vulnerabilidades simples e abrangente para Kubernetes. KubeTrivy detecta vulnerabilidades em pacotes de SO (Alpine, RHEL, CentOS, etc.) e dependências de aplicações (Bundler, Composer, npm, yarn etc.). KubeTrivy é fácil de usar. Basta instalar o binário e você está pronto para escanear. Tudo o que você precisa fazer para escanear é especificar um nome de imagem de contêiner no kubernetes.

Consulte as informações sobre o Trivy

Recursos

  • Detecta vulnerabilidades abrangentes
    • Pacotes de SO (Alpine, Red Hat Universal Base Image, Red Hat Enterprise Linux, CentOS, Debian e Ubuntu)
    • Dependências de aplicações (Bundler, Composer, Pipenv, Poetry, npm, yarn e Cargo)
  • Gerenciando vulnerabilidades usando o comando kubectl
    • Criar um CRD no seu Kubernetes
    • Obtenha informações de vulnerabilidade kubectl get vulnerability ou kubetrivy get ${resourceName}
  • Estenda os recursos do Trivy
    • kubetrivy é compatível com o banco de dados local do trivy.
    • kubetrivy é compatível com as opções de comando do trivy.

Instalação no Mac

root@kitploit:~
$ brew tap masahiro331/kube-tirvy
$ brew install kube-trivy
$ kubetrivy -h

Instalação

root@kitploit:~
$ go get -u github.com/masahiro331/kube-trivy
$ kubetrivy -h

Início Rápido

Instalar CRD

root@kitploit:~
$ cat << EOS > crd.yaml
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
  name: vulnerabilities.kubetrivy.io
spec:
  group: kubetrivy.io
  version: v1
  names:
    kind: Vulnerability
    plural: vulnerabilities
  scope: Namespaced
  additionalPrinterColumns:
  - name: UNKNOWN
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.UNKNOWN
  - name: LOW
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.LOW
  - name: MEDIUM
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.MEDIUM
  - name: HIGH
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.HIGH
  - name: CRITICAL
    type: integer
    description: The total of vulnerabilities launched by the kubetrivy
    JSONPath: .spec.statistics.CRITICAL
EOS

$ kubectl apply -f crd.yaml
$ kubectl get vulnerability

Básico

root@kitploit:~
$ kubetrivy -n default scan
$ kubetrivy -n default scan
$ kubectl get vulnerability -n default
$ kubetrivy -n default get ${resourceName}
Baixar ferramenta