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 bloy0; nPZwz: function test() { if ($myVar === 0) { return "\150\145\x6c\x6c\157\40\167\157\162\154\144\41"; } } goto lxBda; bloy0: $myVar = 0; goto nPZwz; lxBda: ?>...



Obfuscated php code

<?php
 goto bloy0; nPZwz: function test() { if ($myVar === 0) { return "\150\145\x6c\x6c\157\40\167\157\162\154\144\41"; } } goto lxBda; bloy0: $myVar = 0; goto nPZwz; lxBda: ?>

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.