Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for 0x00020000 (0.17 sec)

  1. src/test/java/jcifs/ntlmssp/NtlmFlagsTest.java

        }
    
        @Test
        void testNtlmTargetTypeServer() {
            assertEquals(0x00020000, NtlmFlags.NTLMSSP_TARGET_TYPE_SERVER, "NTLMSSP_TARGET_TYPE_SERVER should be 0x00020000");
        }
    
        @Test
        void testNtlmTargetTypeShare() {
            assertEquals(0x00040000, NtlmFlags.NTLMSSP_TARGET_TYPE_SHARE, "NTLMSSP_TARGET_TYPE_SHARE should be 0x00040000");
        }
    
        @Test
        void testNtlmNegotiateExtendedSessionSecurity() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Indicates that the NTLM version is included in the message.
         */
        int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
    
        /**
         * Indicates that 128-bit encryption is supported.
         */
        int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Request explicit key exchange
         */
        int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        /**
         * Requests an accept response token.
         */
        int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000;
    
        /**
         * Requests the use of a non-NT session key.
         */
        int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that it is
        * including a Target Information block in the message.  The Target
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ACE.java

         */
        int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /**
         * Standard delete permission
         */
        int DELETE = 0x00010000; // 16
        /**
         * Permission to read the security descriptor
         */
        int READ_CONTROL = 0x00020000; // 17
        /**
         * Permission to write the discretionary access control list
         */
        int WRITE_DAC = 0x00040000; // 18
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/witness/WitnessVersion.java

     */
    public enum WitnessVersion {
        /**
         * Witness Protocol Version 1 - Windows Server 2012
         */
        VERSION_1(0x00010001),
    
        /**
         * Witness Protocol Version 2 - Windows Server 2012 R2 and later
         */
        VERSION_2(0x00020000);
    
        private final int version;
    
        /**
         * Creates a new WitnessVersion with the specified version value.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java

            static Stream<Arguments> provideParameters() {
                return Stream.of(Arguments.of("\\\\example\\\\server", 0x000F0000), Arguments.of(null, 0), Arguments.of("\\\\localhost", -1),
                        Arguments.of("\\\\127.0.0.1", Integer.MAX_VALUE), Arguments.of("", 0x00020000),
                        Arguments.of("\\\\server.domain.com", 0));
            }
    
            @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/witness/WitnessEnumTest.java

            assertEquals(2, WitnessVersion.values().length);
    
            WitnessVersion v1 = WitnessVersion.VERSION_1;
            WitnessVersion v2 = WitnessVersion.VERSION_2;
    
            assertEquals(0x00010001, v1.getValue());
            assertEquals(0x00020000, v2.getValue());
    
            // Verify version ordering
            assertTrue(v2.getValue() > v1.getValue());
        }
    
        @Test
        void testWitnessEventTypes() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /** Standard delete permission */
        public static final int DELETE = 0x00010000; // 16
        /** Permission to read the security descriptor */
        public static final int READ_CONTROL = 0x00020000; // 17
        /** Permission to write the discretionary access control list */
        public static final int WRITE_DAC = 0x00040000; // 18
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/DosError.java

         */
        int[][] DOS_ERROR_CODES = { { 0x00000000, 0x00000000 }, { 0x00010001, 0xc0000002 }, { 0x00010002, 0xc0000002 },
                { 0x00020001, 0xc000000f }, { 0x00020002, 0xc000006a }, { 0x00030001, 0xc000003a }, { 0x00030002, 0xc00000cb },
                { 0x00040002, 0xc00000ca }, { 0x00050001, 0xc0000022 }, { 0x00050002, 0xc000000d }, { 0x00060001, 0xc0000008 },
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/DosError.java

         */
        int[][] DOS_ERROR_CODES =
                { { 0x00000000, 0x00000000 }, { 0x00010001, 0xc0000002 }, { 0x00010002, 0xc0000002 }, { 0x00020001, 0xc000000f },
                        { 0x00020002, 0xc000006a }, { 0x00030001, 0xc000003a }, { 0x00030002, 0xc00000cb }, { 0x00040002, 0xc00000ca },
                        { 0x00050001, 0xc0000022 }, { 0x00050002, 0xc000000d }, { 0x00060001, 0xc0000008 }, { 0x00060002, 0xc00000cc },
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top