Sploitus

Exploit for CVE-2025-48384

githubexploit Β· 2025-07-11

Exploit Code

README47 lines
## https://sploitus.com/exploit?id=FD7A1193-C5A6-5343-AE2A-8FC5C80354F0
# 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`
```
IMAGE="/alpine-cve-2025-48384:latest"

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

# Check it's there
gcloud artifacts docker images list 
```

save `alpine-cve-2025-48384-deployment.yaml`
> change `your registry path`
``` yaml
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: /alpine-cve-2025-48384:latest
```


Deploying to GKE:
```
kubectl apply -f alpine-cve-2025-48384-deployment.yaml
```