- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 67 for guess (0.03 sec)
-
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
super(userInfo, tc.getConfig().getDefaultDomain(), tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST", tc.getConfig().getDefaultPassword() != null ? tc.getConfig().getDefaultPassword() : ""); this.context = tc; } /** * Create an {@code NtlmPasswordAuthentication} object from a
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
README.md
# Connection settings jcifs.smb.client.connTimeout=35000 jcifs.smb.client.soTimeout=180000 jcifs.smb.client.responseTimeout=30000 # Authentication jcifs.smb.client.domain=WORKGROUP jcifs.smb.client.username=guest jcifs.smb.client.password= # Protocol versions (SMB1 to SMB 3.1.1) jcifs.smb.client.minVersion=SMB1 jcifs.smb.client.maxVersion=SMB311 # Security jcifs.smb.client.signingPreferred=false
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
*/ @Override public CIFSContext withGuestCrendentials() { return withCredentials(new NtlmPasswordAuthenticator(null, null, (String) null, AuthenticationType.GUEST)); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getCredentials() */ @Override public Credentials getCredentials() { return getDefaultCredentials(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRenewableCredentialsTest.java
} @Override public void refresh() throws CIFSException { // no-op for tests } @Override public boolean isGuest() { return false; // not guest for test purposes } @Override public boolean isAnonymous() { return false; // not anonymous for test purposes } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/CIFSContextTest.java
// Then assertEquals(newContext, context); verify(mockContext).withAnonymousCredentials(); } @Test @DisplayName("Should get context with guest credentials") void testWithGuestCrendentials() { // Given CIFSContext newContext = mock(CIFSContext.class); when(mockContext.withGuestCrendentials()).thenReturn(newContext);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/index.jsp
class="fa fa-exclamation-triangle text-warning" ></a></li> </c:if> <c:choose> <c:when test="${!empty username && username != 'guest'}"> <li class="nav-item"> <div class="dropdown"> <a id="userMenu" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:58:45 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
throw sae; } catch (final SmbException se) { ex = se; } if (response.isLoggedInAsGuest && !"GUEST".equalsIgnoreCase(auth.username) && transport.server.security != SmbConstants.SECURITY_SHARE && auth != NtlmPasswordAuthentication.ANONYMOUS) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/header.jsp
class="fa fa-exclamation-triangle text-warning" ></a></li> </c:if> <c:choose> <c:when test="${!empty username && username != 'guest'}"> <li class="nav-item"> <div class="dropdown"> <a id="userMenu" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/header.jsp
class="fa fa-exclamation-triangle text-warning" ></a></li> </c:if> <c:choose> <c:when test="${!empty username && username != 'guest'}"> <li class="nav-item"> <div class="dropdown"> <a id="userMenu" class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-haspopup="true"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 11:58:45 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean sendNTLMTargetName = true; private byte[] machineId; /** Username for guest authentication */ protected String guestUsername = "GUEST"; /** Password for guest authentication */ protected String guestPassword = ""; /** Whether to allow fallback to guest authentication */ protected boolean allowGuestFallback = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0)