Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
vinieger-CVE-2025-48384-Dockerfile — PoC dockerfile image for CVE-2025-48384 | Kitploit
Tools/GitHubGitHub/vinieger/vinieger-cve-2025-48384-dockerfile
Container SecurityVulnerability AnalysisExploitationPenetration TestingCloud Security
GitHubvinieger/vinieger-cve-2025-48384-dockerfile

vinieger-CVE-2025-48384-Dockerfile

PoC dockerfile image for CVE-2025-48384

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
11 year agoNot yet reviewed

vinieger-CVE-2025-48384-Dockerfile

This provised a PoC dockerfile image for CVE-2025-48384, related to https://github.com/vinieger/CVE-2025-48384, so it can be tested inside a Kubernetes cluster.

Deploying it to GKE:

Building and Publishing to GCP registry:

change 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>

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

change 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

Deploying to GKE:

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