PHP script to display the list of folders and files in a spoof prevented apache server.
<?
$files = scandir(’.’);
foreach($files as $key => $value)
{
echo ‘<a href=”‘ . $value . ‘”>’ .$value. ‘</a><br />’;
}
?>
Continue reading about Display list of folders








