- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 215 for reauth (1.19 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthenticationHolder.java
super(); } /** * Adds an SMB authentication configuration to the holder. * * @param auth the SMB authentication configuration to add */ public void add(final SmbAuthentication auth) { authMap.put(auth.getPathPrefix(), auth); } /** * Retrieves the SmbAuthentication associated with the given path. * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/NTLMSchemeProvider.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.client.http.ntlm; import org.apache.http.auth.AuthScheme; import org.apache.http.auth.AuthSchemeProvider; import org.apache.http.impl.auth.NTLMScheme; import org.apache.http.protocol.HttpContext; /** * This class is AuthSchemeFactory implementation for NTLM. * * @author shinsuke * */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
/** * Constructor. * @param auth The SAML authentication. */ public SamlCredential(final Auth auth) { attributes = auth.getAttributes(); nameId = auth.getNameId(); nameIdFormat = auth.getNameIdFormat(); sessionIndex = auth.getSessionIndex(); nameidNameQualifier = auth.getNameIdNameQualifier(); nameidSPNameQualifier = auth.getNameIdSPNameQualifier(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
CIFSContext context = new BaseContext(new PropertyConfiguration(props)); NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(context, "TEST_DOMAIN", "user", "pass"); when(httpSession.getAttribute("NtlmHttpAuth")).thenReturn(auth); filter.doFilter(request, response, filterChain); verify(filterChain).doFilter(any(NtlmHttpServletRequest.class), eq(response));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
page.failure.url.max.fetch.size=1000 # Maximum number of favorite log records to fetch per page. page.favorite.log.max.fetch.size=100 # Maximum number of file auth records to fetch per page. page.file.auth.max.fetch.size=100 # Maximum number of web auth records to fetch per page. page.web.auth.max.fetch.size=100 # Maximum number of path mapping records to fetch per page. page.path.mapping.max.fetch.size=1000
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
// private static final Logger logger = LogManager.getLogger(AdminMaintenanceAction.class); private static final String[] CAT_NAMES = { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks", "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} else if (ncr.getContextType() == PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE) { log.debug("Multiple preauth negotiate contexts"); return false; } } if (!foundPreauth) { log.error("Missing preauth negotiate context"); return false; } if (!foundEnc && (caps & Smb2Constants.SMB2_GLOBAL_CAP_ENCRYPTION) != 0) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
return; } } else { final String auth = new String(Base64.decode(msg.substring(6)), "US-ASCII"); int index = auth.indexOf(':'); String user = index != -1 ? auth.substring(0, index) : auth; final String password = index != -1 ? auth.substring(index + 1) : ""; index = user.indexOf('\\'); if (index == -1) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<p><la:message key="labels.menu_path_mapping" /></p> </a></li></c:if> <c:if test="${fe:permission('admin-webauth-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/webauth/')}" class="nav-link <c:if test="${param.menuType=='webAuthentication'}">active</c:if>" <c:if test="${param.menuType=='webAuthentication'}">aria-current="page"</c:if>>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
auth.getUserSessionKey(transport.getContext(), serverEncryptionKey, this.macSigningKey, 0); break; default: this.macSigningKey = new byte[40]; auth.getUserSessionKey(transport.getContext(), serverEncryptionKey, this.macSigningKey, 0);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0)