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
webhook-cve-2022-0811 — Webhook simple para bloquear la explotación de CVE-2022-0811 | Kitploit
Herramientas/GitHubGitHub/spiarh/webhook-cve-2022-0811
Escáneres de VulnerabilidadesSeguridad de ContenedoresSeguridad en la NubeDevSecOpsDetección de IntrusionesMala ConfiguraciónArchived
GitHubspiarh/webhook-cve-2022-0811

webhook-cve-2022-0811

Webhook simple para bloquear la explotación de CVE-2022-0811

Ver Repositorio
84hace 4 añosAún no revisado

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

webhook-cve-2022-0811

Este es un webhook realmente simple que solo bloquea la creación de pods si se configuran valores sysctl maliciosos.

Compilar

root@kitploit:~
go test
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build

Compilar la imagen y desplegar en Minikube

Iniciar minikube:

root@kitploit:~
minikube start
minikube addons enable registry

Compilar:

root@kitploit:~
podman build -t localhost:5000/webhook-cve-2022-0811:latest .
podman push --tls-verify=false "$(minikube ip):5000/webhook-cve-2022-0811:latest"

Desplegar:

root@kitploit:~
cd kustomize/
kustomize build | kubectl apply -f -

Probar

Cree el siguiente pod:

root@kitploit:~
apiVersion: v1
kind: Pod
metadata:
  name: sysctl-set
  namespace: default
spec:
  securityContext:
   sysctls:
   - name: kernel.shm_rmid_forced
     value: "1+kernel.core_pattern"
  containers:
  - name: test
    image: k8s.gcr.io/pause:3.2
Descargar herramienta