Home  >  Article  >  Backend Development  >  PHP scripting techniques to combat web scanners_PHP tutorial

PHP scripting techniques to combat web scanners_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:49:34797browse

Most web scanners (including upload and management background scanners) determine the existence of a page by judging the HTTP 200 return. Based on the existence of the page, these scanning periods will start scanning for vulnerabilities. Since the internal logic cannot be guaranteed to be tight, we will focus on the input/output bottleneck. When an incorrect password is entered or the permission fails, we return a 400 error HTTP message ourselves to mislead the scanner not to continue scanning (including Which manual intruders)
Take PHP as an example:

Copy the code The code is as follows:

ob_start();
if ('Password' != $_GET['password'])
header("HTTP/1.1 404 Not Found");
?>
< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">


Sample





www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/319508.htmlTechArticleMost web scanners (including upload and management background scanners) are determined by judging the HTTP 200 return The page exists. Based on the existence of the page, these scanning periods will begin...
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