Browse Source

SMBServer: Write logoff events to log

Tal Aloni 8 years ago
parent
commit
b7946bafca
2 changed files with 2 additions and 0 deletions
  1. 1 0
      SMBLibrary/Server/SMBServer.SMB1.cs
  2. 1 0
      SMBLibrary/Server/SMBServer.SMB2.cs

+ 1 - 0
SMBLibrary/Server/SMBServer.SMB1.cs

@@ -145,6 +145,7 @@ namespace SMBLibrary.Server
                 }
                 else if (command is LogoffAndXRequest)
                 {
+                    state.LogToServer(Severity.Information, "Logoff: User '{0}' logged off.", session.UserName);
                     m_securityProvider.DeleteSecurityContext(ref session.SecurityContext.AuthenticationContext);
                     state.RemoveSession(header.UID);
                     return new LogoffAndXResponse();

+ 1 - 0
SMBLibrary/Server/SMBServer.SMB2.cs

@@ -108,6 +108,7 @@ namespace SMBLibrary.Server
                 }
                 else if (command is LogoffRequest)
                 {
+                    state.LogToServer(Severity.Information, "Logoff: User '{0}' logged off.", session.UserName);
                     m_securityProvider.DeleteSecurityContext(ref session.SecurityContext.AuthenticationContext);
                     state.RemoveSession(command.Header.SessionID);
                     return new LogoffResponse();