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
vinieger-CVE-2025-48384-Dockerfile — Imagen Dockerfile de PoC para CVE-2025-48384 | Kitploit
Herramientas/GitHubGitHub/vinieger/vinieger-cve-2025-48384-dockerfile
Seguridad de ContenedoresAnálisis de VulnerabilidadesExplotaciónPruebas de PenetraciónSeguridad en la Nube
GitHubvinieger/vinieger-cve-2025-48384-dockerfile

vinieger-CVE-2025-48384-Dockerfile

Imagen Dockerfile de PoC para CVE-2025-48384

Ver Repositorio

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
1hace 1 añoAún no revisado

vinieger-CVE-2025-48384-Dockerfile

Esto proporciona una imagen dockerfile de PoC para CVE-2025-48384, relacionada con https://github.com/vinieger/CVE-2025-48384, para que pueda probarse dentro de un clúster de Kubernetes.

Desplegándolo en GKE:

Compilando y publicando en el registro de GCP:

cambia your registry path

root@kitploit:~
IMAGE="<your registry path>/alpine-cve-2025-48384:latest"

# Build and push
docker build -t $IMAGE .
docker push $IMAGE

# Check it's there
gcloud artifacts docker images list <your registry path>

guarda alpine-cve-2025-48384-deployment.yaml

cambia your registry path

root@kitploit:~
apiVersion: apps/v1
kind: Deployment
metadata:
  name: alpine-cve-2025-48384
spec:
  replicas: 1
  selector:
    matchLabels:
      app: alpine-cve-2025-48384
  template:
    metadata:
      labels:
        app: alpine-cve-2025-48384
    spec:
      containers:
      - name: alpine-cve-2025-48384
        image: <your registry path>/alpine-cve-2025-48384:latest

Desplegando en GKE:

root@kitploit:~
kubectl apply -f alpine-cve-2025-48384-deployment.yaml
Descargar herramienta