Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LsarObjectAttributes (0.34 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            verify(mockNdrBuffer, times(2)).dec_ndr_small();
        }
    
        // Test for LsarObjectAttributes
        @Test
        void testLsarObjectAttributesEncode() throws NdrException {
            lsarpc.LsarObjectAttributes objAttr = new lsarpc.LsarObjectAttributes();
            objAttr.length = 100;
            objAttr.root_directory = mock(NdrSmall.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

         * LSA object attributes.
         */
        /**
         * LSA object attributes for policy and resource access.
         */
        public static class LsarObjectAttributes extends NdrObject {
    
            /**
             * Default constructor for LsarObjectAttributes.
             */
            public LsarObjectAttributes() {
                // Default constructor
            }
    
            /** Length of the object attributes structure. */
            public int length;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java

         * @param policyHandle the policy handle to be populated
         */
        public MsrpcLsarOpenPolicy2(final String server, final int access, final LsaPolicyHandle policyHandle) {
            super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle);
            this.object_attributes.length = 24;
            final lsarpc.LsarQosInfo qos = new lsarpc.LsarQosInfo();
            qos.length = 12;
            qos.impersonation_level = 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java

         * @param policyHandle the policy handle to be populated
         */
        public MsrpcLsarOpenPolicy2(final String server, final int access, final LsaPolicyHandle policyHandle) {
            super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle);
            object_attributes.length = 24;
            final lsarpc.LsarQosInfo qos = new lsarpc.LsarQosInfo();
            qos.length = 12;
            qos.impersonation_level = 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            }
        }
    
        /**
         * LSA object attributes for policy and resource access.
         */
        public static class LsarObjectAttributes extends NdrObject {
    
            /**
             * Default constructor for LsarObjectAttributes.
             */
            public LsarObjectAttributes() {
                // Default constructor
            }
    
            /** Length of the object attributes structure. */
            public int length;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
Back to top