remove PHP hosting scripts
This commit is contained in:
11
.deprecated/unpack.php
Normal file
11
.deprecated/unpack.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
$zipFile = $_GET['f'];
|
||||
$zip = new ZipArchive;
|
||||
|
||||
if ($zip->open($zipFile) === TRUE) {
|
||||
$zip->extractTo('.');
|
||||
$zip->close();
|
||||
|
||||
unlink(zipFile);
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user