remove some plugins

This commit is contained in:
Denny Dai 2015-05-30 01:07:20 +08:00
parent 1ba0b5d908
commit dabbc40db8
3 changed files with 1 additions and 29 deletions

2
D-bot

@ -1 +1 @@
Subproject commit da86cbe130d2da018b2b497d903bb368a2c30966
Subproject commit 327d13078b8eed5a270027e936f9199b47de3e3e

View File

@ -1,22 +0,0 @@
<?php
PluginList("dzdown", "Discuz! 免积分下载");
if (preg_match("/^".TAG."dzdown (.*)$/", $_GET['text'], $matches)) {
$url = str_replace("%3D","=",$matches[0]);
preg_match_all("/(\?|&)aid=([^&?]*)/i",$url,$match0);
$aid=$match0[2][0];
$aid = base64_decode($aid);
preg_match_all("/\|(.*?)\|/i",$aid,$match1);
if(!empty($_POST['uid'])){
$uid = '|'.$_POST['uid'].'|';
}else{
$uid = '|1|';
}
$aid = str_replace($match1[0][1], $uid, $aid);
$aid = base64_encode($aid);
$aid = str_replace("=","%3D",$aid);
preg_match_all("#https?://(.*?)($|/)#m",$url,$match2);
$url = $match2[0][0].'forum.php?mod=attachment&aid='.$aid;
$msg = "下载链接: ".$url;
$msg .= "\n若提示[抱歉,只有特定用户可以下载本站附件]则该uid没下载权限可更改uid试试uid就是用户id\n若提示[抱歉,该附件无法读取]则证明该uid未打开过该帖可更改uid试试或漏洞已修补无法免积分下载\n若提示[请不要从外部链接下载本站附件]在新打开页面刷新窗口即可";
$BOT->exec("msg ".$from." ".escapeString($msg));
}

View File

@ -1,6 +0,0 @@
<?php
//PluginList("exec", "Execute");
if (preg_match("/^".TAG."exec (.*)$/", $_GET['text'], $matches) and $_GET['from'] == 'Denny_Dai') {
$msg = file_get_contents("http://1.vps.dennx.com/?exec=".urlencode($matches[1]));
$BOT->msg($from,$msg);
}