﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
23025	URLValidator allows for invalid IPv4 addresses	jonathan@…	nobody	"The current URLValidator allows for invalid IPV4 addresses to pass

IPV4 addresses in dot-notation can have a max value of 255 in each of the octets.  The validator only checks for the presence of 4 octets, so just typing in all 9s `999.999.999.999` tricks the test

tests/validators/tests.py should trigger a ValidationError on cases like this:

    (URLValidator(), 'http://266.266.266.266', ValidationError),
    (URLValidator(), 'http://999.999.999.999', ValidationError),

"	Uncategorized	closed	Uncategorized	1.6	Normal	wontfix			Unreviewed	0	0	0	0	0	0
