DF-0935 / build.sh
#!/bin/sh # build.sh — DF-0935 build all PoC artifacts # Usage: ./build.sh (run inside findings/poc/DF-0935/ on the guest, or # ssh to the guest and cd there first) set -e cc -o dfpoc-rlimit-overflow dfpoc-rlimit-overflow.c cc -o maxcalc maxcalc.c cc -o maxinflate maxinflate.c echo "BUILD OK" ls -l dfpoc-rlimit-overflow maxcalc maxinflate |