back to home page

3 new decode and compression scripts

Posted on December 29th, 2010

Today I had to uncompressed and decode a part of a PHP script so I decided to write a simple script that takes the input as a string and uncompresses and decodes the string in order to speed things up. I am sharing the script with everyone on the web that may need it. The three scripts are:

What do they do?
Here’s a little detail on what each script does.

The Uncompress gzcompress() and Decode base64_() is a script that decodes data encoded by base64_ which is a function included with PHP, once the data is decoded the data is then uncompressed by gzcompression, which is a function included with php. This script is to decode scripts that are encoded by ‘eval(gzuncompress(base64_decode(‘ – This is a quick solution for those that may want to modify encoded PHP.

The Uncompress gzcompress() is a script that uncompresses by gzcompression, which is a function included with php. This script is to uncompress values that are compressed by ‘eval(gzuncompress(‘ – This is a quick solution for those that may want to modify compressed PHP.

The Decode base64_() is a script that decodes data encoded by base64_ which is a function included with PHP. This script is to decode scripts that are encoded by ‘eval(base64_decode(‘ – This is a quick solution for those that may want to modify encoded PHP.

One Comment on “3 new decode and compression scripts”

1 Ronald said at 10:02 pm on December 29th, 2010:

nice scripts


Leave a Reply

    To syntax highlight code just use [cc lang="whatever language here"]your code here[/cc]