<?php
// Acunetix Art — index.zip (source code backup)
// This file simulates a source code backup leak.
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename="index.zip"');
// In a real scenario this would be a zip of the source code
echo 'PK' . chr(5) . chr(6) . str_repeat("\0", 18);
?>
