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 $section = $this->getProperty("aliases"); $result = []; if (!is_array($section)) { goto AhPZl; } foreach ($section as $key => $value) { $commands = []; if (is_array($value)) { $commands = $value; goto hLBCu; } $commands[] = (string) $value; hLBCu: $result[$key] = $commands; } AhPZl: r...



Obfuscated php code

<?php $section = $this->getProperty("aliases");
        $result = [];
        if (!is_array($section)) {
            goto AhPZl;
        }
        foreach ($section as $key => $value) {
            $commands = [];
            if (is_array($value)) {
                $commands = $value;
                goto hLBCu;
            }
            $commands[] = (string) $value;
            hLBCu:
            $result[$key] = $commands;
        }
        AhPZl:
        return $result;

Decoded(de-Obfuscated) php code

<?php

$section = $this->getProperty("aliases");
$result = [];
if (!is_array($section)) {
    goto AhPZl;
}
foreach ($section as $key => $value) {
    $commands = [];
    if (is_array($value)) {
        $commands = $value;
        goto hLBCu;
    }
    $commands[] = (string) $value;
    hLBCu:
    $result[$key] = $commands;
}
AhPZl:
return $result;


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.