Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 62 for Secured (0.05 seconds)

  1. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

        }
    
        @Test
        public void test_render_link_https() {
            String result = markdownRenderer.render("[Secure Link](https://example.com)");
            assertTrue(result.contains("<a"));
            assertTrue(result.contains("href=\"https://example.com\""));
            assertTrue(result.contains("Secure Link"));
        }
    
        @Test
        public void test_render_horizontalRule() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

         * Determines if the search parameter cookie should be secure based on configuration and request.
         *
         * @param request The HTTP request
         * @return true if the cookie should have the secure flag set
         */
        protected boolean isSearchParameterCookieSecure(final HttpServletRequest request) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String secure = fessConfig.getCookieSearchParameterSecure();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Determines whether the user identification cookie should be marked as secure.
         * Checks the configured secure setting or examines request headers to detect HTTPS.
         *
         * @return true if the cookie should be secure, false otherwise
         */
        protected boolean isSecureCookie() {
            if (cookieSecure != null) {
                return cookieSecure;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14.9K bytes
    - Click Count (0)
  4. src/main/assemblies/files/tomcat_config.properties

    #                                                     Tomcat
    #                                                     ------
    tomcat.URIEncoding = UTF-8
    tomcat.useBodyEncodingForURI = true
    #tomcat.secure=false
    #tomcat.scheme=http
    #tomcat.bindAddress=127.0.0.1
    #tomcat.proxyPort=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Aug 11 21:43:37 GMT 2018
    - 639 bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java

        public void test_convertCrawlingPath_https_protocol() {
            assertEquals("https://example.com", wizardAction.convertCrawlingPath("https://example.com"));
            assertEquals("https://secure.example.com/path", wizardAction.convertCrawlingPath("https://secure.example.com/path"));
        }
    
        @Test
        public void test_convertCrawlingPath_smb_protocol() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

     * which is commonly used for Kerberos-based authentication in Windows environments.
     * It handles the negotiation between client and server to establish a secure
     * authentication context without requiring users to explicitly enter credentials.
     *
     * The authenticator supports various configuration options including delegation,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  7. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

        @Test
        public void test_isFileSystemPath_https_protocol_not_file_system() {
            assertFalse(goAction.isFileSystemPath("https://example.com/path/file.txt"));
            assertFalse(goAction.isFileSystemPath("https://secure.example.com/file.txt"));
        }
    
        @Test
        public void test_isFileSystemPath_other_protocols_not_file_system() {
            assertFalse(goAction.isFileSystemPath("mailto:******@****.***"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

         * This method searches for 'fess_ds++.xml' configuration files within JAR files
         * in the data store plugin directory and extracts component class names.
         *
         * <p>The method uses secure XML parsing features to prevent XXE attacks and
         * other XML-based vulnerabilities. Component class names are extracted from
         * the 'class' attribute of 'component' elements in the XML files.</p>
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    import jakarta.servlet.ServletOutputStream;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * API manager for search engine administrative operations.
     * Provides secure access to search engine APIs through authentication and token-based authorization.
     */
    public class SearchEngineApiManager extends BaseApiManager {
        private static final String ADMIN_SERVER = "/admin/server_";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:40 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         */
        public GsaConfigParser() {
            super();
        }
    
        /**
         * Parses a GSA configuration XML file from the given input source.
         * This method configures a secure SAX parser and processes the XML content
         * to extract configuration information for web and file crawling.
         *
         * @param is the input source containing the GSA configuration XML
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
Back to Top