知更鸟Begin主题代码实现外链转内链并base64加密
![]() | ![]() | ![]() | ![]() |
| 【性价之王】 | 【线路之王】 | 【价格之王】 | 【配置之王】 |
| 【免费之王】 | 【香港首推】 | 【梯子之王】 | 【独服之王】 |

在WordPress博客安装了知更鸟的begin主题。在使用某些浏览器打开WordPress博客,首页会出现未经证实的bocai的提示。
赶紧申诉,官方给解了,后来回了一封邮件
[ad]
您好:人工审核后结果如下
经人工核实,贵方网站还存在被恶意篡改页面,请贵方仔细核实并恢复网站正常。
譬如:https://www.***.com/wp-content/themes/begin/inc/go.php?url=http://www.****.com
请贵方修复漏洞并检查好域名下的所有HOST/URL确保没有木马后再次提交申诉信息。
看了一下该链接是利用了begin主题的跳转样式,后面跟的网址可以换成任何一个网址,搜索了一下网站数据库,确实找到一条留言是这个网址,赶紧删除,然后就是改一下主题的外链跳转样式
这个方法就是为外链添加跳转页面 ,一方面把评论者链接进行了加密,另一个方面转为内链进行跳转。
以下代码是对知更鸟Begin主题进行修改,外链转内链并base64加密。
<?php if(strlen($_SERVER['REQUEST_URI']) > 255 || strpos($_SERVER['REQUEST_URI'], "eval(") || strpos($_SERVER['REQUEST_URI'], "base64")) { @header("HTTP/1.1 414 Request-URI Too Long"); @header("Status: 414 Request-URI Too Long"); @header("Connection: Close"); @exit;}//通过QUERY_STRING取得完整的传入数据,然后取得url=之后的所有值,兼容性更好$t_url = preg_replace('/^url=(.*)$/i','$1',$_SERVER["QUERY_STRING"]); //此处可以自定义一些特别的外链,不需要可以删除以下5行if($t_url=="rat0" ) { $t_url="http://www.rat0.com";} elseif($t_url=="baidu") { $t_url="https://www.baidu.com/";} //数据处理if(!empty($t_url)) { //判断取值是否加密 if ($t_url == base64_encode(base64_decode($t_url))) { $t_url = base64_decode($t_url); } //对取值进行网址校验和判断 preg_match('/^(http|https|thunder|qqdl|ed2k|Flashget|qbrowser):\/\//i',$t_url,$matches); if($matches){ $url=$t_url; $title='页面加载中,请稍候...'; } else { preg_match('/\./i',$t_url,$matche); if($matche){ $url='http://'.$t_url; $title='页面加载中,请稍候...'; } else { $url = 'http://'.$_SERVER['HTTP_HOST']; $title='参数错误,正在返回首页...'; } }} else { $title = '参数缺失,正在返回首页...'; $url = 'http://'.$_SERVER['HTTP_HOST'];}?><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="robots" content="noindex, nofollow" /><noscript><meta http-equiv="resh" content="1;url='<?php%20echo%20$url;?>';"></noscript><script>function link_jump(){ //禁止其他网站使用我们的跳转页面 var MyHOST = new RegExp("<?php echo $_SERVER['HTTP_HOST']; ?>"); if (!MyHOST.test(document.errer)) { location.h="http://" + MyHOST; } location.h="<?php%20echo%20$url;?>";}//延时1S跳转,可自行修改延时时间setTimeout(link_jump, 1000);//延时50S关闭跳转页面,用于文件下载后不会关闭跳转页的问题setTimeout(function(){window.opener=null;window.close();}, 50000);</script><title><?php echo $title;?></title><style type="text/css">body{background:#555}.loading{-webkit-animation:fadein 2s;-moz-animation:fadein 2s;-o-animation:fadein 2s;animation:fadein 2s}@-moz-keyframes fadein{from{opacity:0}to{opacity:1}}@-webkit-keyframes fadein{from{opacity:0}to{opacity:1}}@-o-keyframes fadein{from{opacity:0}to{opacity:1}}@keyframes fadein{from{opacity:0}to{opacity:1}}.spinner-wrapper{position:absolute;top:0;left:0;z-index:300;height:100%;min-width:100%;min-height:100%;background:rgba(255,255,255,0.93)}.spinner-text{position:absolute;top:45%;left:50%;margin-left:-100px;margin-top:2px;color:#000;letter-spacing:1px;font-size:20px;font-family:Arial}.spinner{position:absolute;top:45%;left:50%;display:block;margin-left:-160px;width:1px;height:1px;border:20px solid rgba(255,0,0,1);-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;border-left-color:transparent;border-right-color:transparent;-webkit-animation:spin 1.5s infinite;-moz-animation:spin 1.5s infinite;animation:spin 1.5s infinite}@-webkit-keyframes spin{0%,100%{-webkit-transform:rotate(0deg) scale(1)}50%{-webkit-transform:rotate(720deg) scale(0.6)}}@-moz-keyframes spin{0%,100%{-moz-transform:rotate(0deg) scale(1)}50%{-moz-transform:rotate(720deg) scale(0.6)}}@-o-keyframes spin{0%,100%{-o-transform:rotate(0deg) scale(1)}50%{-o-transform:rotate(720deg) scale(0.6)}}@keyframes spin{0%,100%{transform:rotate(0deg) scale(1)}50%{transform:rotate(720deg) scale(0.6)}}</style></head><body><div class="loading"> <div class="spinner-wrapper"> <span class="spinner-text">页面加载中,请稍候...</span> <span class="spinner"></span> </div></div></body></html>在网站根目录建立一个文件夹命名为go,将以上代码保存为index.php,放到go文件夹内.
整合代码
打开知更鸟主题的begin\inc\function\default.php文件,对照下面的代码一一替换
A.文章外链替换
// 外链跳转if (zm_get_option('link_to')) { add_filter('the_content','link_to_jump',999); function link_to_jump($content){ preg_match_all('/<a(.*?)h="(.*?)"(.*?)>/',$content,$matches); if($matches){ foreach($matches[2] as $val){ if(strpos($val,'://')!==false && strpos($val,'www.rat0.com')===false && !preg_match('/\.(jpg|jepg|png|ico|bmp|gif|tiff)/i',$val) && !preg_match('/(ed2k|thunder|Flashget|flashget|qqdl):\/\//i',$val)){ $content=str_replace("h=\"$val\"", "h=\"".home_url()."/go/?".base64_encode($val)."\" rel=\"nofollow\"",$content); } } } return $content; }B.评论外链替换
// 评论者链接跳转并新窗口打开 function commentauthor($comment_ID = 0) { $url = get_comment_author_url( $comment_ID ); $author = get_comment_author( $comment_ID ); if ( empty( $url ) || 'http://' == $url ) echo $author; else echo "<a class="url" h="".home_url()."/go/?".base64_encode($url)."" target="_blank" rel="nofollow noopener">$author</a>"; }C.下载外链替换
// 下载外链跳转 function link_nofollow($url) { if(strpos($url,'://')!==false && strpos($url,home_url())===false && !preg_match('/(ed2k|thunder|Flashget|flashget|qqdl):\/\//i',$url)) { $url = str_replace($url, home_url()."/go/?".base64_encode($url),$url); } return $url; }}[WordPress]历史优惠活动内容
猜你可能想看的VPS
- Vultr 新用户首次充多少送多少(最高送 100 美元)活动下架 当有全球[VPS测评]
- 阿里云采购季→1C2G1M 低至年付 74 元 2C4G5M 云服务器 全球[VPS测评]
- MySQL 数据库查询字符串长度大于 小于或等于指定值的记录全球[VPS测评]
- php 获取一个月的第一天及最后一天的方法大全全球[VPS测评]
- SSDVPS.DK→$4.4 月 2GB 内存 20GB NVME 空间虚拟空间(主机)
- Windows 提示→“出现了一个问题 导致程序停止正常工作。请关闭该程WINDOWS
- 线路绕全球-Timeweb→圣彼得堡 VPS 2 核 512M 内存 5全球[VPS测评]
- cloudcone→超大硬盘 VPS 补货 洛杉矶 KVM 最高 500全球[VPS测评]
- Swarmify→视频 CDN 不限流量 不限空间 月付 49 美金;国虚拟空间(主机)
- iON - Krypt 旗下云服务器品牌 5 折促销全球[VPS测评]
- 特价 Rainbow cloud→Intel Xeon E3-12XX 香港VPS[主机]
- 优惠 JGKVM→洛杉矶 CN2 GIA 套餐补货 年付低至 189 元香港VPS[主机]
- 如何让WordPress博客变得更加安全全球[VPS测评]
- 搬瓦工2022新年全场12.22%循环折扣,续费同价,依然有效全球[VPS测评]
- 篱落主机:香港BGP多线VPS,2G内存年付仅399香港VPS[主机]
- 狗云春节香港CN2特价机,¥199/ 年,1G内存/25G硬盘/10Mb香港VPS[主机]
- Shinjiru-马来西亚 6$月付 1Gbps不限流量 独立IP VP独立服务器[U]
- 潮科技|阿里云发布第七代高主频云服务器ECS和含光800云服务器全球[VPS测评]
- 从阿里云七代云服务器,谈云计算四大趋势全球[VPS测评]
- 香港云服务器怎么选?云服务器性能测评对比香港VPS[主机]
- 做跨境电商,如何打造私域流量?全球[VPS测评]
- 6种样式社交论坛网站HTML5模板 - Social全球[VPS测评]
- 快速云:科普云服务器服务器的概念和作用2022-08-2313:26来源全球[VPS测评]
- JGKVM(极光kvm),便宜香港VPS(5G防御秒解),极光互联vps香港VPS[主机]
- 速云互联:香港/美国CN2 GIA线路/BGP/10Mbps/全场八折,美国VPS[主机]
- 为什么要拥有一台VPS?全球[VPS测评]
- 众创逸云:香港CN2/美国CN2降价促销,4核4G云服务器低至68元/月美国VPS[主机]
- 极亿云:大连/沈阳/北京/广州/深圳云服务器低至48.7元/月;香港cn香港VPS[主机]
- 月神科技:香港云服务器,2核2G5M年付200元/年;美国2核2G50M美国VPS[主机]
- 福州职业技术学院获得世界职业院校技能大赛云计算赛项银牌全球[VPS测评]
转载请注明原文地址:http://140.238.13.167:12355/read-222522.html











