zend加密的php能解密吗?

这样的能解密吗?<?php@Zend;4123;/*?Thisisnotatextfile!揄*/print<<<EOM<html><body><ahref="http... 这样的能解密吗?
<?php @Zend;
4123;
/* ?This is not a text file!揄 */
print <<<EOM
<html><body><a href="http://www.zend.com/products/zend_guard"><img border="0" src="http://www.zend.com/images/store/safeguard_optimizer_img.gif" align="right"></a><center><h1>Zend Optimizer not installed</h1></center><p>This file was encoded by the <a href="http://www.zend.com/products/zend_guard">Zend Guard</a>. In order to run it, please install the <a href="http://www.zend.com/products/zend_optimizer">Zend Optimizer</a> (available without charge), version 3.0.0 or later. </p><h2>Seeing this message instead of the website you expected?</h2>This means that this webserver is not configured correctly. In order to view this website properly, please contact the website's system administrator/webmaster with the following message:<br><br><tt>The component "Zend Optimizer" is not installed on the Web Server and therefore cannot service encoded files. Please download and install the Zend Optimizer (available without charge) on the Web Server.</tt><br><br><b>Note</b>: Zend Technologies cannot resolve issues related to this message appearing on websites not belonging to <a href="http://www.zend.com">Zend Technologies</a>. <h2>What is the Zend Optimizer?</h2><p>The Zend Optimizer is one of the most popular PHP plugins for performance-improvement, and has been available without charge, since the early days of PHP 4. It improves performance by scanning PHP's intermediate code and passing it through multiple Optimization Passes to replace inefficient code patterns with more efficient code blocks. The replaced code blocks perform exactly the same operations as the original code, only faster. </p><p>In addition to improving performance, the Zend Optimizer also enables PHP to transparently load files encoded by the Zend Guard. </p><p>The Zend Optimizer is a free product available for download from <a href="http://www.zend.com">Zend Technologies</a>. Zend Technologies also developed the PHP scripting engine, known as the <a href="http://www.zend.com/products/zend_engine">Zend Engine</a>.</p></body></html>
EOM;
exit();
__halt_compiler();
?>

2006022801 3 0 0 420 925 x?
? }W軳?迏ACH W"ra钗讲;�??窢?D6d>幆`槛|吡;c譵eL砫I诇??睐¦谝SV鹃0諿?钽?艪@e呒雬xZ瑻诪LV诳?鐜??=?穵�賖0诃 ?UU燞???敪To篣输冯#�匮詯谤<蕴�pf庿会别+ j]?n5-顦祻敷e噆??�Ekp辅
*G讳畹箰猔 夥罠?zO醿廥f?]GD#X? }IZ僒 A/驙D?絣魹噵娆U楞$?RvG!?磲?~⑷�W "P莴;4男MK^通??纨谔t?忚?创G隼fU硕?ca髇Cp=~⒐?潳鸽�$壻??ox揕M湲?
术捬t捬?f钎浚?a
亏tu,?驺?蚢<+?窟/bp
黑刀试过了..清风的在线解密也不行
展开
 我来答
玩虐2015
2015-09-14 · TA获得超过1572个赞
知道小有建树答主
回答量:820
采纳率:0%
帮助的人:221万
展开全部
可以的。
1.Zend加密的代码在PHP 5.3.x上运行,必须选择针对PHP 5.3加密,旧版本的加密文件不能在PHP 5.3上运行。
同时,如果是Windows平台还必须选择PHP的NTS版本。对应的Zend解密插件是Zend Loader。需要全部手工安装。获取ZendLoader.dll之后修改PHP文件增加以下两行:zend_extension="(ZendLoader.dll的路径)"zend_loader.enable=1
2.而如果要让Zend加密的代码在PHP 5.3之前的平台上运行,必须选择针对旧版PHP加密。针对PHP 5.3加密的代码是不能在PHP 5.3之前的平台上运行的。
同时,如果是Windows平台还必须选择PHP的TS版本。对应的Zend解密插件是Zend Optimizer。
有安装程序,需要自行安装。
啦哈嘿呦c7
2016-01-06 · TA获得超过4687个赞
知道大有可为答主
回答量:2398
采纳率:70%
帮助的人:455万
展开全部
可以加密就可以解密
PHP Zend加密文件破解相关代码:

function send_confirm( $user_id )
{
$result = mysql_query( "select *
from user where id=".$user_id );
if ( mysql_num_rows( $result ) == 1 )
{
$user_row = mysql_fetch_assoc( $result );
}
$mtemplate = $this->config[reg_template];
$mtemplate = preg_replace( "/\\[link\\]
/i", $this->config[http_link].( "confirm.
php?id=".$user_id."&key=" ).$user_row
[confirm], $mtemplate );
$mtemplate = preg_replace( "/\\[email\\]
/i", $user_row[email], $mtemplate );
$mtemplate = preg_replace( "/\\[login\\]
/i", $user_row[login], $mtemplate );
$mail_params = array( );
list( $mheader, $mail_params[body] ) =
split( "\r\n\r\n", $mtemplate, 2 );
$mheaders = split( "\r\n", $mheader );
foreach ( $mheaders as $m_row )
{
list( $key, $val ) = split( ":", $m_row, 2 );
if ( strtolower( $key ) == "to" )
{
$mail_params[to] = ltrim( $val );
}
else if ( strtolower( $key ) == "subject" )
{
$mail_params[subject] = ltrim( $val );
}
else
{
$mail_params[headers] .= "{$key}: ".ltrim
( $val )."\r\n";
}
}
return mail( $mail_params[to], $mail_params
[subject], $mail_params[body], $mail_params[headers] );
}

PHP Zend加密文件破解的相关代码示例就写到这里。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
阳光上的桥
2010-02-02 · 知道合伙人软件行家
阳光上的桥
知道合伙人软件行家
采纳数:21424 获赞数:65808
网盘是个好东东,可以对话和传文件

向TA提问 私信TA
展开全部
如果ZEND要加密的话,破解是比较麻烦的,不过你这个代码好像仅仅是编码,没有加密,有专门解密的软件,你百度一下试试看,我以前用过。
来自:求助得到的回答
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2010-02-09
展开全部
务必试试
百度一下:清风发明"空格"zend
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xd04053045
2010-02-03 · TA获得超过122个赞
知道小有建树答主
回答量:411
采纳率:0%
帮助的人:255万
展开全部
搜索黑刀
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式