1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2026-02-23 15:35:42 -05:00
Files
pathduck.github.io/test/cache/touch.php
2026-01-21 11:21:55 +01:00

13 lines
248 B
PHP
Executable File

<?php
$wd = getcwd();
$image = "$wd/vivaldi.jpg";
ignore_user_abort(true);
system("touch vivaldi.jpg");
system("mv style1.css style.tmp; mv style2.css style1.css; mv style.tmp style2.css");
system("touch style1.css");
header("Location: ./");
?>