Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 383 for passwords (0.19 sec)

  1. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

            serverData.sessKey = 0x12345678;
            serverData.scapabilities = 0x8000F3FD; // Various capabilities
            serverData.oemDomainName = "WORKGROUP";
            serverData.securityMode = 0x0F; // User + encrypt passwords + signatures
            serverData.security = 1; // User level
            serverData.encryptedPasswords = true;
            serverData.signaturesEnabled = true;
            serverData.signaturesRequired = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  2. src/main/java/jcifs/audit/SecurityAuditLogger.java

                if (!lowerData.contains("password") && !lowerData.contains("secret") && !lowerData.contains("token")
                        && !lowerData.contains("key") && !lowerData.contains("credential") && !lowerData.contains("auth")) {
                    return data; // No sensitive patterns detected, skip regex
                }
            }
    
            // Mask passwords and secrets using cached pattern
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            return ntResponse;
        }
    
        /**
         * Generates the NTOWFv1 hash for the given password.
         *
         * @param password the password to hash
         * @return the NTOWFv1 hash bytes
         */
        public static byte[] nTOWFv1(final String password) {
            if (password == null) {
                throw new RuntimeException("Password parameter is required");
            }
            try {
                final MD4 md4 = new MD4();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         *
         * @return default credentials, user name
         */
        String getDefaultUsername();
    
        /**
         *
         * Property {@code jcifs.smb.client.password}
         *
         * @return default credentials, password
         */
        String getDefaultPassword();
    
        /**
         * Lanman compatibility level
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean disableSpnegoIntegrity = false;
        /** Whether to enforce SPNEGO integrity checking */
        protected boolean enforceSpnegoIntegrity = true;
        /** Whether plain text passwords are disabled */
        protected boolean disablePlainTextPasswords = true;
        /** OEM encoding for non-Unicode operations */
        protected String oemEncoding = SmbConstants.DEFAULT_OEM_ENCODING;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        client.networkInterceptors().add(loggingInterceptor);
        ```
    
        **Warning:** Avoid `Level.HEADERS` and `Level.BODY` in production because
        they could leak passwords and other authentication credentials to insecure
        logs.
    
     *  **WebSocket API now uses `RequestBody` and `ResponseBody` for messages.**
        This is a backwards-incompatible API change.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    storage.max.items.in.page=1000
    
    
    # ----------------------------------------------------------
    #                                                   Password
    #                                                     ------
    
    # List of invalid admin passwords.
    password.invalid.admin.passwords=\
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun decodePassword() {
        assertThat(parse("http://user:password@host/").password).isEqualTo("password")
        assertThat(parse("http://user:@host/").password).isEqualTo("")
        assertThat(parse("http://user:%F0%9F%8D%A9@host/").password)
          .isEqualTo("\uD83C\uDF69")
      }
    
      @Test
      fun decodeSlashCharacterInDecodedPathSegment() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        This increases the likelihood that HTTP/2 connections will be shared.
     *  New: Authentication challenges and credentials now use a charset. Use this in
        your authenticator to support user names and passwords with non-ASCII
        characters.
     *  New: Accept a charset in `FormBody.Builder`. Previously form bodies were
        always UTF-8.
     *  New: Support the `immutable` cache-control directive.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        Integer getStorageMaxItemsInPageAsInteger();
    
        /**
         * Get the value for the key 'password.invalid.admin.passwords'. <br>
         * The value is, e.g. admin <br>
         * comment: List of invalid admin passwords.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getPasswordInvalidAdminPasswords();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top