web-dev-qa-db-ja.com

Wp-cron.phpの既知の脆弱性はありますか

WordPress v.4.1 を使用していますが、すべてのプラグインとテーマは最新のものです。

私は自分のログファイルでこれらのものが多すぎることを見ています...

xxx.xxx.xxx.xxx - - [02/Jan/2015:13:30:27 +0200] "POST /wp-cron.php?doing_wp_cron=1420198227.5184459686279296875000 HTTP/1.0" 200 - "-" "WordPress/217; http://www.example.com"

xxx.xxx.xxx.xxx はWebサイトがホストされているサーバーのIPアドレス、 " http://www.example.com "は私のWebサイトです。

Wp-cron.phpに影響を及ぼす既知の脆弱性(エクスプロイト)はありますか?
ファイルを「保護」する方法はありますか?

ありがとうございました!

8
kanenas

wp-includes/default-filters.phpには、コールバック登録があります。

// WP Cron
if ( !defined( 'DOING_CRON' ) )
    add_action( 'init', 'wp_cron' );

今関数wp_cron()に行けば、これがわかります。

$schedules = wp_get_schedules();
foreach ( $crons as $timestamp => $cronhooks ) {
    if ( $timestamp > $gmt_time ) break;
    foreach ( (array) $cronhooks as $hook => $args ) {
        if ( isset($schedules[$hook]['callback']) && !call_user_func( $schedules[$hook]['callback'] ) )
            continue;
        spawn_cron( $gmt_time );
        break 2;
    }
}

spawn_cron()はPOSTリクエストをあなたがあなたのログに見ていることを送ります:

$doing_wp_cron = sprintf( '%.22F', $gmt_time );
set_transient( 'doing_cron', $doing_wp_cron );

/**
 * Filter the cron request arguments.
 *
 * @since 3.5.0
 *
 * @param array $cron_request_array {
 *     An array of cron request URL arguments.
 *
 *     @type string $url  The cron request URL.
 *     @type int    $key  The 22 digit GMT microtime.
 *     @type array  $args {
 *         An array of cron request arguments.
 *
 *         @type int  $timeout   The request timeout in seconds. Default .01 seconds.
 *         @type bool $blocking  Whether to set blocking for the request. Default false.
 *         @type bool $sslverify Whether SSL should be verified for the request. Default false.
 *     }
 * }
 */
$cron_request = apply_filters( 'cron_request', array(
    'url'  => add_query_arg( 'doing_wp_cron', $doing_wp_cron, site_url( 'wp-cron.php' ) ),
    'key'  => $doing_wp_cron,
    'args' => array(
        'timeout'   => 0.01,
        'blocking'  => false,
        /** This filter is documented in wp-includes/class-http.php */
        'sslverify' => apply_filters( 'https_local_ssl_verify', false )
    )
) );

wp_remote_post( $cron_request['url'], $cron_request['args'] );

ここで、浮動小数点数がどこから来ているのかを見ることもできます。トランジェントを識別するための引数として渡されます。

何も心配する必要はありません。

3
fuxia