PHP SSRF

支持 HackTricks

SSRF PHP 函数

一些函数如 file_get_contents(), fopen(), file(), md5_file() 接受 URL 作为输入,如果用户可以控制数据,这将导致 可能的 SSRF 漏洞

file_get_contents("http://127.0.0.1:8081");
fopen("http://127.0.0.1:8081", "r");
file("http://127.0.0.1:8081");
md5_file("http://127.0.0.1:8081");

Wordpress SSRF via DNS Rebinding

正如在这篇博客文章中解释的,即使是Wordpress函数**wp_safe_remote_get也容易受到DNS重绑定的攻击,从而可能容易受到SSRF攻击。它调用的主要验证是wp_http_validate_url**,该函数检查协议是否为http://https://,并且端口是否为804438080之一,但它容易受到DNS重绑定的攻击

根据该文章,其他易受攻击的函数包括:

  • wp_safe_remote_request()

  • wp_safe_remote_post()

  • wp_safe_remote_head()

  • WP_REST_URL_Details_Controller::get_remote_url()

  • download_url()

  • wp_remote_fopen()

  • WP_oEmbed::discover()

CRLF

此外,在某些情况下,可能甚至可以通过之前函数中的CRLF“漏洞”发送任意头部:

# The following will create a header called from with value Hi and
# an extra header "Injected: I HAVE IT"
ini_set("from", "Hi\r\nInjected: I HAVE IT");
file_get_contents("http://127.0.0.1:8081");

GET / HTTP/1.1
From: Hi
Injected: I HAVE IT
Host: 127.0.0.1:8081
Connection: close

# Any of the previously mentioned functions will send those headers

有关该 CRLF 漏洞的更多信息,请查看此错误 https://bugs.php.net/bug.php?id=81680&edit=1

请注意,这些函数可能还有其他方法在请求中设置任意头部,例如:

$url = "";

$options = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n" .  // check function.stream-context-create on php.net
"User-Agent: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10\r\n" // i.e. An iPad
)
);

$context = stream_context_create($options);
$file = file_get_contents($url, false, $context);
支持 HackTricks

Last updated