- Timestamp:
- 10/27/2024 07:03:48 PM (6 weeks ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/http.php
r59009 r59293 536 536 * - http:///example.com/caniload.php - Malformed URL. 537 537 * - http://user:pass@example.com/caniload.php - Login information. 538 * - http://example eeee.com/caniload.php - Invalid hostname, as the IP cannot be looked up in DNS.538 * - http://example.invalid/caniload.php - Invalid hostname, as the IP cannot be looked up in DNS. 539 539 * 540 540 * Examples of URLs that are considered unsafe by default: -
trunk/tests/phpunit/tests/http/http.php
r58682 r59293 550 550 ), 551 551 'a host whose IPv4 address cannot be resolved' => array( 552 'url' => 'http://example eeee.com/caniload.php',552 'url' => 'http://example.invalid/caniload.php', 553 553 ), 554 554 'an external request when not allowed' => array(
Note: See TracChangeset
for help on using the changeset viewer.