- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for useExtendedSecurity (0.12 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
this.oemEncoding = p.getProperty("jcifs.encoding", SmbConstants.DEFAULT_OEM_ENCODING); this.useNtStatus = Config.getBoolean(p, "jcifs.smb.client.useNtStatus", true); this.useExtendedSecurity = Config.getBoolean(p, "jcifs.smb.client.useExtendedSecurity", true); this.forceExtendedSecurity = Config.getBoolean(p, "jcifs.smb.client.forceExtendedSecurity", 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 signingEnforced = false; protected boolean ipcSigningEnforced = true; protected boolean encryptionEnabled = false; protected boolean useNtStatus = true; protected boolean useExtendedSecurity = true; protected boolean forceExtendedSecurity = false; protected boolean smb2OnlyNegotiation = false; protected boolean port139FailoverEnabled = false; protected boolean useNTSmbs = 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/SessionTest.java
} } @Test public void logonUserHash () throws IOException { Assume.assumeTrue(Boolean.parseBoolean(getProperties().getOrDefault("jcifs.smb.client.useExtendedSecurity", "true"))); byte[] hash = NtlmUtil.getNTHash(getTestUserPassword()); CIFSContext ctx = getContext().withCredentials(new NtlmNtHashAuthenticator(getTestUserDomain(), getTestUser(), hash));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0)