PHP base64 + gzinflate compression and decoding code

Source: Internet
Author: User

Base64 + gzinflate compressed (encrypted) files are usually <? Eval (gzinflate (base64_decode (a PHP file in the header. The following provides the relevant encoding and decoding (encryption and decryption) code.

Compression (encryption) code:
Copy codeThe Code is as follows:
<? Php
Function encode_file_contents ($ filename ){
$ Type = strtolower (substr (strrchr ($ filename, '.'), 1 ));
If ('php' = $ type & is_file ($ filename) & is_writable ($ filename) {// compress the Code if the php file is writable.
$ Contents = file_get_contents ($ filename); // checks whether the file has been encoded.
$ Pos = strpos ($ contents, '/* Protected by grass name http://www.crazyi.cn Cryptation */');
If (false ===$ pos | $ pos> 100) {// Remove PHP file comments and white spaces to reduce File Size
$ Contents = php_strip_whitespace ($ filename );
// Remove the PHP header and tail identifiers
$ HeaderPos = strpos ($ contents, '<? Php ');
$ FooterPos = strrpos ($ contents, '?> ');
$ Contents = substr ($ contents, $ headerPos + 5, $ footerPos-$ headerPos );
$ Encode = base64_encode (gzdeflate ($ contents); // start Encoding
$ Encode = '<? Php '. "/* Protected by grass name http://www.crazyi.cn Cryptation */\ n eval (gzinflate (base64_decode (". $ encode. "); \ n/* Reverse engineering is illegal and strictly prohibited-(C) Grass name Cryptation 2008 */\ n?> ";
Return file_put_contents ($ filename, $ encode );
}
}
Return false;
}
// Call a function
$ Filename = 'G: \ My Documents \ Desktop \ test. php ';
Encode_file_contents ($ filename );
?>
<? Php
Function encode_file_contents ($ filename ){
$ Type = strtolower (substr (strrchr ($ filename, '.'), 1 ));
If ('php' = $ type & is_file ($ filename) & is_writable ($ filename) {// compress the Code if the php file is writable.
$ Contents = file_get_contents ($ filename); // checks whether the file has been encoded.
$ Pos = strpos ($ contents, '/* Protected by grass name http://www.crazyi.cn Cryptation */');
If (false ===$ pos | $ pos> 100) {// Remove PHP file comments and white spaces to reduce File Size
$ Contents = php_strip_whitespace ($ filename );
// Remove the PHP header and tail identifiers
$ HeaderPos = strpos ($ contents, '<? Php ');
$ FooterPos = strrpos ($ contents, '?> ');
$ Contents = substr ($ contents, $ headerPos + 5, $ footerPos-$ headerPos );
$ Encode = base64_encode (gzdeflate ($ contents); // start Encoding
$ Encode = '<? Php '. "/* Protected by grass name http://www.crazyi.cn Cryptation */\ n eval (gzinflate (base64_decode (". $ encode. "); \ n/* Reverse engineering is illegal and strictly prohibited-(C) Grass name Cryptation 2008 */\ n?> ";
Return file_put_contents ($ filename, $ encode );
}
}
Return false;
}
// Call a function
$ Filename = 'G: \ My Documents \ Desktop \ test. php ';
Encode_file_contents ($ filename );
?>


Compression/decoding (decryption) code:
Copy codeThe Code is as follows:
<? Php
$ Code = 'Enter the decryption encoding here '; // base64 encoding
$ File = 'test. php'; // decoded File
$ Temp = base64_decode ($ Code );
$ Temp = gzinflate ($ Temp );
$ FP = fopen ($ File, "w ");
Fwrite ($ FP, $ temp );
Fclose ($ FP );
Echo "decrypted! ";
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.