Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getLanManCompatibility (0.08 sec)

  1. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                reconnect();
                if (message == null) {
                    message = new Type1Message(this.transportContext);
                    if (this.transportContext.getConfig().getLanManCompatibility() > 2) {
                        message.setFlag(NtlmFlags.NTLMSSP_REQUEST_TARGET, true);
                    }
                } else if (this.transportContext.getCredentials() instanceof NtlmPasswordAuthentication) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         * </table>
         *
         *
         * Property {@code jcifs.smb.lmCompatibility} (int, default 3)
         *
         * @return lanman compatibility level, defaults to 3 i.e. NTLMv2 only
         */
        int getLanManCompatibility();
    
        /**
         *
         * Property {@code jcifs.smb.allowNTLMFallback} (boolean, default true)
         *
         * @return whether to allow fallback from kerberos to NTLM
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.defaultPassword;
        }
    
        @Override
        public boolean isDisablePlainTextPasswords() {
            return this.disablePlainTextPasswords;
        }
    
        @Override
        public int getLanManCompatibility() {
            return this.lanmanCompatibility;
        }
    
        @Override
        public boolean isAllowNTLMFallback() {
            return this.allowNTLMFallback;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type3Message.java

                setNTResponse(null);
                return;
            }
    
            if (passwordHash == null) {
                passwordHash = NtlmUtil.getNTHash(password);
            }
    
            switch (tc.getConfig().getLanManCompatibility()) {
            case 0:
            case 1:
                if (!getFlag(NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY)) {
                    setLMResponse(getLMResponse(tc, type2, password));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top