Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allowNTLMFallback (0.17 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            this.sendNTLMTargetName = Config.getBoolean(p, "jcifs.smb.client.SendNTLMTargetName", true);
    
            this.lanmanCompatibility = Config.getInt(p, "jcifs.smb.lmCompatibility", 3);
            this.allowNTLMFallback = Config.getBoolean(p, "jcifs.smb.allowNTLMFallback", true);
            this.useRawNTLM = Config.getBoolean(p, "jcifs.smb.useRawNTLM", false);
    
            this.disableSpnegoIntegrity = Config.getBoolean(p, "jcifs.smb.client.disableSpnegoIntegrity", false);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean port139FailoverEnabled = false;
        protected boolean useNTSmbs = true;
        protected boolean useLargeReadWrite = true;
        protected int lanmanCompatibility = 3;
        protected boolean allowNTLMFallback = true;
        protected boolean useRawNTLM = false;
        protected boolean disableSpnegoIntegrity = false;
        protected boolean enforceSpnegoIntegrity = true;
        protected boolean disablePlainTextPasswords = true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return lanman compatibility level, defaults to 3 i.e. NTLMv2 only
         */
        int getLanManCompatibility ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.allowNTLMFallback</tt> (boolean, default true)
         * 
         * @return whether to allow fallback from kerberos to NTLM
         */
        boolean isAllowNTLMFallback ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top