How to protect php code

藏色散人
Release: 2023-02-28 13:08:01
Original
3737 people have browsed it

How to protect php code

How to protect php code?

How to protect php code security

php_screw

screw plus is an open source php Extension, its function is to encrypt PHP files. There are many PHP encryption services on the Internet, but most of them only provide obfuscation level encryption. If someone gets the encrypted file and asks for it, it can be cracked as long as you have enough patience. The difference is that screw plus uses extensions to encrypt and decrypt, and it is a high-strength AES256 encryption popular in the global financial industry. Unless the server is cracked, the encrypted files obtained by hackers will only be a bunch of garbled characters.

Recommended: "PHP Tutorial"

1. Clone a copy of the code

git clone https://git.oschina.net/splot/php-screw-plus.git
Copy after login

2. Execute the phpize file of php

/usr/local/php/bin/phpize
Copy after login

3. Start configuring and compiling

./configure --with-php-config=/usr/local/php/bin/php-config
Copy after login

4. Before compiling, we can modify the encrypted key. Open php_screw_plus.h and you can see that the beginning is #define CAKEY "..." and change the value inside Change it to a sufficiently complex key, preferably more than 16 bits.

vi php_screw_plus.h
Copy after login

5. The decryption program is compiled

make
Copy after login

Execute the make command. If Build complete is displayed at the end, it means the compilation is successful. The php_screw_plus.so extension file will be found in the modules. Please report an error if Repair according to the prompts, then make clean and recompile.

6. Manually compile the encryption program. Enter the tools directory and execute the make command. If no errors are reported, the extension is completely compiled.

cd tools
make
Copy after login

7. Add the extension path to php.ini. You can copy modules/php_screw_plus.so to the php extension directory.

vi /etc/php.ini
 
//安装screw_plus扩展
extension=php_screw_plus.so
Copy after login

8. Restart the php service and check whether the phpinfo extension is enabled

php_screw_plus support  enabled
Copy after login

How to use encryption and decryption?

Encryption: In the extended tools directory, execute ./screw [path], [path] can be a single file or a folder, and then encryption can be achieved.

./screw /home/web/       //表示加密web目录的所有php文件
Copy after login

Decryption: Execute ./screw [path] to encrypt, add the -d parameter after it to decrypt

./screw /home/web/ -d   //表示解密web目录的所有php文件
Copy after login

The above is the detailed content of How to protect php code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template