Home  >  Article  >  Backend Development  >  How to prevent malicious refresh visits in php

How to prevent malicious refresh visits in php

王林
王林Original
2019-12-14 09:41:145236browse

How to prevent malicious refresh visits in php

The principle of preventing malicious page brushing (number of visits) is:

Requires a verification string to be passed between pages, and a string is randomly generated when the page is generated. , passed as a required parameter in all connections, and this string is saved in the session.

After clicking the link or entering the form, it is judged whether the verification code in the session is the same as that submitted by the user. If it is the same, it will be processed. If it is not the same, it will be considered as repeated refresh.

After the processing is completed, a verification code will be regenerated for the generation of a new page.

Recommended related learning video tutorials: php video tutorial

The PHP implementation code is as follows:

<?php 
session_start(); 
$k=$_GET[&#39;k&#39;]; 
$t=$_GET[&#39;t&#39;]; 
$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; 
} 
?>

Recommended related article tutorials: php tutorial

The above is the detailed content of How to prevent malicious refresh visits in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn