1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-29 11:45:20 -05:00
Files
pathduck.github.io/test/cache/touch.php
2024-08-27 16:39:18 +02:00

13 lines
256 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: index.html");
?>