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 /* __________________________________________________ | Obfuscated by YAK Pro - Php Obfuscator 2.0.3 | | on 2023-10-31 14:25:56 | | GitHub: https://github.com/pk-fr/yakpro-po | |__________________________________________________| */ namespace Plugin\AmazonPayV2_42\Entity;use Eccube\Annotati...



Obfuscated php code

<?php
/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.3   |
    |              on 2023-10-31 14:25:56              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
namespace Plugin\AmazonPayV2_42\Entity;use Eccube\Annotation\EntityExtension;use Doctrine\ORM\Mapping as ORM;/**
 * @EntityExtension("Eccube\Entity\Customer")
 */
trait CustomerTrait{    /**
     * @var string
     * 
     * @ORM\Column(name="v2_amazon_user_id", type="string", length=255, nullable=true)
     */
private $v2_amazon_user_id;public function setV2AmazonUserId($v2_amazon_user_id){$this->v2_amazon_user_id = $v2_amazon_user_id;return $this;}public function getV2AmazonUserId(){return $this->v2_amazon_user_id;}}

Decoded(de-Obfuscated) php code

<?php

/*   __________________________________________________
    |  Obfuscated by YAK Pro - Php Obfuscator  2.0.3   |
    |              on 2023-10-31 14:25:56              |
    |    GitHub: https://github.com/pk-fr/yakpro-po    |
    |__________________________________________________|
*/
namespace Plugin\AmazonPayV2_42\Entity;

use Eccube\Annotation\EntityExtension;
use Doctrine\ORM\Mapping as ORM;
/**
 * @EntityExtension("Eccube\Entity\Customer")
 */
trait CustomerTrait
{
    /**
     * @var string
     * 
     * @ORM\Column(name="v2_amazon_user_id", type="string", length=255, nullable=true)
     */
    private $v2_amazon_user_id;
    public function setV2AmazonUserId($v2_amazon_user_id)
    {
        $this->v2_amazon_user_id = $v2_amazon_user_id;
        return $this;
    }
    public function getV2AmazonUserId()
    {
        return $this->v2_amazon_user_id;
    }
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.