- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 73 for guess (0.02 sec)
-
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) -
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/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/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/test/java/jcifs/context/AbstractCIFSContextTest.java
assertNotNull(wrappedContext); assertTrue(wrappedContext instanceof CIFSContextCredentialWrapper); // Verify that the new context uses NtlmPasswordAuthenticator (guest) assertTrue(wrappedContext.getCredentials() instanceof NtlmPasswordAuthenticator); assertTrue(wrappedContext.getCredentials().isGuest()); } @Test void testGetCredentials() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
} static final NtlmPasswordAuthentication NULL = new NtlmPasswordAuthentication("", "", ""); static final NtlmPasswordAuthentication GUEST = new NtlmPasswordAuthentication("?", "GUEST", ""); static final NtlmPasswordAuthentication DEFAULT = new NtlmPasswordAuthentication(null); /** The authentication domain */ String domain; /** The username for authentication */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/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 12:09:07 UTC 2025 - 7K bytes - Viewed (1) -
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/test/java/jcifs/smb/JAASAuthenticatorTest.java
@DisplayName("isAnonymous and isGuest are always false") void testIsAnonymousAndGuestFalse() { JAASAuthenticator auth = new JAASAuthenticator(); // JAAS-based authenticator should never be anonymous or guest assertFalse(auth.isAnonymous()); assertFalse(auth.isGuest()); } @ParameterizedTest @EnumSource(SubjectVariant.class) @DisplayName("getSubject: caches results and refresh resets cache")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0)