Traditional Culture Encyclopedia - Travel guide - How to use php source code

How to use php source code

I am tired of replying to this kind of posts. Just one sentence: change eval to exit, and run it on the console to see the PHP code equivalent to that eval statement.

General decryption method (steps):

1. Copy a file, such as a.php;

2. Change the Change the first eval to exit;

3. Run a.php on the console, copy the output content, and replace the eval line, for example:

c:\>php a .php > 1

c:\>notepad 1

Open a notepad like this, then select all, copy, close the window, and then select the exit you just modified in a.php That statement starts with eval and ends with;, then paste, save, and close.

4. If there is eval in the file, jump to the second step.

During the process, please note that the _FILE_ inside must be changed to the original file name, and remember how many bytes have been added, and make appropriate adjustments during fgets.