Browse Source

SMB1: SMB_COM_SESSION_SETUP_ANDX response: Added workaround for a single terminating null byte

Tal Aloni 7 years ago
parent
commit
62556a1bdc

+ 9 - 4
SMBLibrary/SMB1/Commands/SessionSetupAndXResponse.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  * 
  * You can redistribute this program and/or modify it under the terms of
  * the GNU Lesser Public License as published by the Free Software Foundation,
@@ -18,9 +18,9 @@ namespace SMBLibrary.SMB1
     {
         public const int ParametersLength = 6;
         // Parameters:
-        //CommandName AndXCommand;
-        //byte AndXReserved;
-        //ushort AndXOffset;
+        // CommandName AndXCommand;
+        // byte AndXReserved;
+        // ushort AndXOffset;
         public SessionSetupAction Action;
         // Data:
         public string NativeOS;      // SMB_STRING (If Unicode, this field MUST be aligned to start on a 2-byte boundary from the start of the SMB header)
@@ -47,6 +47,11 @@ namespace SMBLibrary.SMB1
             }
             NativeOS = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
             NativeLanMan = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
+            if ((this.SMBData.Length - dataOffset) % 2 == 1)
+            {
+                // Workaround for a single terminating null byte
+                this.SMBData = ByteUtils.Concatenate(this.SMBData, new byte[1]);
+            }
             PrimaryDomain = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
         }
 

+ 9 - 4
SMBLibrary/SMB1/Commands/SessionSetupAndXResponseExtended.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  * 
  * You can redistribute this program and/or modify it under the terms of
  * the GNU Lesser Public License as published by the Free Software Foundation,
@@ -18,9 +18,9 @@ namespace SMBLibrary.SMB1
     {
         public const int ParametersLength = 8;
         // Parameters:
-        //CommandName AndXCommand;
-        //byte AndXReserved;
-        //ushort AndXOffset;
+        // CommandName AndXCommand;
+        // byte AndXReserved;
+        // ushort AndXOffset;
         public SessionSetupAction Action;
         private ushort SecurityBlobLength;
         // Data:
@@ -51,6 +51,11 @@ namespace SMBLibrary.SMB1
                 dataOffset += padding;
             }
             NativeOS = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
+            if ((this.SMBData.Length - dataOffset) % 2 == 1)
+            {
+                // Workaround for a single terminating null byte
+                this.SMBData = ByteUtils.Concatenate(this.SMBData, new byte[1]);
+            }
             NativeLanMan = SMB1Helper.ReadSMBString(this.SMBData, ref dataOffset, isUnicode);
         }