From 3bc83f13080caf79fbbf938b99ca0c0d370f204d Mon Sep 17 00:00:00 2001 From: makelarisjr <8687447+makelarisjr@users.noreply.github.com> Date: Tue, 19 Dec 2023 20:09:55 +0200 Subject: [PATCH] change HTB_URL to labs.hackthebox.com --- src/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/config.py b/src/core/config.py index faaaf69..8737ab4 100644 --- a/src/core/config.py +++ b/src/core/config.py @@ -176,7 +176,7 @@ class Global(BaseSettings): LOG_LEVEL: str | int = "INFO" DEBUG: bool = False - HTB_URL: str = "https://www.hackthebox.com" + HTB_URL: str = "https://labs.hackthebox.com" API_URL: str = f"{HTB_URL}/api" API_V4_URL: str = f"{API_URL}/v4" HTB_API_SECRET: str | None = None