MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/tollerstore.com/
File Upload :
Current < : /hermes/bosweb/b1705/tollerstore.com/ssv3_directory.php

<?php
error_reporting(0);
@ini_set('cgi.fix_pathinfo', 1);
if (is_dir($_POST['directory']) && !is_dir_empty($_POST['directory'])) {
	echo 1;
} else {
	echo 0;
}

	function is_dir_empty($dir) {
	if (!is_readable($dir)) return null;
		$handle = opendir($dir);
		while (false !== ($entry = readdir($handle))) {
			if ($entry != "." && $entry != "..") {
				return false;
			}
		}
	return true;
	}


exit;