diff options
author | Haru <haru@dotalux.com> | 2014-02-08 04:05:03 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-02-08 04:05:03 +0100 |
commit | e4a1ca28de80e221198854b745be71d256e1f7b1 (patch) | |
tree | 56ca439cbdbf31314f397fc85c4ddef7c2179d3e /conf/login-server.conf | |
parent | 2c72e01b827f4e17644bafc52154f6d76ef4a5b9 (diff) | |
download | hercules-e4a1ca28de80e221198854b745be71d256e1f7b1.tar.gz hercules-e4a1ca28de80e221198854b745be71d256e1f7b1.tar.bz2 hercules-e4a1ca28de80e221198854b745be71d256e1f7b1.tar.xz hercules-e4a1ca28de80e221198854b745be71d256e1f7b1.zip |
Improved client_hash_check
- Added option to disable hash check by GM group_id (specify 'disabled'
as hash for a certain group_id to let them log in with any client,
even if client_hash_check is enabled
- Updated and reworded related documentation for the feature, following
user feedback about certain parts being incomplete or confusing.
Diffstat (limited to 'conf/login-server.conf')
-rw-r--r-- | conf/login-server.conf | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/conf/login-server.conf b/conf/login-server.conf index 5a5a3e049..06e0eb18b 100644 --- a/conf/login-server.conf +++ b/conf/login-server.conf @@ -136,14 +136,21 @@ dnsbl_servers: bl.blocklist.de, socks.dnsbl.sorbs.net // Client MD5 hash check // If turned on, the login server will check if the client's hash matches // the value below, and will not connect tampered clients. -// Note: see doc\md5_hashcheck.txt for more details. +// Note: see doc/md5_hashcheck.txt for more details. client_hash_check: off // Client MD5 hashes -// A player can login with a client hash at or below the account group_id. +// The client with the specified hash can be used to log in by players with +// a group_id equal to or greater than the given value. +// If you specify 'disabled' as hash, players with a group_id greater than or +// equal to the given value will be able to log in regardless of hash (and even +// if their client does not send a hash at all.) // Format: group_id, hash -client_hash: 0, 113e195e6c051bb1cfb12a644bb084c5 -client_hash: 99, cb1ea78023d337c38e8ba5124e2338ae +// Note: see doc/md5_hashcheck.txt for more details. +//client_hash: 0, 113e195e6c051bb1cfb12a644bb084c5 +//client_hash: 10, cb1ea78023d337c38e8ba5124e2338ae +//client_hash: 99, disabled + import: conf/inter-server.conf import: conf/import/login_conf.txt |