Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for guess (0.01 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

                // MID checking not required here as we only read responses for which we're waiting
                // We only read what we were waiting for, so first guess would be no.
                final boolean verify = dgst.verify(buffer, i, size, 0, this);
                this.verifyFailed = verify;
                return !verify;
            }
            return true;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/security/http-basic-auth.md

    ### Timing Attacks { #timing-attacks }
    
    But what's a "timing attack"?
    
    Let's imagine some attackers are trying to guess the username and password.
    
    And they send a request with a username `johndoe` and a password `love123`.
    
    Then the Python code in your application would be equivalent to something like:
    
    ```Python
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            }
        }
    
        /**
         * Guess the authentication type based on the username format
         *
         * @return the guessed authentication type
         */
        protected AuthenticationType guessAuthenticationType() {
            AuthenticationType t = AuthenticationType.USER;
            if ("guest".equalsIgnoreCase(this.username)) {
                t = AuthenticationType.GUEST;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/first-steps.md

    /// info | `@decorator` Info
    
    That `@something` syntax in Python is called a "decorator".
    
    You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
    A "decorator" takes the function below and does something with it.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 11K bytes
    - Viewed (0)
  5. src/main/java/jcifs/Configuration.java

         *
         * @return password used when guest authentication is requested
         */
        String getGuestPassword();
    
        /**
         * Property {@code jcifs.smb.client.guestUsername}, defaults to GUEST
         *
         * @return username used when guest authentication is requested
         */
        String getGuestUsername();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

        protected boolean sendNTLMTargetName = true;
        private byte[] machineId;
        /** Username for guest authentication */
        protected String guestUsername = "GUEST";
        /** Password for guest authentication */
        protected String guestPassword = "";
        /** Whether to allow fallback to guest authentication */
        protected boolean allowGuestFallback = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                    logger.warn("Failed to process shutdown task.", e);
                }
            });
        }
    
        /**
         * Gets the username of the current user.
         *
         * @return The username, or "guest" if not logged in.
         */
        public String getUsername() {
            return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top