Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SamrSamEntry (3.04 sec)

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

            }
        }
    
        @Nested
        @DisplayName("SamrSamEntry Tests")
        class SamrSamEntryTests {
    
            @Test
            @DisplayName("Should encode entry with non-null buffer")
            void testEncode() throws NdrException {
                // Given: SAM entry with data
                samr.SamrSamEntry entry = new samr.SamrSamEntry();
                entry.idx = 1;
                entry.name = new rpc.unicode_string();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

            }
        }
    
        @Nested
        @DisplayName("SamrSamEntry Tests")
        class SamrSamEntryTests {
    
            @Test
            @DisplayName("Should encode entry with non-null buffer")
            void testEncode() throws NdrException {
                // Given: SAM entry with data
                samr.SamrSamEntry entry = new samr.SamrSamEntry();
                entry.idx = 1;
                entry.name = new rpc.unicode_string();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/samr.java

         * Contains the relative ID and name of a SAM object.
         */
        public static class SamrSamEntry extends NdrObject {
    
            /**
             * Default constructor for SamrSamEntry.
             */
            public SamrSamEntry() {
                // Default constructor
            }
    
            /** The relative ID (RID) of the SAM entry */
            public int idx;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

         * Contains the relative ID and name of a SAM object.
         */
        public static class SamrSamEntry extends NdrObject {
    
            /**
             * Default constructor for SamrSamEntry.
             */
            public SamrSamEntry() {
                // Default constructor
            }
    
            /** The relative ID (RID) of the SAM entry */
            public int idx;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SIDCacheImpl.java

                        }
    
                        final Map<jcifs.SID, List<jcifs.SID>> map = new HashMap<>();
    
                        for (int ei = 0; ei < rpc.sam.count; ei++) {
                            final samr.SamrSamEntry entry = rpc.sam.entries[ei];
    
                            final SID[] mems = getGroupMemberSids(tc, authorityServerName, domSid, entry.idx, flags);
                            final SID groupSid = new SID(domSid, entry.idx);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SID.java

                    }
    
                    final Map map = new HashMap();
    
                    for (int ei = 0; ei < rpc.sam.count; ei++) {
                        final samr.SamrSamEntry entry = rpc.sam.entries[ei];
    
                        final SID[] mems = SID.getGroupMemberSids0(handle, domainHandle, domsid, entry.idx, flags);
                        final SID groupSid = new SID(domsid, entry.idx);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
Back to top