zoukankan      html  css  js  c++  java
  • 关于zend解密的程序

    http://derickrethans.nl/vld.php
    http://www.qinvent.com/cyrj/deZender
    两个不同网站的解决方案,其中一个网站是基于Linux的解密方法.
    另外一个是国人自己做的论坛方式在线解密.价格昂贵.可以在线
    试用一个帖子.

    破解ZEND加密PHP的源程序代码在这里了
    那个什么青风发明工作室基本用的是这个东西

    http://www.derickrethans.nl/vld.php

    下载在这里

    http://pecl.php.net/package/vld/0.8.0

    ==================
    大致介绍在这里
    ==================
    Vulcan Logic Disassembler

    The Vulcan Logic Disassembler hooks into the Zend Engine and dumps all the opcodes (execution units) of a script. It was written as as a beginning of an encoder, but I never got the time for that. It can be used to see what is going on in the Zend Engine.

    New Features in 0.8

    PHP 5.0 / PHP 5.1 support.
    vld will only show opcodes if the setting vld.active is set to 1.
    New Features in 0.6

    Class methods info is only dumped if they contain some user defined functions.
    Clean up the framework for better opcode display.
    Print extended value for function calls (# of args in that case).
    Op code elements are only printed when they are actually used.
    Download and Installation Instructions
    The extension is not totally finished yet, but it works fine for me. If you have questions, feel free to send me an e-mail (but read this first) at derick at php dot net. If you like this piece of software, feel free to checkout my wishlist or Andrei's. This improves chances that we will be continuing developing VLD.

    You can download the source here or get it from CVS. The CVS root is "srmread@cvs.vl-srm.net:/repository", the module is "vle" (not "vld") and the password is "srmread".

    It's not hard to use this extension, but it might not work with all PHP versions. Here are the instructions to get it to work:

    Unpack the tarball: tar -xzf vld-0.8.0.tgz.
    cd into the newly created directory.
    Create the configure script: phpize
    Now run "./configure" followed by "make install".
    That's it, if you now run PHP from the command line and add the -dvld.active=1 parameter VLD will spit out the opcodes:

    php -dvld.active=1 program.php

    解密ZEND加密后的PHP文件 http://www.huanle.net/down/vld.php

    先下载: vld-0.8.0

    下载地址 http://www.huanle.net/down/vld.php

    执行

    #tar -xzf vld-0.8.0.tgz //解压
    #mv vld-0.8.0 vld //重命名
    #cd -R vld ../php-4.3.8/ext //拷贝vld目录到php的解压目录下的ext中
    #cd php-4.3.8
    #rm configure //删除configure,因为下面的buildconf会重新生成新的configure
    #./buildconf //如果出现错误,就按提示加上相应的参数.
    #./configure --with-mysql --with-apxs2=/usr/www/bin/apxs --enable-vld 重新检查php
    #make 编译
    #make install 安装

    服务器必须先安装ZendOptimizer
    运行Zend后的文件,查看源代码就可以看到了.

  • 相关阅读:
    开发工具(四)
    开发工具(三)
    调试(二)
    调试(一)
    jsp乱码解决大全(转自csdn一高手)
    开发工具(二)
    开发工具
    在 SQL Server 2000 中对链接服务器运行分布式事务在您安装 Windows Server 2003 或 Windows XP Service Pack 2 时可能收到 7391 错误信息
    蓝桥杯试题
    How to lay pipelines
  • 原文地址:https://www.cnblogs.com/lgms2008/p/730800.html
Copyright © 2011-2022 走看看