
صورة dockerfile لـ PoC لـ CVE-2025-48384
توفر هذه الصورة Dockerfile لإثبات المفهوم (PoC) لـ CVE-2025-48384، المرتبطة بـ https://github.com/vinieger/CVE-2025-48384، بحيث يمكن اختبارها داخل مجموعة Kubernetes.
بناء ونشر إلى سجل GCP:
غيّر
your registry path
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>
احفظ alpine-cve-2025-48384-deployment.yaml
غيّر
your registry path
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
النشر على GKE:
kubectl apply -f alpine-cve-2025-48384-deployment.yaml