On Wed, Nov 11, 2015 at 3:11 AM, Gervase Markham <[email protected]> wrote: > "Presence on the ICANN section of the list" gets closer, but this > doesn't solve the brand-TLD problem. > > Ideally, we would know which TLDs were public-registration and which > were not; ICANN has made noises about providing this information.
We do know, it is just really non-obvious. Run this script to get the info: curl -s 'https://newgtlds.icann.org/newgtlds.csv' | tail -n +3 | cut -d, -f1 | tr '[:lower:]' '[:upper:]' | while read TLD; do curl -L -s "http://www.icann.org/en/about/agreements/registries/${TLD}" | grep -F -q 'Specification 13' && echo "${TLD} brand" || echo "${TLD} public" ; done _______________________________________________ dev-security-policy mailing list [email protected] https://lists.mozilla.org/listinfo/dev-security-policy

