Browse Source

SMB2: Improved implementation of QUERY_INFO request and response

Tal Aloni 7 years ago
parent
commit
4e71bea5df

+ 12 - 0
SMBLibrary/SMB2/Commands/QueryInfoRequest.cs

@@ -95,6 +95,18 @@ namespace SMBLibrary.SMB2
             }
         }
 
+        public SecurityInformation SecurityInformation
+        {
+            get
+            {
+                return (SecurityInformation)AdditionalInformation;
+            }
+            set
+            {
+                AdditionalInformation = (uint)value;
+            }
+        }
+
         public void SetFileInformation(FileInformation fileInformation)
         {
             InputBuffer = fileInformation.GetBytes();

+ 5 - 0
SMBLibrary/SMB2/Commands/QueryInfoResponse.cs

@@ -61,6 +61,11 @@ namespace SMBLibrary.SMB2
             OutputBuffer = fileSystemInformation.GetBytes();
         }
 
+        public void SetSecurityInformation(SecurityDescriptor securityDescriptor)
+        {
+            OutputBuffer = securityDescriptor.GetBytes();
+        }
+
         public override int CommandLength
         {
             get