<?php
// create_prepend.php - Writes the prepend file that will create a marker if included
$content = '<?php file_put_contents("/tmp/prepend_worked_by_cve", "CVE worked"); ?>';
file_put_contents('/tmp/prepend_test.php', $content);
echo "Prepend file created at /tmp/prepend_test.php\n";
?>