| | 505 | // Invalid IP. Sometimes proxies add things like this, or other arbitrary strings. |
| | 506 | array( |
| | 507 | 'or=\"[1000:0000:0000:0000:0000:0000:0000:0001', |
| | 508 | false, |
| | 509 | ), |
| | 510 | // Invalid IP. Sometimes proxies add things like this, or other arbitrary strings. |
| | 511 | array( |
| | 512 | 'or=\"1000:0000:0000:0000:0000:0000:0000:0001', |
| | 513 | false, |
| | 514 | ), |
| | 515 | // Invalid IP. Sometimes proxies add things like this, or other arbitrary strings. |
| | 516 | array( |
| | 517 | '1000:0000:0000:0000:0000:0000:0000:0001or=\"', |
| | 518 | false, |
| | 519 | ), |
| | 520 | // Malformed string with valid IP substring. Sometimes proxies add things like this, or other arbitrary strings. |
| | 521 | array( |
| | 522 | 'or=\"[1000:0000:0000:0000:0000:0000:0000:0001]:400', |
| | 523 | '1000::', |
| | 524 | ), |
| | 525 | // Malformed string with valid IP substring. Sometimes proxies add things like this, or other arbitrary strings. |
| | 526 | array( |
| | 527 | 'or=\"[1000:0000:0000:0000:0000:0000:0000:0001]', |
| | 528 | '1000::', |
| | 529 | ), |
| | 530 | // Malformed string with valid IP substring. Sometimes proxies add things like this, or other arbitrary strings. |
| | 531 | array( |
| | 532 | 'or=\"[1000:0000:0000:0000:0000:0000:0000:0001]400', |
| | 533 | '1000::', |
| | 534 | ), |
| | 535 | // Malformed string with valid IP substring. Sometimes proxies add things like this, or other arbitrary strings. |
| | 536 | array( |
| | 537 | '[1000:0000:0000:0000:0000:0000:0000:0001]:235\"or=', |
| | 538 | '1000::', |
| | 539 | ), |