1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.SMB1
- {
- /// <summary>
- /// NT_TRANSACT_SET_SECURITY_DESC Request
- /// </summary>
- public class NTTransactSetSecurityDescriptor : NTTransactSubcommand
- {
- public const int ParametersLength = 8;
- // Parameters:
- public ushort FID;
- public ushort Reserved;
- public SecurityInfoFields SecurityInfoFields;
- // Data:
- public SecurityDescriptor SecurityDescriptor;
- public NTTransactSetSecurityDescriptor()
- {
- }
- public NTTransactSetSecurityDescriptor(byte[] parameters, byte[] data)
- {
- FID = LittleEndianConverter.ToUInt16(parameters, 0);
- Reserved = LittleEndianConverter.ToUInt16(parameters, 2);
- SecurityInfoFields = (SecurityInfoFields)LittleEndianConverter.ToUInt32(parameters, 4);
- SecurityDescriptor = new SecurityDescriptor(data, 0);
- }
- public override byte[] GetParameters(bool isUnicode)
- {
- byte[] parameters = new byte[ParametersLength];
- LittleEndianWriter.WriteUInt16(parameters, 0, FID);
- LittleEndianWriter.WriteUInt16(parameters, 2, Reserved);
- LittleEndianWriter.WriteUInt32(parameters, 4, (uint)SecurityInfoFields);
- return parameters;
- }
- public override byte[] GetData()
- {
- return SecurityDescriptor.GetBytes();
- }
- public override NTTransactSubcommandName SubcommandName
- {
- get
- {
- return NTTransactSubcommandName.NT_TRANSACT_SET_SECURITY_DESC;
- }
- }
- }
- }
|