mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-23 21:59:57 +02:00
fix(fix(security): bind server to 127.0.0.1 instead of 0.0.0.0 by default):
This commit is contained in:
@@ -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.
|
||||
"""
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user