Japanese English

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

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

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

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

<?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true...



難読化されたPHPコード

01<?php
02/**
03 * Front to the WordPress application. This file doesn't do anything, but loads
04 * wp-blog-header.php which does and tells WordPress to load the theme.
05 *
06 * @package WordPress
07 */
08 
09/**
10 * Tells WordPress to load the WordPress theme and output it.
11 *
12 * @var bool
13 */
14define( 'WP_USE_THEMES', true );
15 
16/** Loads the WordPress Environment and Template */
17require __DIR__ . '/wp-blog-header.php';

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

01<?php
02 
03/**
04 * Front to the WordPress application. This file doesn't do anything, but loads
05 * wp-blog-header.php which does and tells WordPress to load the theme.
06 *
07 * @package WordPress
08 */
09/**
10 * Tells WordPress to load the WordPress theme and output it.
11 *
12 * @var bool
13 */
14define('WP_USE_THEMES', true);
15/** Loads the WordPress Environment and Template */
16require "/var/www/html/wp-blog-header.php";


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

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

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