]> granicus.if.org Git - php/commitdiff
Fix bug #68089 - do not accept options with embedded \0
authorStanislav Malyshev <stas@php.net>
Mon, 29 Sep 2014 00:53:49 +0000 (17:53 -0700)
committerStanislav Malyshev <stas@php.net>
Tue, 14 Oct 2014 17:51:46 +0000 (10:51 -0700)
Conflicts:
ext/curl/interface.c

ext/curl/interface.c
ext/curl/tests/bug68089.phpt [new file with mode: 0644]

index 6caaa5258b8bf050c6f000643373a5b98854df32..65894c7ead26eacb7f56bb402e567a89bb364ea1 100644 (file)
@@ -170,28 +170,20 @@ static int php_curl_option_str(php_curl *ch, zend_long option, const char *str,
 {
        CURLcode error = CURLE_OK;
 
+       if (strlen(str) != len) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Curl option contains invalid characters (\\0)");
+               return 0;
+       }
+
 #if LIBCURL_VERSION_NUM >= 0x071100
        if (make_copy) {
 #endif
-               char *copystr;
 
-               /* Strings passed to libcurl as 'char *' arguments, are copied by the library since 7.17.0 */
-               copystr = estrndup(str, len);
-               error = curl_easy_setopt(ch->cp, option, copystr);
-               zend_llist_add_element(&ch->to_free->str, &copystr);
-#if LIBCURL_VERSION_NUM >= 0x071100
-       } else {
-               error = curl_easy_setopt(ch->cp, option, str);
+       if (strlen(url) != len) {
+               php_error_docref(NULL TSRMLS_CC, E_WARNING, "Curl option contains invalid characters (\\0)");
+               return 0;
        }
-#endif
 
-       SAVE_CURL_ERROR(ch, error)
-
-       return error == CURLE_OK ? SUCCESS : FAILURE;
-}
-
-static int php_curl_option_url(php_curl *ch, const char *url, const int len TSRMLS_DC) /* {{{ */
-{
        /* Disable file:// if open_basedir are used */
        if (PG(open_basedir) && *PG(open_basedir)) {
 #if LIBCURL_VERSION_NUM >= 0x071304
diff --git a/ext/curl/tests/bug68089.phpt b/ext/curl/tests/bug68089.phpt
new file mode 100644 (file)
index 0000000..3bd5889
--- /dev/null
@@ -0,0 +1,18 @@
+--TEST--
+Bug #68089 (NULL byte injection - cURL lib)
+--SKIPIF--
+<?php 
+include 'skipif.inc';
+
+?>
+--FILE--
+<?php
+$url = "file:///etc/passwd\0http://google.com";
+$ch = curl_init();
+var_dump(curl_setopt($ch, CURLOPT_URL, $url));
+?>
+Done
+--EXPECTF--
+Warning: curl_setopt(): Curl option contains invalid characters (\0) in %s/bug68089.php on line 4
+bool(false)
+Done