- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for allowNTLMFallback (0.13 sec)
-
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)