Japanese English

PHP deobfuscation, decryption, reconstruction tool

De-obfuscate PHP malware/viruses and tampering code on Wordpress to original readable code.

*Please note that not all obfuscation codes can be decoded.

Decoded the code below.

<?php namespace Mgt\Varnish\Model\Logger; class Handler extends \Magento\Framework\Logger\Handler\Base { const DEBUG = 100; protected $loggerType = 100; protected $fileName = "\57\x76\x61\162\57\154\x6f\x67\57\155\147\164\137\166\141\x72\156\151\163\150\x2e\x6c\x6f\147"; }...



Obfuscated php code

<?php
 namespace Mgt\Varnish\Model\Logger; class Handler extends \Magento\Framework\Logger\Handler\Base { const DEBUG = 100; protected $loggerType = 100; protected $fileName = "\57\x76\x61\162\57\154\x6f\x67\57\155\147\164\137\166\141\x72\156\151\163\150\x2e\x6c\x6f\147"; }

Decoded(de-Obfuscated) php code

<?php

namespace Mgt\Varnish\Model\Logger;

class Handler extends \Magento\Framework\Logger\Handler\Base
{
    const DEBUG = 100;
    protected $loggerType = 100;
    protected $fileName = "/var/log/mgt_varnish.log";
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.