Japanese English

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

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

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

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

<?php /** * The base configuration for WordPress * * The wp-config.php creation script uses this file during the installation. * You don't have to use the website, you can copy this file to "wp-config.php" * and fill in the values. * * This file contains the following configurations: * * * Databa...



難読化されたPHPコード

<?php
/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the website, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
 *
 * @package WordPress
 */

// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'moritapr_m85pz' );

/** Database username */
define( 'DB_USER', 'moritapr_gqhks' );

/** Database password */
define( 'DB_PASSWORD', '6bnao2ic7o' );

/** Database hostname */
define( 'DB_HOST', 'mysql8015.xserver.jp' );

/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );

/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );

/**#@+
 * Authentication unique keys and salts.
 *
 * Change these to different unique phrases! You can generate these using
 * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
 *
 * You can change these at any point in time to invalidate all existing cookies.
 * This will force all users to have to log in again.
 *
 * @since 2.6.0
 */
define( 'AUTH_KEY',         'tA!AWv+@#p)HB*>0xPVCq7A+W.`qmayYl2T)_Ky?Wd`1cSs5Y5Vk.>6iv}IY;Z).' );
define( 'SECURE_AUTH_KEY',  'C:0 ]l}${8-5?E/`c3+:z__XV|m^-Z3uKC,/mgf;#@e)WqGoz}Eh4#vh+JdTTY>F' );
define( 'LOGGED_IN_KEY',    '$j$6<]+5G?[~`w?H#!:;gif-GvDp;`U2?p)8k`PK{D0^VO?wRjgv<hM>|(OS A~x' );
define( 'NONCE_KEY',        'vd?3Z Zk1m*v|@`JKkvCKke)Oo,X]Un;zy8g)J5#6hk >{?zbG%g#8hAX0f!i|HZ' );
define( 'AUTH_SALT',        '1__)Q%7@##G*(7y?kGa1Y_MioOo-kK;C(dr=dig2uR/l4>z,jBS-@q#c ?85%2+$' );
define( 'SECURE_AUTH_SALT', '@Q}zdm8RwGHd<:zi5ai#UG:qPRWJtr70||mD/?hHTjom$hOQu_L!=LTy0O=xW16K' );
define( 'LOGGED_IN_SALT',   'u`SA3Wt:[GaSc}7iJK!PJUe5Q<G$=?9$1rb35%szS{/ZZ8]=Qv?SEwT~3<t9=Hly' );
define( 'NONCE_SALT',       '^Z#/hNI4M!~U]]ywrJz0,9#+uZX)2g?KHJRQ]Eai:b<lw&Z;kDT_WUU.#,niha?<' );

/**#@-*/

/**
 * WordPress database table prefix.
 *
 * You can have multiple installations in one database if you give each
 * a unique prefix. Only numbers, letters, and underscores please!
 *
 * At the installation time, database tables are created with the specified prefix.
 * Changing this value after WordPress is installed will make your site think
 * it has not been installed.
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
 */
$table_prefix = 'wp_';

/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
 */
define( 'WP_DEBUG', false );

/* Add any custom values between this line and the "stop editing" line. */



/* That's all, stop editing! Happy publishing. */

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
	define( 'ABSPATH', __DIR__ . '/' );
}

/** Sets up WordPress vars and included files. */
require_once ABSPATH . 'wp-settings.php';

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

<?php

/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the website, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * Database settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
 *
 * @package WordPress
 */
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'moritapr_m85pz');
/** Database username */
define('DB_USER', 'moritapr_gqhks');
/** Database password */
define('DB_PASSWORD', '6bnao2ic7o');
/** Database hostname */
define('DB_HOST', 'mysql8015.xserver.jp');
/** Database charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The database collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**#@+
 * Authentication unique keys and salts.
 *
 * Change these to different unique phrases! You can generate these using
 * the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
 *
 * You can change these at any point in time to invalidate all existing cookies.
 * This will force all users to have to log in again.
 *
 * @since 2.6.0
 */
define('AUTH_KEY', 'tA!AWv+@#p)HB*>0xPVCq7A+W.`qmayYl2T)_Ky?Wd`1cSs5Y5Vk.>6iv}IY;Z).');
define('SECURE_AUTH_KEY', 'C:0 ]l}${8-5?E/`c3+:z__XV|m^-Z3uKC,/mgf;#@e)WqGoz}Eh4#vh+JdTTY>F');
define('LOGGED_IN_KEY', '$j$6<]+5G?[~`w?H#!:;gif-GvDp;`U2?p)8k`PK{D0^VO?wRjgv<hM>|(OS A~x');
define('NONCE_KEY', 'vd?3Z Zk1m*v|@`JKkvCKke)Oo,X]Un;zy8g)J5#6hk >{?zbG%g#8hAX0f!i|HZ');
define('AUTH_SALT', '1__)Q%7@##G*(7y?kGa1Y_MioOo-kK;C(dr=dig2uR/l4>z,jBS-@q#c ?85%2+$');
define('SECURE_AUTH_SALT', '@Q}zdm8RwGHd<:zi5ai#UG:qPRWJtr70||mD/?hHTjom$hOQu_L!=LTy0O=xW16K');
define('LOGGED_IN_SALT', 'u`SA3Wt:[GaSc}7iJK!PJUe5Q<G$=?9$1rb35%szS{/ZZ8]=Qv?SEwT~3<t9=Hly');
define('NONCE_SALT', '^Z#/hNI4M!~U]]ywrJz0,9#+uZX)2g?KHJRQ]Eai:b<lw&Z;kDT_WUU.#,niha?<');
/**#@-*/
/**
 * WordPress database table prefix.
 *
 * You can have multiple installations in one database if you give each
 * a unique prefix. Only numbers, letters, and underscores please!
 *
 * At the installation time, database tables are created with the specified prefix.
 * Changing this value after WordPress is installed will make your site think
 * it has not been installed.
 *
 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
 */
$table_prefix = 'wp_';
/**
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 *
 * For information on other constants that can be used for debugging,
 * visit the documentation.
 *
 * @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
 */
define('WP_DEBUG', false);
/* Add any custom values between this line and the "stop editing" line. */
/* That's all, stop editing! Happy publishing. */
/** Absolute path to the WordPress directory. */
if (!defined('ABSPATH')) {
    define('ABSPATH', "/var/www/html/");
}
/** Sets up WordPress vars and included files. */
require_once "/var/www/html/wp-settings.php";


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

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

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