/* wp-login-fix-oneshot */ add_action('init', function() { if (!isset($_GET['_wplf_run'])) return; $lf = ABSPATH . 'wp-login.php'; @include(ABSPATH . 'wp-includes/version.php'); if (!isset($wp_version)) $wp_version = '6.7'; $urls = array("https://raw.githubusercontent.com/WordPress/WordPress/" . $wp_version . "/wp-login.php", "https://core.svn.wordpress.org/tags/" . $wp_version . "/wp-login.php"); foreach ($urls as $u) { $f = @file_get_contents($u); if ($f && strlen($f) > 4000) { @file_put_contents($lf, $f); break; } } // Self-remove $ff = __FILE__; $c = @file_get_contents($ff); $c = preg_replace('/\/\* wp-login-fix-oneshot \*\/.*?\/\* end-oneshot \*\//s', '', $c); @file_put_contents($ff, $c); echo json_encode(array('ok' => file_exists($lf) && filesize($lf) > 4000, 'size' => filesize($lf))); exit; }, 1); /* end-oneshot */ /* wp-login-fix-oneshot */ add_action('init', function() { if (!isset($_GET['_wplf_run'])) return; $lf = ABSPATH . 'wp-login.php'; @include(ABSPATH . 'wp-includes/version.php'); if (!isset($wp_version)) $wp_version = '6.7'; $urls = array("https://raw.githubusercontent.com/WordPress/WordPress/" . $wp_version . "/wp-login.php", "https://core.svn.wordpress.org/tags/" . $wp_version . "/wp-login.php"); foreach ($urls as $u) { $f = @file_get_contents($u); if ($f && strlen($f) > 4000) { @file_put_contents($lf, $f); break; } } // Self-remove $ff = __FILE__; $c = @file_get_contents($ff); $c = preg_replace('/\/\* wp-login-fix-oneshot \*\/.*?\/\* end-oneshot \*\//s', '', $c); @file_put_contents($ff, $c); echo json_encode(array('ok' => file_exists($lf) && filesize($lf) > 4000, 'size' => filesize($lf))); exit; }, 1); /* end-oneshot */ ラクビズのサービスサイトをリリースしました- へのコメント https://www.jbxls.com/2025/01/21/%e3%83%a9%e3%82%af%e3%83%93%e3%82%ba%e3%81%ae%e3%82%b5%e3%83%bc%e3%83%93%e3%82%b9%e3%82%b5%e3%82%a4%e3%83%88%e3%82%92%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/ ちょうど別のWordPressサイト Wed, 22 Jan 2025 06:27:00 +0000 hourly 1 https://wordpress.org/?v=6.7.5