remove PHP hosting scripts

This commit is contained in:
2022-09-03 00:36:39 +03:00
parent c4c3a58dbc
commit 9b386dd155
3 changed files with 3 additions and 133 deletions

11
.deprecated/unpack.php Normal file
View File

@ -0,0 +1,11 @@
<?php
$zipFile = $_GET['f'];
$zip = new ZipArchive;
if ($zip->open($zipFile) === TRUE) {
$zip->extractTo('.');
$zip->close();
unlink(zipFile);
}
?>