summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--conf/modules.conf.example11
-rw-r--r--src/modules/m_cloaking.cpp5
2 files changed, 4 insertions, 12 deletions
diff --git a/conf/modules.conf.example b/conf/modules.conf.example
index fb238df3a..a24db40db 100644
--- a/conf/modules.conf.example
+++ b/conf/modules.conf.example
@@ -480,13 +480,10 @@
# lowercase - Display the cloaked hostnames in lowercase #
# characters instead of uppercase #
# #
-# It is VERY IMPORTANT that you do not use the keys shown here. You #
-# MUST randomly create your own cloak keys. #
-# #
-# <cloak key1="0x01234567" #
-# key2="0x89ABCDEF" #
-# key3="0x01234567" #
-# key4="0x89ABCDEF" #
+# <cloak key1="0x2AF39F40" #
+# key2="0x78E10B32" #
+# key3="0x4F2D2E82" #
+# key4="0x043A4C81" #
# prefix="mynet" #
# ipalways="false" #
# lowercase="false"> #
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index 8bba9ceda..1b6d2b6bb 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -243,11 +243,6 @@ class CloakUser : public ModeHandler
throw ModuleException("You have not defined cloak keys for m_cloaking!!! THIS IS INSECURE AND SHOULD BE CHECKED! - " + detail);
}
- else if (key1 == 0x01234567 || key2 == 0x01234567 || key3 == 0x01234567 || key4 = 0x01234567)
- {
- /* Simple test to see if the config was changed from the values in the example config, as these would be very insecure. */
- throw ModuleException("You did not change the cloak keys for m_cloaking! You must randomly create your own keys in the <cloak> tag.");
- }
}
};