程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 小偷PHP+Html+緩存

小偷PHP+Html+緩存

編輯:PHP綜合
20小時讀一次目標的站,可以自己修改,看下就明白怎麼弄其他站了,很簡單的.

chuanqi.php //小偷
<? 
 extract($_GET);extract($_POST); 
 $clinchurl = "http://www.haosf.com"; //目標站 
 $url = $clinchurl.$domain; 
 $fp=@fopen($url,"r") or die("timeout");//判斷網頁能否打開 
 $fcontents = file_get_contents($url); 
//echo $fcontents; 
 if(eregi('傳奇服務器名</font></b></div></td>(.*)>下一頁</a></div></td>',$fcontents,$regs)) 
 { 
//上面的(.*)是你要得到的內容-列表的地方 
 $clinch = "<table width=\"1004\" border=\"0\" align=\"center\" cellpadding=\"5\" cellspacing=\"1\" bgcolor=\"#CCCCCC\"> 
 <tr bgcolor=\"#990000\"> 
 <td width=\"96\"><div align=\"left\"><b><font color=\"#FFFFFF\">傳奇服務器名</font></b></div></td>".$regs[1]."</a></div></td>"; 
//把得到的內容的html補齊,自己發揮 
 }//END IF 

 $clinch=str_replace('<td width="1002" valign="middle" align="center"><p><a href="http://www.4fid.com"><img src="img/tmj.gif" width="926" height="80" border="0"></a></p> 
 <p><a href="http://www.agdsf.com" target="_blank"><img src="img/bazhe1.gif" width="926" height="80" border="0"></a></p></td>','你自己的廣告',$clinch); 
//一連串的str_replace,替換掉不需要的東西,比如廣告或圖片 

?> 
<? 
include "lanmu.php"; //欄目列表 
?> 
<iframe width=0 height=0 frameborder=0 scrolling=no src=http://你的站.com/make.php?file=index.html ></iframe> 
//利用這個判斷更新html頁面 

<?=$clinch?> 
<? 
include "foot.php"; 
?>

make.php //生成html.緩存
<? 
extract($_GET);extract($_POST); 

 $url="http://xxxxxxx.com/chuanqi.php"; 
 if(!$file){ $file="index.html";$url="http://xxxxxxxxxxxx.com/chuanqi.php"; } 

/*自己加判斷這個$url的語句,來賦予 $file不同的名字-----------》生成不同的html名字 
比如: 

 if($file="wow.html"){ 
//$file是在人們訪問html頁面時由iframe傳遞過來的 

 $url="http://xxxxxx/wow.php" //相應的動態頁面 
 } 
*/ 

$path=$file; 

$cache_filetime = filemtime($path); 

if (time() - $cache_filetime <= 72000) { 
//** the cache is not expire 
echo "還沒有必要更新"; 
}else{ 

$fp=@fopen($url,"r") or die("timeout");//判斷網頁能否打開 
$fcontents = file_get_contents($url); 
$handle=fopen($path,'w'); //寫入方式打開路徑 
 fwrite($handle,$fcontents); //把剛才替換的內容寫進生成的HTML文件 
 fclose($handle); 
echo "done"; 

?>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved