Browse Source

SMB2: IOCtlRequest: OutputOffset field was set incorrectly in some cases

Tal Aloni 7 years ago
parent
commit
a71b97a707
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SMBLibrary/SMB2/Commands/IOCtlRequest.cs

+ 1 - 1
SMBLibrary/SMB2/Commands/IOCtlRequest.cs

@@ -68,7 +68,7 @@ namespace SMBLibrary.SMB2
             }
             if (Output.Length > 0)
             {
-                OutputOffset = InputOffset + (uint)Input.Length;
+                OutputOffset = SMB2Header.Length + FixedLength + (uint)Input.Length;
             }
             LittleEndianWriter.WriteUInt16(buffer, offset + 0, StructureSize);
             LittleEndianWriter.WriteUInt16(buffer, offset + 2, Reserved);