- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for guess (0.01 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
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) -
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) -
docs/en/docs/tutorial/first-steps.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 11K bytes - Viewed (0) -
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) -
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) -
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)