Changeset 59297
- Timestamp:
- 10/27/2024 10:17:31 PM (5 weeks ago)
- Location:
- branches/6.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.7
-
branches/6.7/src/wp-includes/http.php
r59009 r59297 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: -
branches/6.7/tests/phpunit/tests/http/http.php
r58682 r59297 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.