Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SamrEnumerateAliasesInDomain (0.17 sec)

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

            }
        }
    
        @Nested
        @DisplayName("SamrEnumerateAliasesInDomain Tests")
        class SamrEnumerateAliasesInDomainTests {
    
            @Test
            @DisplayName("Should construct with correct parameters and opnum")
            void testConstructorAndOpnum() {
                // When: Creating enumerate aliases message
                samr.SamrEnumerateAliasesInDomain message =
    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/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

            }
        }
    
        @Nested
        @DisplayName("SamrEnumerateAliasesInDomain Tests")
        class SamrEnumerateAliasesInDomainTests {
    
            @Test
            @DisplayName("Should construct with correct parameters and opnum")
            void testConstructorAndOpnum() {
                // When: Creating enumerate aliases message
                samr.SamrEnumerateAliasesInDomain message =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java

     * This class provides functionality to enumerate security aliases (local groups)
     * within a SAM domain using the SAMR RPC interface.
     */
    public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain {
    
        /**
         * Creates a new request to enumerate aliases in a domain.
         *
         * @param domainHandle the handle to the SAM domain
         * @param acct_flags account flags to filter the enumeration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcEnumerateAliasesInDomain.java

     * This class provides functionality to enumerate security aliases (local groups)
     * within a SAM domain using the SAMR RPC interface.
     */
    public class MsrpcEnumerateAliasesInDomain extends samr.SamrEnumerateAliasesInDomain {
    
        /**
         * Creates a new request to enumerate aliases in a domain.
         *
         * @param domainHandle the handle to the SAM domain
         * @param acct_flags account flags to filter the enumeration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    	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,
    			[out,unique] SamrSamArray *sam,
    			[out] uint32_t num_entries);
    
    	[op(0x1b)]
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    	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,
    			[out,unique] SamrSamArray *sam,
    			[out] uint32_t num_entries);
    
    	[op(0x1b)]
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/samr.java

        /**
         * SAMR EnumerateAliasesInDomain operation for listing aliases in a domain.
         * This operation retrieves a list of alias accounts from the specified domain.
         */
        public static class SamrEnumerateAliasesInDomain extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x0f;
            }
    
            /** The return value of the operation */
            public int retval;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        /**
         * SAMR EnumerateAliasesInDomain operation for listing aliases in a domain.
         * This operation retrieves a list of alias accounts from the specified domain.
         */
        public static class SamrEnumerateAliasesInDomain extends DcerpcMessage {
    
            @Override
            public int getOpnum() {
                return 0x0f;
            }
    
            /** The return value of the operation */
            public int retval;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
Back to top