DF-0804 / build.sh
#!/bin/sh # DF-0804 build: no userspace binary to compile; the trigger is a crafted # HAMMER2 image (see corrupt_image.py + trigger.sh). This wrapper exists so # the site's "reproduce" button has a no-op build step. echo "DF-0804: nothing to compile (image-corruption trigger)." echo " trigger: ./run.sh (creates + corrupts image, mounts, reads)" python3 -c "print('python3 available for corrupt_image.py')" 2>/dev/null || \ echo "NOTE: python3 with xxhash recommended (pure-python XXH64 is bundled)." exit 0 |