NegotiateResponseExtended.cs 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using Utilities;
  11. namespace SMBLibrary.SMB1
  12. {
  13. /// <summary>
  14. /// SMB_COM_NEGOTIATE Response, NT LAN Manager dialect, Extended Security response
  15. /// </summary>
  16. public class NegotiateResponseExtended : SMB1Command
  17. {
  18. public const int ParametersLength = 34;
  19. // Parameters:
  20. public ushort DialectIndex;
  21. public SecurityMode SecurityMode;
  22. public ushort MaxMpxCount;
  23. public ushort MaxNumberVcs;
  24. public uint MaxBufferSize;
  25. public uint MaxRawSize;
  26. public uint SessionKey;
  27. public ServerCapabilities Capabilities;
  28. public DateTime SystemTime;
  29. public short ServerTimeZone;
  30. private byte ChallengeLength; // MUST be set to 0
  31. // Data:
  32. public Guid ServerGuid;
  33. public byte[] SecurityBlob;
  34. public NegotiateResponseExtended() : base()
  35. {
  36. // [MS-SMB] 3.3.5.2: The server can leave SecurityBlob empty if not configured to send GSS token.
  37. SecurityBlob = new byte[0];
  38. }
  39. public NegotiateResponseExtended(byte[] buffer, int offset) : base(buffer, offset, false)
  40. {
  41. DialectIndex = LittleEndianConverter.ToUInt16(this.SMBParameters, 0);
  42. SecurityMode = (SecurityMode)ByteReader.ReadByte(this.SMBParameters, 2);
  43. MaxMpxCount = LittleEndianConverter.ToUInt16(this.SMBParameters, 3);
  44. MaxNumberVcs = LittleEndianConverter.ToUInt16(this.SMBParameters, 5);
  45. MaxBufferSize = LittleEndianConverter.ToUInt32(this.SMBParameters, 7);
  46. MaxRawSize = LittleEndianConverter.ToUInt32(this.SMBParameters, 11);
  47. SessionKey = LittleEndianConverter.ToUInt32(this.SMBParameters, 15);
  48. Capabilities = (ServerCapabilities)LittleEndianConverter.ToUInt32(this.SMBParameters, 19);
  49. SystemTime = FileTimeHelper.ReadFileTime(this.SMBParameters, 23);
  50. ServerTimeZone = LittleEndianConverter.ToInt16(this.SMBParameters, 31);
  51. ChallengeLength = ByteReader.ReadByte(this.SMBParameters, 33);
  52. ServerGuid = LittleEndianConverter.ToGuid(this.SMBData, 0);
  53. SecurityBlob = ByteReader.ReadBytes(this.SMBData, 16, this.SMBData.Length - 16);
  54. }
  55. public override byte[] GetBytes(bool isUnicode)
  56. {
  57. ChallengeLength = 0;
  58. this.SMBParameters = new byte[ParametersLength];
  59. LittleEndianWriter.WriteUInt16(this.SMBParameters, 0, DialectIndex);
  60. ByteWriter.WriteByte(this.SMBParameters, 2, (byte)SecurityMode);
  61. LittleEndianWriter.WriteUInt16(this.SMBParameters, 3, MaxMpxCount);
  62. LittleEndianWriter.WriteUInt16(this.SMBParameters, 5, MaxNumberVcs);
  63. LittleEndianWriter.WriteUInt32(this.SMBParameters, 7, MaxBufferSize);
  64. LittleEndianWriter.WriteUInt32(this.SMBParameters, 11, MaxRawSize);
  65. LittleEndianWriter.WriteUInt32(this.SMBParameters, 15, SessionKey);
  66. LittleEndianWriter.WriteUInt32(this.SMBParameters, 19, (uint)Capabilities);
  67. FileTimeHelper.WriteFileTime(this.SMBParameters, 23, SystemTime);
  68. LittleEndianWriter.WriteInt16(this.SMBParameters, 31, ServerTimeZone);
  69. ByteWriter.WriteByte(this.SMBParameters, 33, ChallengeLength);
  70. this.SMBData = new byte[16 + SecurityBlob.Length];
  71. LittleEndianWriter.WriteGuidBytes(this.SMBData, 0, ServerGuid);
  72. ByteWriter.WriteBytes(this.SMBData, 16, SecurityBlob);
  73. return base.GetBytes(isUnicode);
  74. }
  75. public override CommandName CommandName
  76. {
  77. get
  78. {
  79. return CommandName.SMB_COM_NEGOTIATE;
  80. }
  81. }
  82. }
  83. }