aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver
AgeCommit message (Collapse)Author
2013-10-05Core/Auth: Mitigate DoS attacks to authserverjackpoz
Mitigate DoS attacks to authserver like "Wow Auth Flooder.exe" by allowing a finite number of AUTH_LOGON_CHALLEGE packets in a row from same socket, 3 sounds like a reasonable limit.
2013-09-03Core/Misc: Fixed some more issues found by static code analysis tools.Sebastian Valle
2013-09-02Auth/Misc: Code cleanup.Chaplain
*Random performance optimizations
2013-08-25Core&Tools: Fix warnings and non-pch buildNay
2013-08-25Core/Auth: Implement time-based token for user login as described in RFC 6238.raczman
New column in account table is a base32 of token key bytes, coincidentally it is the same format Google's Authenticator Android app uses. If you want that to work, set system time on server correctly and use ntpd. Closes #10527 Signed-off-by: Nay <dnpd.dd@gmail.com>
2013-08-18Fix BigNumber::AsByteArray function by returning Auto_Ptr.QAston
Remove mutex from BigNumber class - it didn't do what it was advertised to do - consider using the "locked" array outside of the function in which it was "locked".
2013-07-30Config: Change ProcessPriority default to 0 (Normal)Nay
On Linux, superuser (root) is required to set a process high priority and we shouldn't force that. (It's already set to 0 (Normal) in worldserver\Master.cpp and authserver\Main.cpp)
2013-07-29Misc: Fix warnings and buildNay
Closes #10396
2013-07-28Servers: Fix typoNay
2013-07-28Servers: Enable UseProcessors and ProcessPriority settings to be used on LinuxNay
2013-07-28Servers: Fix some code style issues in world and authserverNay
2013-07-15Core/Config: Refactored ConfigMgrShauren
* Loading initial configuration files is now separate from loading any additional custom configs
2013-06-15Missed change in previous commitShauren
2013-06-15Buildsystem/MSVCShauren
* Fixed ACE PCH * Removed WheatyExceptionReport sources from shared project
2013-05-30Core/Misc: Another batch of fixes for issues found by static analysisSpp
2013-05-21Merge pull request #9822 from wowpsp/masterAokromes
Support 1.12.3 (build 6141)
2013-05-21Core/Build: Fix compile under Ubuntu 13.04 and openSUSE 12.3 (and probably ↵Spp
other new distros) Closes #9832 Closes #9740
2013-05-18support 1.12.3 (build 6141)wowpsp
2013-05-13Core/Logging: Performance-related tweaks to logging systemSpp
All sLog->out* functions (except outCommand atm) are replaced with TC_LOG_* macros. Memleak fix
2013-04-22[Ip2nationLock] Implement the ip2nation lock country.Bezo
2013-04-14Core/Buildsystem: Actually follow CONF_DIR path-directive when installing ↵click
configuration-files on UNIX Fixes issue #9649
2013-03-22Core/Auth: Updated AuthResult enumShauren
2013-03-09Core: Remove unnecessary commasWyldePointer
Last element of enumerator does not need comma after it's value. Closes #9367
2013-03-09Buildsystem: Add support for compiling with MinGW on WindowsNay
Tested with: - Windows 8 x64 - MySQL 5.5.30 win32 - OpenSSL 1.0.1c (32 bits) - No PCH - MinGW with GCC 4.7.0 TODO: - Fix compile/link with PCH enabled - Fix compile with WheatyExceptonionReport enabled (ignored for now) - Fix compile of .rc files (ignored for now) - Test with more platforms
2013-02-11Core/RealmSocket: Remove a not required #ifndef MSG_NOSIGNAL / #define ↵Nay
MSG_NOSIGNAL 0 Somewhere in ACE overloads of send(), flags are default'ed to 0 if not provided
2013-02-11Core/Sockets: Always try to send MSG_NOSIGNAL in peer().send()Nay
Fixes RASocket::authenticate crash "MSG_NOSIGNAL: If you send() to a remote host which is no longer recv()ing, you'll typically get the signal SIGPIPE. Adding this flag prevents that signal from being raised." Closes #5040 Thanks to @derex for the hint
2013-02-08Core/Auth: Reverted part of fb43a92cc2aaffab42efebf025b6a12c01af8fde - ↵Shauren
session key is still needed after logging in to be able to switch realms
2013-01-27Core/Authserver: Added possibility to allow realm connections both from ↵Shauren
"world" and local networks.
2013-01-24Core/Log: Rotate logs when maximum size is exceeded, backup name will be ↵Spp
"filename".datetime - This is an addition to 39c2d89
2013-01-16Core/Logging: Use correct realmId when logging to DBSpp
2013-01-14Core/Misc: Apply codestyle to multiple filesSpp
2013-01-01Update copyright note for 2013.Vincent_Michael
Happy new year.
2012-11-27Core/Misc: Set mode 0644 for filesSpp
2012-11-27Core/Authserver: Always send realm address to clients in dotted ip format.Shauren
2012-11-09Core/Build: Enable Clang PCH support and OS X specific featuresSpp
Core: Fix warnings here and there
2012-10-22Core/Logging: Fix PlayerDump loggingSpp
2012-10-02Core/Codestyle: some small improvements for Doxygen PurposesZxBiohazardZx
2012-09-10Core: Warning fixes (Also some -pedantic under game folder)Spp
2012-09-08Core/Authsocket: Correct field types for an account_banned related queryNay
Thanks @Tuxity Closes #6373 Closes #7511
2012-09-01Config: Cosmetic changes to fit config guidelinesSpp
2012-08-30Core: Fix many "errors"/warnings and coding style (2)Nay
Scripts; also reverted a change to AuthSocket Errors were found using Cppcheck, open-source static analysis tool
2012-08-30Core: Fix many "errors"/warnings and coding style (1)Nay
Extractors, worldserver, authserver, shared and collision affected Errors were found using Cppcheck, open-source static analysis tool
2012-08-29Core/Loading: Change info/error messages to printf when config is not loadedNay
2012-08-28Core/Quests: Fix quest honor rewardNay
Based on the patch of Tassader Closes #1356
2012-08-28Core/Authserver: Improved realmlist for multiple realms with different ↵Shauren
versions, idea from MaNGOS and allow 4.0.6a, 4.2.2 and 4.3.4 clients to use the authserver (no world connections)
2012-08-21Core/Logging: Fix incorrect error level for some warden messagesSpp
Core/Logging: Fix incorrect filter type for many network messages Core/Logging: Use OPCODE filter type for network messages related to wrong packets
2012-08-21Core/Misc: Warning fixesShauren
2012-08-16Core/Logging: Move more log messages to LOG_FILTER_SERVER_LOADINGSpp
2012-08-15Core/Logging: Added documentation about this systemSpp
- Restored old CharDump (LOG_FILTER_PLAYER_DUMP) but disabled by default. - "%s" is now used to set dynamic file names, only used by GM commands and Player dump
2012-08-06Core/Logging: Try to simplify configuration of loggers and appendersSpp
Changed multiple lines to a simple format: - Logger.name=Type,LogLevel,Flags,AppenderList - Appender.name=Type,LogLevel,Flags,optional1,optional2 * Type = File: optional1 = File name, optiona2 = Mode * Type = Console: optional1 = Colors Created a default set of loggers and appenders. - Root logger defaults to Error, that means you will see nothing on console by default (not even loading) - You need to add the loggers to Loggers options if you want to enable them, otherwise Root logger will be used for all types Restored outSQLDriver (LOG_FILTER_SQL_DRIVER), outSQLDev (LOG_FILTER_SQL_DEV), outArena (LOG_FILTER_ARENA) and outChar (LOG_FILTER_CHARACTER) functionality by creating new types (LOG_FILTER_CHARACTER is a rename of LOG_FILTER_DELETE. Note: You need to update your config file... again (yeah sorry... trying to make it simpler)