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\Master;use Doctrine...



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\Master;use Doctrine\ORM\Mapping as ORM;use Eccube\Entity\Master\AbstractMasterEntity;/**
 * AmazonStatus
 *
 * @ORM\Table(name="plg_amazon_pay_v2_status")
 * @ORM\Entity(repositoryClass="Plugin\AmazonPayV2_42\Repository\Master\AmazonStatusRepository")
 */
class AmazonStatus extends AbstractMasterEntity{const AUTHORI = 1;const CAPTURE = 2;const CANCEL = 3;}

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\Master;

use Doctrine\ORM\Mapping as ORM;
use Eccube\Entity\Master\AbstractMasterEntity;
/**
 * AmazonStatus
 *
 * @ORM\Table(name="plg_amazon_pay_v2_status")
 * @ORM\Entity(repositoryClass="Plugin\AmazonPayV2_42\Repository\Master\AmazonStatusRepository")
 */
class AmazonStatus extends AbstractMasterEntity
{
    const AUTHORI = 1;
    const CAPTURE = 2;
    const CANCEL = 3;
}


Malware detection & removal plugin for WordPress

(C)2020 Wordpress Doctor All rights reserved.