Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 381 for mypassword (4.66 sec)

  1. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                            password = new String(auth.getPassword());
                        } catch (final Exception ex) {
                            log.debug("Interactive authentication failed", ex);
                        }
                    }
                    final Type2Message type2 = (Type2Message) message;
                    message = new Type3Message(this.transportContext, type2, null, password, domain, user,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Current Password */
        public static final String LABELS_OLD_PASSWORD = "{labels.oldPassword}";
    
        /** The key of the message: New Password */
        public static final String LABELS_NEW_PASSWORD = "{labels.newPassword}";
    
        /** The key of the message: New Password (Confirm) */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

                lastDeletedUser = user;
            }
    
            @Override
            public boolean changePassword(String username, String password) {
                changePasswordCallCount++;
                lastChangePasswordUsername = username;
                lastChangePasswordPassword = password;
                return changePasswordResult;
            }
    
            @Override
            public User load(User user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmSsp.java

    import jcifs.ntlmssp.Type3Message;
    import jcifs.smb.NtlmPasswordAuthentication;
    
    /**
     * This class is used internally by {@code NtlmHttpFilter},
     * {@code NtlmServlet}, and {@code NetworkExplorer} to negotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/security/index.md

        * πŸ“š πŸ‘« πŸ’§ β˜‘ πŸ— ✳ 2️⃣.0️⃣ 🀝 πŸ•β€πŸ¦Ί (πŸ’– πŸ‡ΊπŸ‡ΈπŸ”, πŸ‘±πŸ“”, πŸ‘±πŸ“”, πŸ“‚, ♒️):
            * `implicit`
            * `clientCredentials`
            * `authorizationCode`
        * βœ‹οΈ πŸ“€ 1️⃣ 🎯 "πŸ’§" πŸ‘ˆ πŸ’ͺ πŸ‘Œ βš™οΈ 🚚 🀝 🎏 🈸 πŸ”—:
            * `password`: ⏭ πŸ“ƒ πŸ”œ πŸ“” πŸ–Ό πŸ‘‰.
    * `openIdConnect`: βœ”οΈ 🌌 πŸ”¬ ❔ πŸ”Ž Oauth2️⃣ 🀝 πŸ“Š πŸ”.
        * πŸ‘‰ 🏧 πŸ” βš«οΈβ” πŸ”¬ πŸ‘©β€πŸ’» πŸ”— πŸ”§.
    
    
    /// tip
    
    πŸ› οΈ 🎏 🀝/βœ” πŸ•β€πŸ¦Ί πŸ’– πŸ‡ΊπŸ‡ΈπŸ”, πŸ‘±πŸ“”, πŸ‘±πŸ“”, πŸ“‚, ♒️. πŸ’ͺ &amp; πŸ“Ά ⏩.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/request-form-models.md

    If a client tries to send some extra data, they will receive an **error** response.
    
    For example, if the client tries to send the form fields:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    They will receive an error response telling them that the field `extra` is not allowed:
    
    ```json
    {
        "detail": [
            {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    		uint32_t permissions;
    		uint32_t max_uses;
    		uint32_t current_uses;
    		[string] wchar_t *path;
    		[string] wchar_t *password;
    		uint32_t sd_size;
    		[size_is(sd_size)] uint8_t *security_descriptor;
    	} ShareInfo502;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo502 *array;
    	} ShareInfoCtr502;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_ALLOW_BASIC = "spnego.allow.basic";
    
        /** Configuration key for pre-authentication password. */
        protected static final String SPNEGO_PREAUTH_PASSWORD = "spnego.preauth.password";
    
        /** Configuration key for pre-authentication username. */
        protected static final String SPNEGO_PREAUTH_USERNAME = "spnego.preauth.username";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            assertFalse(useRawNTLM, "Should delegate raw NTLM setting");
            assertTrue(disablePlainTextPasswords, "Should delegate plain text password setting");
            assertEquals("GUEST", guestUsername, "Should delegate guest username");
            assertEquals("", guestPassword, "Should delegate guest password");
            assertFalse(allowGuestFallback, "Should delegate guest fallback setting");
    
            verify(mockDelegate).getLanManCompatibility();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/audit/SecurityAuditLogger.java

        // Patterns for sensitive data - compiled once and cached
        private static final Pattern PASSWORD_PATTERN = Pattern.compile(
                "(?i)(password|passwd|pwd|secret|token|key|credential|auth)([\"']?\\s*[:=]\\s*[\"']?)([^\"',\\s]+)", Pattern.CASE_INSENSITIVE);
    
        private static final Pattern IP_PATTERN = Pattern.compile("\\b(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\b");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
Back to top