Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for LsarQueryInformationPolicy (0.28 sec)

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

            // Act
            int opnum = queryPolicy.getOpnum();
    
            // Assert
            assertEquals(0x07, opnum); // Expected opnum for LsarQueryInformationPolicy
        }
    
        @Test
        void multipleInstances_shouldBeIndependent() {
            // Arrange
            short level1 = 1;
            short level2 = 2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcQueryInformationPolicy.java

     * This class provides functionality to retrieve information about
     * LSA policy settings using the LSA RPC interface.
     */
    public class MsrpcQueryInformationPolicy extends lsarpc.LsarQueryInformationPolicy {
    
        /**
         * Creates a new request to query LSA policy information.
         *
         * @param policyHandle the LSA policy handle
         * @param level the information level to query
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedName *names;
    	} LsarTransNameArray;
    
    	[op(0x00)]
    	int LsarClose([in,out] policy_handle *handle);
    
    	[op(0x07)]
    	int LsarQueryInformationPolicy([in] policy_handle *handle,
    			[in] uint16_t level,
    			[out,switch_is(level),unique] LsarPolicyInfo *info);
    
    	[op(0x0f)]
    	int LsarLookupSids([in] policy_handle *handle,
    			[in] LsarSidArray *sids,
    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

    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTranslatedName *names;
    	} LsarTransNameArray;
    
    	[op(0x00)]
    	int LsarClose([in,out] policy_handle *handle);
    
    	[op(0x07)]
    	int LsarQueryInformationPolicy([in] policy_handle *handle,
    			[in] uint16_t level,
    			[out,switch_is(level),unique] LsarPolicyInfo *info);
    
    	[op(0x0f)]
    	int LsarLookupSids([in] policy_handle *handle,
    			[in] LsarSidArray *sids,
    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/main/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicy.java

     *
     * This class implements the LSARPC QueryInformationPolicy operation
     * for retrieving policy information from the Local Security Authority (LSA).
     */
    public class MsrpcQueryInformationPolicy extends lsarpc.LsarQueryInformationPolicy {
    
        /**
         * Constructs a new MsrpcQueryInformationPolicy request.
         *
         * @param policyHandle the policy handle obtained from LsarOpenPolicy
         * @param level the information level to query
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

        }
    
        // Test for LsarQueryInformationPolicy
        @Test
        void testLsarQueryInformationPolicyConstructorAndGetOpnum() {
            rpc.policy_handle mockHandle = mock(rpc.policy_handle.class);
            lsarpc.LsarQosInfo mockInfo = mock(lsarpc.LsarQosInfo.class);
            lsarpc.LsarQueryInformationPolicy queryInfoPolicy = new lsarpc.LsarQueryInformationPolicy(mockHandle, (short) 1, mockInfo);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

            public NdrObject info;
    
            /**
             * Creates a new LsarQueryInformationPolicy message.
             *
             * @param handle the policy handle
             * @param level the information level
             * @param info the information object
             */
            public LsarQueryInformationPolicy(final rpc.policy_handle handle, final short level, final NdrObject info) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

            public NdrObject info;
    
            /**
             * Creates a new LsarQueryInformationPolicy message.
             *
             * @param handle the policy handle
             * @param level the information level
             * @param info the information object
             */
            public LsarQueryInformationPolicy(final rpc.policy_handle handle, final short level, final NdrObject info) {
    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