SecurityDescriptor.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 Utilities;
  11. namespace SMBLibrary
  12. {
  13. /// <summary>
  14. /// [MS-DTYP] SECURITY_DESCRIPTOR
  15. /// </summary>
  16. public class SecurityDescriptor
  17. {
  18. public byte Revision;
  19. public byte Sbz1;
  20. public ushort Control;
  21. //uint OffsetOwner;
  22. //uint OffsetGroup;
  23. //uint OffsetSacl;
  24. //uint OffsetDacl;
  25. public SID OwnerSid;
  26. public SID GroupSid;
  27. public ACL Sacl;
  28. public ACL Dacl;
  29. public SecurityDescriptor()
  30. {
  31. Revision = 0x01;
  32. }
  33. public SecurityDescriptor(byte[] buffer, int offset)
  34. {
  35. Revision = ByteReader.ReadByte(buffer, ref offset);
  36. Sbz1 = ByteReader.ReadByte(buffer, ref offset);
  37. Control = LittleEndianReader.ReadUInt16(buffer, ref offset);
  38. uint offsetOwner = LittleEndianReader.ReadUInt32(buffer, ref offset);
  39. uint offsetGroup = LittleEndianReader.ReadUInt32(buffer, ref offset);
  40. uint offsetSacl = LittleEndianReader.ReadUInt32(buffer, ref offset);
  41. uint offsetDacl = LittleEndianReader.ReadUInt32(buffer, ref offset);
  42. if (offsetOwner != 0)
  43. {
  44. OwnerSid = new SID(buffer, (int)offsetOwner);
  45. }
  46. if (offsetGroup != 0)
  47. {
  48. GroupSid = new SID(buffer, (int)offsetGroup);
  49. }
  50. if (offsetSacl != 0)
  51. {
  52. Sacl = new ACL(buffer, (int)offsetSacl);
  53. }
  54. if (offsetDacl != 0)
  55. {
  56. Dacl = new ACL(buffer, (int)offsetDacl);
  57. }
  58. }
  59. public byte[] GetBytes()
  60. {
  61. throw new NotImplementedException();
  62. }
  63. }
  64. }