From f371a925015cd382211b2cffa75f6f65d4128a3b Mon Sep 17 00:00:00 2001 From: amai2012 Date: Tue, 20 Apr 2021 11:08:01 +0200 Subject: [PATCH] Fix CodeQL security warnings Cure warning "Incomplete regular expression for hostnames" --- tools/donate-cpu-server.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/donate-cpu-server.py b/tools/donate-cpu-server.py index 52c97466e..a5ed0ce4d 100755 --- a/tools/donate-cpu-server.py +++ b/tools/donate-cpu-server.py @@ -25,7 +25,7 @@ import html as html_lib # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -SERVER_VERSION = "1.3.16" +SERVER_VERSION = "1.3.17" OLD_VERSION = '2.4' @@ -1079,7 +1079,7 @@ def server(server_address_port: int, packages: list, packageIndex: int, resultPa # save data res = re.match(r'ftp://.*pool/main/[^/]+/([^/]+)/[^/]*tar.(gz|bz2|xz)', url) if res is None: - res = re.match(r'http://cppcheck.sf.net/([a-z]+).tgz', url) + res = re.match(r'http://cppcheck\.sf\.net/([a-z]+).tgz', url) if res is None: print('results not written. res is None.') continue @@ -1148,7 +1148,7 @@ def server(server_address_port: int, packages: list, packageIndex: int, resultPa # save data res = re.match(r'ftp://.*pool/main/[^/]+/([^/]+)/[^/]*tar.(gz|bz2|xz)', url) if res is None: - res = re.match(r'http://cppcheck.sf.net/([a-z]+).tgz', url) + res = re.match(r'http://cppcheck\.sf\.net/([a-z]+).tgz', url) if res is None: print('info output not written. res is None.') continue