From: "Peter Müller" <peter.mueller@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH] location-importer: Replace "UK" with "GB"
Date: Sun, 12 Dec 2021 10:11:43 +0100 [thread overview]
Message-ID: <7822de27-5ce9-dfbc-7408-9c5f0ecd7b2e@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 748 bytes --]
Apparently, LACNIC does not to proper input validation on supplied
country codes, so people can use "UK", while they probably mean "GB"
instead.
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
---
src/python/location-importer.in | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/python/location-importer.in b/src/python/location-importer.in
index b791b4d..099af55 100644
--- a/src/python/location-importer.in
+++ b/src/python/location-importer.in
@@ -705,6 +705,10 @@ class CLI(object):
# ... but keep this list distinct...
continue
+ # When people set country codes to "UK", they actually mean "GB"
+ if val == "UK":
+ val = "GB"
+
inetnum[key].append(val)
# Skip empty objects
--
2.26.2
reply other threads:[~2021-12-12 9:11 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7822de27-5ce9-dfbc-7408-9c5f0ecd7b2e@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox