NetrShareGetInfoRequest.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Copyright (C) 2014 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 SMBLibrary.RPC;
  11. using Utilities;
  12. namespace SMBLibrary.Services
  13. {
  14. /// <summary>
  15. /// NetrShareGetInfo Request (opnum 16)
  16. /// </summary>
  17. public class NetrShareGetInfoRequest
  18. {
  19. public string ServerName;
  20. public string NetName; // Share name
  21. public uint Level;
  22. public NetrShareGetInfoRequest(byte[] buffer)
  23. {
  24. NDRParser parser = new NDRParser(buffer);
  25. ServerName = parser.ReadTopLevelUnicodeStringPointer();
  26. NetName = parser.ReadUnicodeString();
  27. Level = parser.ReadUInt32();
  28. }
  29. public byte[] GetBytes()
  30. {
  31. NDRWriter writer = new NDRWriter();
  32. writer.WriteTopLevelUnicodeStringPointer(ServerName);
  33. writer.WriteUnicodeString(NetName);
  34. writer.WriteUInt32(Level);
  35. return writer.GetBytes();
  36. }
  37. }
  38. }