Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for LsarRefDomainList (0.09 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                }
            }
        }
    
        /**
         * LSA referenced domain list.
         */
        public static class LsarRefDomainList extends NdrObject {
    
            /**
             * Default constructor for LsarRefDomainList.
             */
            public LsarRefDomainList() {
                // Default constructor
            }
    
            /** Number of domains in the list. */
            public int count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            assertThrows(NdrException.class, () -> trustInfo.decode(mockNdrBuffer));
        }
    
        // Test for LsarRefDomainList
        @Test
        void testLsarRefDomainListEncode() throws NdrException {
            lsarpc.LsarRefDomainList refDomainList = new lsarpc.LsarRefDomainList();
            refDomainList.count = 2;
            refDomainList.domains = new lsarpc.LsarTrustInformation[2];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    	} LsarTranslatedName;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (3)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    	} LsarTranslatedName;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SIDCacheImplTest.java

                // Return success
                rpc.retval = NtStatus.NT_STATUS_SUCCESS;
    
                // Domains: single domain named TESTDOM
                lsarpc.LsarRefDomainList domains = new lsarpc.LsarRefDomainList();
                domains.count = 1;
                domains.max_count = 1;
                domains.domains = new lsarpc.LsarTrustInformation[1];
                domains.domains[0] = new lsarpc.LsarTrustInformation();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLookupSids.java

         * @param sids the array of SIDs to lookup
         */
        public MsrpcLookupSids(final LsaPolicyHandle policyHandle, final SID[] sids) {
            super(policyHandle, new LsarSidArrayX(sids), new lsarpc.LsarRefDomainList(), new lsarpc.LsarTransNameArray(), (short) 1,
                    sids.length);
            this.sids = sids;
            ptype = 0;
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java

         * @param sids the array of SIDs to lookup
         */
        public MsrpcLookupSids(final LsaPolicyHandle policyHandle, final jcifs.SID[] sids) {
            super(policyHandle, new LsarSidArrayX(sids), new jcifs.dcerpc.msrpc.lsarpc.LsarRefDomainList(),
                    new jcifs.dcerpc.msrpc.lsarpc.LsarTransNameArray(), (short) 1, sids.length);
            this.ptype = 0;
            this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                }
            }
        }
    
        /**
         * LSA referenced domain list structure.
         */
        public static class LsarRefDomainList extends NdrObject {
    
            /**
             * Default constructor for LsarRefDomainList.
             */
            public LsarRefDomainList() {
                // Default constructor
            }
    
            /** Number of domains in the list. */
            public int count;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/msrpc/MsrpcLookupSidsTest.java

            domainsField.setAccessible(true);
            Object domainsObj = domainsField.get(lookupSids);
    
            assertNotNull(domainsObj);
            assertTrue(domainsObj instanceof lsarpc.LsarRefDomainList);
        }
    
        @Test
        void constructor_shouldCreateLsarTransNameArray() throws Exception {
            // Arrange
            jcifs.SID mockSid = mock(jcifs.SID.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top