diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-10-07 20:14:11 +0200 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-10-07 20:14:11 +0200 |
commit | 97886ba72ba8bf09d9d397b8a53d43cbf6764d61 (patch) | |
tree | 22cf636b7ce59af033b5ba2b3bec5fe6a303aa79 | |
parent | c19244ddca910dbfc566a61772296cb59fa28d80 (diff) | |
download | manaserv-97886ba72ba8bf09d9d397b8a53d43cbf6764d61.tar.gz manaserv-97886ba72ba8bf09d9d397b8a53d43cbf6764d61.tar.bz2 manaserv-97886ba72ba8bf09d9d397b8a53d43cbf6764d61.tar.xz manaserv-97886ba72ba8bf09d9d397b8a53d43cbf6764d61.zip |
Added a warning to accountserver when using the default inter-server password.
-rw-r--r-- | src/account-server/main-account.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/account-server/main-account.cpp b/src/account-server/main-account.cpp index 4aa171bb..9d2e9710 100644 --- a/src/account-server/main-account.cpp +++ b/src/account-server/main-account.cpp @@ -146,6 +146,13 @@ static void initialize() LOG_INFO("Using config file: " << configPath); LOG_INFO("Using log file: " << logPath); + // check inter-server password + if (Configuration::getValue("net_password", "") == "") + { + LOG_WARN("SECURITY WARNING: No net_password set in " << configPath << + " - set one ASAP or this server WILL get h4x0rd!!"); + } + // Open database try { storage = new DALStorage; |