ph-7/obfuscator
Composer 安装命令:
composer require ph-7/obfuscator
包简介
Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)
README 文档
README
Simple, easy-to-use and effective Obfuscator PHP class.
Not just a stupid base64 encoding script, but a real and effective obfuscation script.
Ideal to obfuscate some critical pieces of your software such as licensing verification functions.
👓 Overview
If you want to keep your open source code private, but working on all Web hosting, this Obfuscator class is THE obfuscator you need!
Not easily readable by developers (unless they are ready to spend lot of time). It will definitely discourage them! 😃
📓 Usage
Take out <php before to obfuscate
First of all, please make sure to strip the PHP open/close tags <?php and ?>
If you specify code to be obfuscated with <?php, you will get a critical syntax error.
Example 1
<?php require 'src/Obfuscator.php'; $sData = <<<'DATA' echo 'This is my PHP code, can be class class, interface, trait, etc. in PHP 5, 7, 7.2, 7.4 and higher.'; DATA; $sObfusationData = new Obfuscator($sData, 'Class/Code NAME'); file_put_contents('my_obfuscated_data.php', '<?php ' . "\r\n" . $sObfusationData);
Run the my_obfuscated_data.php freshly created, and you will see:
This is my PHP code, can be class class, interface, trait, etc. in PHP 5, 7, 7.2, 7.4 and higher.
If you open the file, you will see that your code is totally hidden (obfuscated).
Example 2
<?php require 'src/Obfuscator.php'; $sData = <<<'DATA' $hour = date('H'); echo 'The hour (of the server) is ' . date('H:m'); echo ', and will give the following message:<br><br>'; if ($hour < 10) { echo 'Have a good morning!'; } elseif ($hour < 20) { echo 'Have a good day!'; } else { echo 'Have a good night! zZz z'; } DATA; $sObfusationData = new Obfuscator($sData, 'Give a name to the piece of code you want to obfuscate'); file_put_contents('obfuscated_code.php', '<?php ' . "\r\n" . $sObfusationData);
Run obfuscated_code.php file and you will see something like below:
The hour (of the server) is 19, and will give the following message: Have a good day!
Example 3
<?php require 'src/Obfuscator.php'; $filename = 'myphpfile'; // A PHP filename (without .php) that you want to obfuscate $sData = file_get_contents($filename . '.php'); $sData = str_replace(array('<?php', '<?', '?>'), '', $sData); // We strip the open/close PHP tags $sObfusationData = new Obfuscator($sData, 'Class/Code NAME'); file_put_contents($filename . '_obfuscated.php', '<?php ' . "\r\n" . $sObfusationData);
⚙ Requirement
- PHP 5.3 or higher (works also with PHP 7.2, ..., 7.4, and beyond!)
📖 History
I began to create this obfuscation tool in early 2014 for my own needs, especially for pH7CMSPro that had a licensing file which was unlocking some premium features if a valid license key was purchased by a client. In summer 2016, the Pro version of pH7CMS was discontinued, and realize there was no reason to keep this project private and I wanted to share it with others (hoping it will help them and save their time!).
Feel free to add your improvements in it by forking the repo and creating a new PR. I will be pleased to review your contribution!
FYI, in 3 years' time, I never found my obfuscated code unobfuscated (and the software was downloaded by over 50,000 users). You can be quite confident then.
🤔 Who Am I?
I'm Pierre-Henry Soria, Software Developer, love learning new things every single day and also passionate about e-businesses and e-marketing.
📧 Wanna Contact Me?
You can email me at: pierrehenrysoria+github [[AT]] gmail [[D0T]] com 🤗
⚖️ License
Generously distributed under MIT License. See LICENSE.txt file for further information.
ph-7/obfuscator 适用场景与选型建议
ph-7/obfuscator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.59k 次下载、GitHub Stars 达 372, 最近一次更新时间为 2019 年 04 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「encoder」 「encryption」 「encode」 「obfuscator」 「obfuscation」 「obfuscate」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ph-7/obfuscator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ph-7/obfuscator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ph-7/obfuscator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Encode integer IDs using a preset or customized symbol set
A simple PHP class to encrypt a string and decrypt an encrypted string
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
base62 encoder and decoder also for big numbers with Laravel integration
Encryption with AES-256 and HMAC-SHA256
PHP Library for Encoding.com's XML API
统计信息
- 总下载量: 2.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 376
- 点击次数: 32
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-04-10