Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for sicura (0.09 seconds)

  1. src/main/resources/fess_label_it.properties

    labels.wizard_button_finish=Salta
    labels.search_list_configuration=Ricerca
    labels.search_list_button_delete=Elimina
    labels.search_list_delete_confirmation=Sei sicuro di voler eliminare?
    labels.search_list_button_delete_all=Elimina tutto con questa query
    labels.search_list_delete_all_confirmation=Sei sicuro di voler eliminare tutto con questa query?
    labels.search_list_button_cancel=Annulla
    labels.failure_url_configuration=URL di errore
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K 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/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            DuplicateHost host2 = new DuplicateHost();
            host2.setRegularName("secure.example.com");
            host2.setDuplicateHostName("www.example.com");
            helper.duplicateHostList.add(host2);
    
            String url = "http://example.com/test";
            String result = helper.convert(url);
    
            assertEquals("http://secure.example.com/test", result);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/annotation/Secured.java

    @Retention(RetentionPolicy.RUNTIME)
    @Inherited
    @Documented
    public @interface Secured {
        /**
         * Returns the list of security configuration attributes (e.g.&nbsp;ROLE_USER, ROLE_ADMIN).
         *
         * @return String[] The secure method attributes
         */
        String[] value();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  7. 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)
  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/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)
Back to Top