PHPphp源码加密
Posted 依然范儿特西
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPphp源码加密相关的知识,希望对你有一定的参考价值。
php-beast 为php一个扩展,可以方便快捷为php代码进行加密处理
一、安装
$ wget [https://github.com/liexusong/php-beast/archive/master.zip](https://github.com/liexusong/php-beast/archive/master.zip)
$ unzip master.zip
$ cd php-beast-master
$ phpize
$ ./configure --with-php-config=/usr/local/php/bin/php-config
$ sudo make && make install
编译好之后修改php.ini配置文件, 加入配置项: extension=beast.so,
重启php-fpm
$ service php-fpm restart
二、加密配置项
配置文件位于tool目录下configure.ini文件
src_path = "" //加密项目的路径
dst_path = "" //保存加密后的项目的路径
expire = "2020-12-31 24:00:00" //过期时间
encrypt_type = "DES" //加密方式 DES/AES/BASE64
三、执行加密操作
php encode_files.php
以上是关于PHPphp源码加密的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向类加载器 ClassLoader ( 类加载器源码简介 | BaseDexClassLoader | DexClassLoader | PathClassLoader )(代码片段