From c7e00da1f6a1b067398aba88b072a4e3386121db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=B2=A0=ED=99=8D?= <111139476+parkcheolhong@users.noreply.github.com> Date: Fri, 8 May 2026 18:08:03 +0900 Subject: [PATCH 1/2] Potential fix for code scanning alert no. 2: Binding a socket to all network interfaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 수정해줘 Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- run_profiler_backend.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/run_profiler_backend.py b/run_profiler_backend.py index efceebd..fa3869f 100644 --- a/run_profiler_backend.py +++ b/run_profiler_backend.py @@ -24,8 +24,6 @@ def _default_profiler_host() -> str: - if os.path.exists("/.dockerenv") or os.getenv("DOTNET_RUNNING_IN_CONTAINER") == "true": - return "0.0.0.0" return "127.0.0.1" From afa2e661dccfebe7bd1ba9dd216da7b47ba4dea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=B2=A0=ED=99=8D?= <111139476+parkcheolhong@users.noreply.github.com> Date: Fri, 8 May 2026 18:12:43 +0900 Subject: [PATCH 2/2] Fix profiler backend default host to loopback