소스 검색

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

Tal Aloni 7 년 전
부모
커밋
a71b97a707
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);