From 664c2f8a90169210ca567c9151981d5888d83be7 Mon Sep 17 00:00:00 2001 From: David Cruciani Date: Thu, 29 Feb 2024 10:34:53 +0100 Subject: [PATCH] fix: [website] default admin password --- website/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/config.py b/website/config.py index 52ef0f5..3a65e3b 100644 --- a/website/config.py +++ b/website/config.py @@ -5,7 +5,7 @@ class Config: FLASK_PORT = 7008 MISP_MODULE = '127.0.0.1:6666' ADMIN_USER = False - ADMIN_PASSWORD = Password1234 + ADMIN_PASSWORD = "Password1234" class DevelopmentConfig(Config): DEBUG = True