PHP SSRF

Support 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://인지, 포트가 80, 443, 8080 중 하나인지 확인하지만, 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