其他分享
首页 > 其他分享> > File Inclusion(文件包含漏洞)

File Inclusion(文件包含漏洞)

作者:互联网

File Inclusion:

Low:

源代码:

<?php

// The page we wish to display
$file = $_GET[ 'page' ];

// Input validation
$file = str_replace( array( "http://", "https://" ), "", $file );
$file = str_replace( array( "../", "..\"" ), "", $file );

?>

点击file1.php后,观察到url跳转为http://127.0.0.1/DVWA/vulnerabilities/fi/?page=file1.php,尝试修改读取下一个文件

http://127.0.0.1/DVWA/vulnerabilities/fi/?page=file2.php读到下一个文件

通过修改page的值,可以访问到主机的任意文件

Medium:

源代码:

<?php

// The page we wish to display
$file = $_GET[ 'page' ];

// Input validation 输入验证
$file = str_replace( array( "http://", "https://" ), "", $file );  
$file = str_replace( array( "../", "..\"" ), "", $file );
// 将¥file中的"http://", "https://" 替换成"","../", "..\""替换成"",也就是把这些字符串删除,再赋给¥file
?> 

漏洞利用:

High:

源代码:

<?php

// The page we wish to display
$file = $_GET[ 'page' ];

// Input validation
if( !fnmatch( "file*", $file ) && $file != "include.php" )  {
    // This isn't the page we want!
    echo "ERROR: File not found!";
    exit;
}

?>

fnmatch()函数,根据指定的模式来匹配文件名或字符串。fnmatch(pattern,string,flags)

要求page参数的开头必须是file,我们依然可以利用file协议绕过防护策略。

http://127.0.0.1/dvwa/vulnerabilities/fi/page=file:///路径

就可以包含文件

标签:文件,http,包含,Inclusion,漏洞,File,php,page
来源: https://blog.csdn.net/curryzzb/article/details/115592651