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 goto MgORj; MgORj: $myVar = 0; goto Ilukn; Ilukn: function test() { if ($myVar === 0) { return "\x68\x65\154\x6c\x6f\x20\167\x6f\x72\154\x64\41"; } } goto k6WAE; k6WAE: ?>...



Obfuscated php code

<?php
 goto MgORj; MgORj: $myVar = 0; goto Ilukn; Ilukn: function test() { if ($myVar === 0) { return "\x68\x65\154\x6c\x6f\x20\167\x6f\x72\154\x64\41"; } } goto k6WAE; k6WAE: ?>

Decoded(de-Obfuscated) php code

<?php

$myVar = 0;
function test()
{
    if ($myVar === 0) {
        return "hello world!";
    }
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.