Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for CREDENTIAL (0.06 seconds)

  1. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

        }
    
        /**
         * Log the login failure activity.
         * @param credential The credential.
         */
        public void loginFailure(final OptionalThing<LoginCredential> credential) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGIN_FAILURE.name());
            credential.ifPresent(c -> {
                valueMap.put("class", c.getClass().getSimpleName());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        }
    
        @Test
        public void test_loginFailure_withCredential() {
            activityHelper.useEcsFormat = false;
            LoginCredential credential = new TestLoginCredential();
            activityHelper.loginFailure(OptionalThing.of(credential));
            String result = localLogMsg.get();
            assertTrue(result.contains("action:LOGIN_FAILURE"));
            assertTrue(result.contains("class:TestLoginCredential"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public String spnegoPromptNtlm;
    
        /** Enable or disable SPNEGO localhost authentication. */
        @Size(max = 10)
        public String spnegoAllowLocalhost;
    
        /** Enable or disable SPNEGO credential delegation. */
        @Size(max = 10)
        public String spnegoAllowDelegation;
    
        /** SPNEGO directories to exclude from authentication. */
        @Size(max = 1000)
        public String spnegoExcludeDirs;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  4. src/main/resources/fess_config.properties

    # Regex pattern for sensitive values to mask in debug logs (case-insensitive match against property/env keys).
    app.log.sensitive.property.pattern=.*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.*
    
    # Extension names for application customization.
    app.extension.names=
    
    # Audit log format.
    app.audit.log.format=
    
    # Script audit log settings.
    script.audit.log.enabled=true
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String APP_ENCRYPT_PROPERTY_PATTERN = "app.encrypt.property.pattern";
    
        /** The key of the configuration. e.g. .*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.* */
        String APP_LOG_SENSITIVE_PROPERTY_PATTERN = "app.log.sensitive.property.pattern";
    
        /** The key of the configuration. e.g.  */
        String APP_EXTENSION_NAMES = "app.extension.names";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top