当前位置:Gxlcms > PHP教程 > 最简单的PHP小偷源码

最简单的PHP小偷源码

时间:2021-07-01 10:21:17 帮助过:11人阅读

各位这只是简单的小偷程序,大家学习一下就好,不要做非法用途哈!!

不懂或者不会的请回复
  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=%CA%B2%C3%B4");
  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\\1=",$str);
  51. return $str;
  52. }
  53. function urlchange($str) {
  54. global $server_url,$scriptname,$thismulu;
  55. $str = preg_replace('/src=(["|\']?)\//', 'src=\\1'.$server_url.'/', $str);
  56. $str = preg_replace('/<(link[^>]+)href=(["|\']?)\/?/', '<\\1href=\\2'.$server_url.'/', $str);
  57. $str = preg_replace('/<(a[^>]+)href=(["|\']?)\/?/', '<\\1href=\\2'.$scriptname.'/', $str);
  58. $str=str_ireplace('/javascript:;','#',$str);
  59. $str=str_ireplace('"'.$scriptname.'/"',$scriptname,$str);
  60. return $str;
  61. }
  62. function charset($str){
  63. if(preg_match('#]*charset\s*=\s*utf-8#iUs',$str)){
  64. $str=preg_replace('/charset\s*=\s*utf-8/i','charset=gb2312',$str);
  65. $str=iconv("UTF-8", "GB2312//IGNORE", $str);
  66. }
  67. return $str;
  68. }
  69. $body=urlchange(filter(charset(curl_get($url))));
  70. //-------------替换开始----------------------
  71. $body=preg_replace('#>精品推荐(.*)

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

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

人气教程排行