- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for useRawNTLM (0.08 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
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 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/test/java/jcifs/tests/AllTests.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return whether to allow fallback from kerberos to NTLM */ boolean isAllowNTLMFallback (); /** * Property <tt>jcifs.smb.useRawNTLM</tt> (boolean, default false) * * @return whether to use raw NTLMSSP tokens instead of SPNEGO wrapped ones * @since 2.1 */ boolean isUseRawNTLM (); /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)