Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
kubeeye — Herramienta de inspección de clústeres Kubernetes nativa de la nube que detecta configuraciones incorrectas de aplicaciones, componentes no saludables y problemas de nodo mediante reglas personalizadas de OPA, PromQL y del sistema. | Kitploit
Herramientas/GitHubGitHub/kubesphere/kubeeye
Seguridad de Infraestructura en la NubeSeguridad de ContenedoresAnálisis de VulnerabilidadesAuditoría de ConfiguraciónSeguridad en la NubeMala Configuración
GitHubkubesphere/kubeeye

kubeeye

Herramienta de inspección de clústeres Kubernetes nativa de la nube que detecta configuraciones incorrectas de aplicaciones, componentes no saludables y problemas de nodo mediante reglas personalizadas de OPA, PromQL y del sistema.

Ver RepositorioSitio web
852189hace 1 añoRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

Inglés | 中文

KubeEye es una herramienta de inspección de clústeres nativa de la nube diseñada específicamente para Kubernetes, capaz de identificar problemas y riesgos dentro del clúster de Kubernetes basándose en reglas personalizadas.

Inicio rápido

Instalación

Descargue el paquete de instalación desde Releases, que incluye el chart de Helm, reglas de demostración e imágenes para instalación sin conexión.

root@kitploit:~
VERSION=v1.0.3

wget https://github.com/kubesphere/kubeeye/releases/download/${VERSION}/kubeeye-offline-${VERSION}.tar.gz

tar -zxvf kubeeye-offline-${VERSION}.tar.gz

cd kubeeye-offline-${VERSION}

# offline installation, please import the images in the 'images' folder into the local container repository yourself and modify the images repo in `chart/kubeeye/values.yaml`.

helm upgrade --install kubeeye chart/kubeeye -n kubeeye-system --create-namespace

Uso

Importar reglas de inspección

El directorio rules en el paquete de instalación proporciona reglas de demostración, que se pueden personalizar según necesidades específicas.

Aviso: Las reglas PromQL necesitan tener el endpoint de Prometheus configurado de antemano.

root@kitploit:~
kubectl apply -f rules

Crear plan de inspección

Configure planes de inspección según sea necesario.

root@kitploit:~
cat > plan.yaml << EOF
apiVersion: kubeeye.kubesphere.io/v1alpha2
kind: InspectPlan
metadata:
  name: inspectplan
spec:
  # The planned time for executing inspections only supports cron expressions. For example, '*/30 * * * ?' means that the inspection will be performed every 30 minutes.'
  # If only a single inspection is required, then remove this parameter.
  schedule: "* */12 * * ?"
  # The maximum number of retained inspection results, if not filled in, will retain all.
  maxTasks: 10 
  # Should the inspection plan be paused, applicable only to periodic inspections, true or false (default is false).
  suspend: false
  # Inspection timeout, default 10 minutes.
  timeout: 10m
  # Inspection rule list, used to associate corresponding inspection rules, please fill in the inspectRule name.
  # Execute `kubectl get inspectrule` to view the inspection rules in the cluster.
  ruleNames:
  - name: configmap-inspect-rules
  - name: cronjob-inspect-rules
  - name: daemonset-inspect-rules
  - name: deployment-inspect-rules
  - name: event-inspect-rules
  - name: job-inspect-rules
  - name: node-inspect-rules
  - name: pod-inspect-rules
  - name: pod-state-inspect-rules
  # nodeName: master
  # nodeSelector:
  #   node-role.kubernetes.io/master: ""        
  # Multi-cluster inspection (currently only supports multi-cluster inspection in KubeSphere)
  # clusterName: 
  # - name: host
EOF


kubectl apply -f plan.yaml

Obtención de informes de inspección

Verificar resultados de inspección
root@kitploit:~
# View the name of the inspection result for inspection report download.
kubectl get inspectresult
Comando
root@kitploit:~
## Get the address and port of kubeeye-apiserver service.
kubectl get svc -n kubeeye-system kubeeye-apiserver -o custom-columns=CLUSTER-IP:.spec.clusterIP,PORT:.spec.ports[*].port

## Download the inspection report, and please replace <> with the actual information obtained from the environment.
curl http://<svc-ip>:9090/kapis/kubeeye.kubesphere.io/v1alpha2/inspectresults/<result name>\?type\=html -o inspectReport.html

## After downloading, you can use a browser to open the HTML file for viewing.
Consola web
root@kitploit:~
## Create a nodePort type svc for kubeeye-apiserver.
kubectl -n kubeeye-system expose deploy kubeeye-apiserver --port=9090 --type=NodePort --name=ke-apiserver-node-port

## Enter the inspection report URL in the browser to view, and remember to replace <> with the actual information obtained from the environment.
http://<node address>:<node port>/kapis/kubeeye.kubesphere.io/v1alpha2/inspectresults/<result name>?type=html

Lista de reglas admitidas

  • OPA
  • PromQL
  • Cambio de archivo
  • Configuración de parámetros del kernel
  • Estado del servicio systemd
  • Información básica del nodo
  • Inspección de contenido de archivos
  • Conectividad de servicios
Descargar herramienta