Make WordPress Core

Opened 5 years ago

Closed 5 years ago

Last modified 5 years ago

#45046 closed defect (bug) (invalid)

IP validation improper loophole repair

Reported by: wooir's profile wooir Owned by:
Milestone: Priority: normal
Severity: normal Version: 4.9.8
Component: HTTP API Keywords:
Focuses: Cc:

Description (last modified by SergeyBiryukov)

wp-includes/http.php
563 lines:

if ( 127 === $parts[0] || 10 === $parts[0] || 0 === $parts[0]

It should be modified to:

if ( 127 === $parts[0] || 10 === $parts[0] || 0 === $parts[0] || 0 === $parts[0]

Change History (4)

#1 follow-up: @johnbillion
5 years ago

  • Keywords reporter-feedback added

Can you provide some more information about what problem this change addresses please?

#2 in reply to: ↑ 1 @wooir
5 years ago

  • Resolution set to invalid
  • Status changed from new to closed

Replying to johnbillion:

Can you provide some more information about what problem this change addresses please?

Sorry, I tested it and found that I was mistaken.

#3 @netweb
5 years ago

  • Milestone Awaiting Review deleted

#4 @SergeyBiryukov
5 years ago

  • Component changed from General to HTTP API
  • Description modified (diff)
  • Keywords reporter-feedback removed
Note: See TracTickets for help on using tickets.