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 ht_subtitle($subno,""); switch ($subno) { case "090101": case "090102": case "090103": ht_config_ex($subno); break; default: ht_development($subno,$val,2); break; }...



Obfuscated php code

<?php
 ht_subtitle($subno,""); switch ($subno) { case "090101": case "090102": case "090103": ht_config_ex($subno); break; default: ht_development($subno,$val,2); break; }

Decoded(de-Obfuscated) php code

<?php

ht_subtitle($subno, "");
switch ($subno) {
    case "090101":
    case "090102":
    case "090103":
        ht_config_ex($subno);
        break;
    default:
        ht_development($subno, $val, 2);
        break;
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.