diff options
author | marzavec <admin@marzavec.com> | 2018-10-05 02:26:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-05 02:26:56 +0200 |
commit | 7718a367d7d7e7ac45092c602544cf8ce91a9cbf (patch) | |
tree | ca9ebbee3dff1c271695412b3e800d8f25b49b10 /server/src/commands | |
parent | Added hooks, modules and cleaned up code (diff) | |
parent | Made admin pass stored as trip and handled by trip. Admin can now be an admin... (diff) | |
download | hackchat-7718a367d7d7e7ac45092c602544cf8ce91a9cbf.tar.gz hackchat-7718a367d7d7e7ac45092c602544cf8ce91a9cbf.zip |
Merge pull request #38 from MinusGix/master
Admin pass stored as trip
Diffstat (limited to '')
-rw-r--r-- | server/src/commands/core/join.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/server/src/commands/core/join.js b/server/src/commands/core/join.js index 31bc3c1..21badaf 100644 --- a/server/src/commands/core/join.js +++ b/server/src/commands/core/join.js @@ -32,13 +32,12 @@ exports.parseNickname = (core, data) => { } let password = nickArray[1]; - if (userInfo.nick.toLowerCase() == core.config.adminName.toLowerCase()) { - if (password !== core.config.adminPass) { - return 'You are not the admin, liar!'; - } else { - userInfo.uType = 'admin'; - userInfo.trip = 'Admin'; - } + + if (hash(password + core.config.tripSalt) === core.config.adminTrip) { + userInfo.uType = 'admin'; + userInfo.trip = 'Admin'; + } else if (userInfo.nick.toLowerCase() == core.config.adminName.toLowerCase()) { // they've got the main-admin name while not being an admin + return 'You are not the admin, liar!'; } else if (password) { userInfo.trip = hash(password + core.config.tripSalt); } |