Files
ctf-hub/web/web_3/code/index.php
2018-08-06 21:04:14 +08:00

8 lines
223 B
PHP

<?php
$str = addslashes($_GET['option']);
$file = file_get_contents('option.php');
$file = preg_replace('|\$option=\'.*\';|', "\$option='$str';", $file);
file_put_contents('option.php', $file);
highlight_file(__FILE__);
?>