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 Fo16i; Fo16i: $myVar = 0; goto dized; dized: function test() { if ($myVar === 0) { return "\x68\145\x6c\x6c\x6f\40\167\157\162\154\144\x21"; } } goto my30z; my30z: ?>...



Obfuscated php code

<?php
 goto Fo16i; Fo16i: $myVar = 0; goto dized; dized: function test() { if ($myVar === 0) { return "\x68\145\x6c\x6c\x6f\40\167\157\162\154\144\x21"; } } goto my30z; my30z: ?>

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.