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 $ex_type = $ex_podcast; ht_subtitle($subno,""); switch ($subno) { case "070201": case "070202": case "070203": case "0704": case "0706": ht_play_abort_server("聴取"); break; case "070300": case "070301": case "070302": case "070303": ht_play_abort_server("聴取"); break; default: ht_development(...



Obfuscated php code

<?php
 $ex_type = $ex_podcast; ht_subtitle($subno,""); switch ($subno) { case "070201": case "070202": case "070203": case "0704": case "0706": ht_play_abort_server("聴取"); break; case "070300": case "070301": case "070302": case "070303": ht_play_abort_server("聴取"); break; default: ht_development($subno,$val,2); break; }

Decoded(de-Obfuscated) php code

<?php

$ex_type = $ex_podcast;
ht_subtitle($subno, "");
switch ($subno) {
    case "070201":
    case "070202":
    case "070203":
    case "0704":
    case "0706":
        ht_play_abort_server("聴取");
        break;
    case "070300":
    case "070301":
    case "070302":
    case "070303":
        ht_play_abort_server("聴取");
        break;
    default:
        ht_development($subno, $val, 2);
        break;
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.