Update security.php

This commit is contained in:
Namhyeon Go 2020-02-04 19:14:14 +09:00 committed by GitHub
parent f056fbe0e1
commit 040d3f83b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,16 +289,16 @@ if(!check_function_exists("get_uncompressed_text")) {
$_text = gzinflate(base64_decode($text));
break;
case "gzip":
$_text = get_hashed_text(gzdecode($text), "base64");
$_text = gzdecode(base64_decode($text));
break;
case "zlib":
$_text = get_hashed_text(gzuncompress($text), "base64");
$_text = gzuncompress(base64_decode($text));
break;
case "bzip":
$_text = get_hashed_text(bzuncompress($text), "base64");
$_text = bzuncompress(base64_decode($text));
break;
case "lzf":
$_text = get_hashed_text(lzf_decompress($text), "base64");
$_text = lzf_decompress(base64_decode($text));
break;
default:
$_text = $text;