fix(fix(security): bind server to 127.0.0.1 instead of 0.0.0.0 by default):

This commit is contained in:
Alexander Myasoedov
2026-06-04 17:53:35 +03:00
parent 7b8d238254
commit 6dcda7c931
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -10,13 +10,13 @@ from agentic_security.misc.banner import init_banner
class CLI:
def server(self, port: int = 8718, host: str = "0.0.0.0"):
def server(self, port: int = 8718, host: str = "127.0.0.1"):
"""
Launch the Agentic Security server.
Args:
port (int): Port number for the server to listen on. Default is 8718.
host (str): Host address for the server. Default is "0.0.0.0".
host (str): Host address for the server. Default is "127.0.0.1".
"""
sys.path.append(os.path.dirname("."))
config = uvicorn.Config(
@@ -34,7 +34,7 @@ class CLI:
sys.path.append(os.path.dirname("."))
SecurityScanner().entrypoint()
def init(self, host: str = "0.0.0.0", port: int = 8718):
def init(self, host: str = "127.0.0.1", port: int = 8718):
"""
Generate the default CI configuration file.
"""
+1 -1
View File
@@ -87,7 +87,7 @@ class SettingsMixin:
return default
return value
def generate_default_settings(self, host: str = "0.0.0.0", port: int = 8718):
def generate_default_settings(self, host: str = "127.0.0.1", port: int = 8718):
# Accept host / port as parameters
with open(self.default_path, "w") as f:
f.write(