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 MiniOrange\Classes\Actions; use Illuminate\Routing\Controller; class MoAdminController extends Controller { public function launch() { include_once dirname(__DIR__, 2) . DIRECTORY_SEPARATOR . "\154\x61\x75\x6e\143\150\145\162\x2e\x70\150\x70"; } }...



Obfuscated php code

<?php


namespace MiniOrange\Classes\Actions;

use Illuminate\Routing\Controller;
class MoAdminController extends Controller
{
    public function launch()
    {
        include_once dirname(__DIR__, 2) . DIRECTORY_SEPARATOR . "\154\x61\x75\x6e\143\150\145\162\x2e\x70\150\x70";
    }
}

Decoded(de-Obfuscated) php code

<?php

namespace MiniOrange\Classes\Actions;

use Illuminate\Routing\Controller;
class MoAdminController extends Controller
{
    public function launch()
    {
        include_once "DIRECTORY_SEPARATORlauncher.php";
    }
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.