> 백엔드 개발 > PHP 튜토리얼 > 가장 간단한 PHP 도둑 소스 코드

가장 간단한 PHP 도둑 소스 코드

WBOY
풀어 주다: 2016-07-25 08:50:21
원래의
1416명이 탐색했습니다.
各位这只是简单的小偷程序,大家学习一下就好,不要做非法用途哈!!

不懂或者不会的请回复
  1. //-------------------------配置参数开始-------------------------
  2. //目标站网址
  3. $url="http://blog.0907.org";
  4. //当前文件名
  5. $thisname='index.php';
  6. //-------------------------配置参数结束-------------------------
  7. header("Content-type: text/html; charset=GBK");
  8. $server_url = preg_replace("/(http|https|ftp|news):///i", "", $url);
  9. $server_url = preg_replace("//.*/", "", $server_url);
  10. $server_url = 'http://'.$server_url;
  11. $getid=$_SERVER["REQUEST_URI"];
  12. $scriptname=$_SERVER["SCRIPT_NAME"];
  13. $thisurl="http://".$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
  14. if( preg_match('#(http|https|ftp|news):#iUs',$getid) ){
  15. header("Location:".$scriptname);
  16. exit;
  17. }
  18. if( preg_match('#'.$scriptname.'/#iUs',$getid) ){
  19. $url=$server_url.'/'.str_ireplace($scriptname."/",'',stristr($getid,$scriptname."/"));
  20. }
  21. $thismulu=str_ireplace(stristr($_SERVER['PHP_SELF'],$thisname),'',$thisurl);
  22. function curl_get($url){
  23. if(function_exists('curl_init') && function_exists('curl_exec')){
  24. $ch = curl_init();
  25. $user_agent = "Mozilla/5.0 (compatible; Baiduspider/2.0; http://www.baidu.com/search/spider.html)";
  26. curl_setopt($ch, CURLOPT_URL, $url);
  27. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  28. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  29. curl_setopt($ch, CURLOPT_REFERER, "http://www.baidu.com/s?wd=ʲô");
  30. curl_setopt($ch, CURLOPT_USERAGENT, $user_agent);
  31. $data = curl_exec($ch);
  32. curl_close($ch);
  33. }else{
  34. for($i=0;$i<3;$i ){
  35. $data = @file_get_contents($url);
  36. if($data) break;
  37. }
  38. }
  39. return $data;
  40. }
  41. function filter($str){
  42. global $server_url;
  43. $str=preg_replace("/] >/si","",$str);
  44. $str=preg_replace("/s /", " ", $str);
  45. $str=preg_replace("//si","",$str);
  46. $str=preg_replace("/<(script.*?)>(.*?)<(/script.*?)>/si","",$str);
  47. $str=preg_replace("/<(/?script.*?)>/si","",$str);
  48. $str=preg_replace("/javascript/si","Javascript",$str);
  49. $str=preg_replace("/vbscript/si","Vbscript",$str);
  50. $str=preg_replace("/on([a-z] )s*=/si","On=",$str);
  51. return $str;
  52. }
  53. function urlchange($str) {
  54. global $server_url,$scriptname,$thismulu;
  55. $str = preg_replace('/src=(["|']?)//', 'src='.$server_url.'/', $str);
  56. $str = preg_replace('/<(link[^>] )href=(["|']?)/?/', ' $str = preg_replace('/<(a[^>] )href=(["|']?)/?/', ' $str=str_ireplace('/javascript:;','#',$str);
  57. $str=str_ireplace('"'.$scriptname.'/"',$scriptname,$str);
  58. return $str;
  59. }
  60. function charset($str){
  61. if(preg_match('#]*charsets*=s*utf-8#iUs',$str)){
  62. $str=preg_replace('/charsets*=s*utf-8/i','charset=gb2312',$str);
  63. $str=iconv("UTF-8", "GB2312//IGNORE", $str);
  64. }
  65. return $str;
  66. }
  67. $body=urlchange(filter(charset(curl_get($url))));
  68. //-------------替换开始----------------------
  69. $body=preg_replace('#>精品推荐(.*)

" #si',"",$body);

  • //正则替换,这里我就不多说啦,PS:其实我也不大会正则
  • //PS:可写多个
  • $body=str_ireplace('action="/v"','action="index.php/v"',$body);
  • //$body=str_ireplace('您要替换的内容','你想替换成的内容',$body);
  • //PS:可写多个
  • //嘻嘻,欢迎大家去我博客做客
  • //------------替换结束------------------------
  • echo $body;
  • ?>
  • 复制代码


    관련 라벨:
    원천:php.cn
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿