php防止惡意重新整理與刷票實現代碼

來源:互聯網
上載者:User

要求在頁面間傳遞一個驗證字串,
在產生頁面的時候 隨機產生一個字串,
做為一個必須參數在所有串連中傳遞。同時將這個字串儲存在session中。

點串連或者表單進入頁面後,判斷session中的驗證碼是不是與使用者提交的相同,如果相同,則處理,不相同則認為是重複重新整理。
在處理完成後將重建一個驗證碼,用於新頁面的產生

 代碼如下 複製代碼

<?php
session_start();
$k=$_GET['k'];
$t=$_GET['t'];
$allowTime = 1800;//防重新整理時間
$ip = get_client_ip();
$allowT = md5($ip.$k.$t);
if(!isset($_SESSION[$allowT]))
{
$refresh = true;
$_SESSION[$allowT] = time();
}elseif(time() - $_SESSION[$allowT]>$allowTime){
$refresh = true;
$_SESSION[$allowT] = time();
}else{
$refresh = false;
}
?>


ie6提交兩次我也碰到過,大致是用圖片代替submit時,圖片上有個submit(),這樣會提交兩次,如果只是submit鈕我沒碰到過提交兩次的情況。 現在整理一下:
方法基本上前面幾位說得差不多
接收的頁即2.php分為兩部分,一部分處理提交過來的變數,一部分顯示頁面
處理變數完畢用header( "location: ".$_SERVER[ 'PHP_SELF '])跳轉到自身頁
本部分要做判斷,如果沒有post的變數就跳過。當然也可以跳到別的頁面。
跳到別的頁面返回時會有問題,建議做在一個php檔案裡。
如果上頁穿過來得變數不符合要求可以強制返回 <script> history.go(-1); </script>
只說了一下大體思路,也許高手們不會遇到此類問題,可是並不是每個人都是高手。

 代碼如下 複製代碼

 

if(isset($_POST))

if(變數不符合要求)
<script> history.go(-1); </script>
else
操作資料
...
if(操作完成)
header( "location: ".$_SERVER[ 'PHP_SELF ']);
}
<script language= "JavaScript ">
<!--
 javascript:window.history.forward(1);
//-->
</script>

也可以利用COOKIE

 代碼如下 複製代碼

<?php
$c_file="counter.txt"; //檔案名稱賦值給變數
if(!file_exists($c_file)) //如果檔案不存在的操作
{
$myfile=fopen($c_file,"w"); //建立檔案
fwrite($myfile,"0"); //置入“0”
fclose($myfile); //關閉檔案
}
$t_num=file($c_file); //把檔案內容讀入變數
if($_COOKIE["date"]!="date(Y年m月d日)") //判斷COOKIE內容與當前日期是否一致
{
$t_num[0]++; //未經處理資料自增1
$myfile=fopen($c_file,"w"); //寫入方式開啟檔案
fwrite($myfile,$t_num[0]); //寫入新數值
fclose($myfile); //關閉檔案
//重新將當前日期寫入COOKIE並設定COOKIE的有效期間為24小時
setcookie("date","date(Y年m月d日)",time()+60*60*24);
}
?>

session

首頁面檔案 index.php 代碼:

 代碼如下 複製代碼
<?php session_start(); ?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>通過session禁止頁面重新整理</title>
<style type="text/css">
<!--
.style1 {
font-size: 14px;
font-family: "華文仿宋";
font-weight: bold;
}
.style2 {font-family: "華文琥珀"}
-->
</style>
</head>
<body>
<?php
//使用文本儲存資料
   if($_SESSION[temp]==""){
   if(($fp=fopen("counter.txt","r"))==false){ echo "開啟檔案失敗!";
     }else{ $counter=fgets($fp,1024);   //讀取檔案中資料
     fclose($fp);                        //關閉文字檔
     $counter++;                         //計數器增加1
     $fp=fopen("counter.txt","w");       //以寫的方式開啟文字檔
 
     fputs($fp,$counter);                //將新的統計資料增加1
     fclose($fp);    }                   //關閉文
//從文字檔中讀取統計資料
       if(($fp=fopen("counter.txt","r"))==false){echo "開啟檔案失敗!";}else{
        $counter=fgets($fp,1024);
        fclose($fp);
           echo "數字計數器: " .$counter ; }   //輸出訪問次數
     $_SESSION[temp]=1; //登入以後,$_SESSION[temp]的值不為空白,給$_SESSION[temp]賦一個值1
     }else{
     echo "<script>alert('您不可以重新整理本頁!!'); history.back();</script>";
     }
?>
<table width="300" border="0" cellpadding="0" cellspacing="0" background="images/141.jpg">
<tr>
    <td height="35" align="center"><span class="style1">通過session禁止頁面重新整理</span></td>
</tr>
<tr>
    <td height="40" align="center"><span class="style2">
      <?php if(($fp=fopen("counter.txt","r"))==false){echo "開啟檔案失敗!";}else{
        $counter=fgets($fp,1024);
        fclose($fp);
           echo "網頁訪問量: " .$counter ; }   //輸出訪問次數?>
    </span></td>
</tr>
<tr>
    <td height="25" align="center">&nbsp;</td>
</tr>
</table>
</body>
</html>

counter.txt 檔案為同目錄下的記錄登入數檔案……
$counter=fgets($fp,1024);   為讀取檔案中 數值型值的方法(可包含小數點數值)……

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.