Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for GUEST (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top