You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a security issue: we cannot see, who used the access data. So we need to log each case of accounts usage to some external syslog to determine the person who made this or that action on the server.
The text was updated successfully, but these errors were encountered:
Currently, logging is being performed using standard Log4J library. All logs are stored locally, on the user's machine.
On the one hand, Log4J allows to use Syslog directly, via Syslog Appender class. All you need to start logging is just to setup log4j.appender.file property in log4j.property file (well, maybe you also need some additional configuration on the syslog's side). And since that syslog can deliver logging info somewhere you need. But, on the other hand, a malicious user can easily change appenders setup, so you can not know about his connection actions.
Also, Windows users have no syslog, AFAIK. Hence, I suggest that "log4j -> syslog" solution is neither cross-platform, nor really secure.
Maybe, you want to have some built-in "spy" module that can deliver messages directly to some listening server? Such solution can be cross-platform and, possibly, more reliable (in terms of message delivery) than the first one. But I'm afraid it is not suitable for persons (including myself) who use standalone installations of ServerAccess (no server, just local config).
TL; DR
I cannot imagine yet how to implement such feature. Do you have any ideas?
There is a security issue: we cannot see, who used the access data. So we need to log each case of accounts usage to some external syslog to determine the person who made this or that action on the server.
The text was updated successfully, but these errors were encountered: