From 371769bba301594eef40dd72e20f01d33c271719 Mon Sep 17 00:00:00 2001 From: Kyle Sullivan <47400288+FestiveKyle@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:12:23 -0500 Subject: [PATCH] Update preload url --- scanners/https-scanner/scan/https.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanners/https-scanner/scan/https.py b/scanners/https-scanner/scan/https.py index e574dc8b25..79bb7852e8 100644 --- a/scanners/https-scanner/scan/https.py +++ b/scanners/https-scanner/scan/https.py @@ -33,7 +33,7 @@ def load_preload_list(): preload_json = None # Downloads the chromium preloaded domain list and sets it to a global set - file_url = "https://chromium.googlesource.com/chromium/src/net/+/master/http/transport_security_state_static.json?format=TEXT" + file_url = "https://chromium.googlesource.com/chromium/src/net/+/main/http/transport_security_state_static.json?format=TEXT" try: request = requests.get(file_url)