Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for testpassword (1.31 sec)

  1. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            boolean disablePlainTextPasswords = delegatingConfig.isDisablePlainTextPasswords();
            String guestUsername = delegatingConfig.getGuestUsername();
            String guestPassword = delegatingConfig.getGuestPassword();
            boolean allowGuestFallback = delegatingConfig.isAllowGuestFallback();
    
            // Then
            assertEquals(3, lanmanCompatibility, "Should delegate LanMan compatibility");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFileAuthenticationBhv.java

                result.setHostname(DfTypeUtil.toString(source.get("hostname")));
                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
                result.setProtocolScheme(DfTypeUtil.toString(source.get("protocolScheme")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java

                result.setMobile(DfTypeUtil.toString(source.get("mobile")));
                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setPager(DfTypeUtil.toString(source.get("pager")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPhysicalDeliveryOfficeName(DfTypeUtil.toString(source.get("physicalDeliveryOfficeName")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/UserService.java

                userBhv.selectEntity(cb -> cb.query().setName_Equal(username)).ifPresent(entity -> {
                    final String encodedPassword = fessLoginAssist.encryptPassword(password);
                    entity.setPassword(encodedPassword);
                    userBhv.insertOrUpdate(entity, op -> op.setRefreshPolicy(Constants.TRUE));
                }).orElse(() -> {
                    throw new FessUserNotFoundException(username);
                });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                        if (auth == null) {
                            return null;
                        }
                        user = auth.getUserName();
                        password = new String(auth.getPassword());
                    } catch (final Exception ex) {}
                }
                final Type2Message type2 = (Type2Message) message;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         *
         * @return the password
         * @deprecated Use getPasswordAsCharArray() for better security
         */
        @Deprecated
        public String getPassword() {
            checkNotClosed();
            log.warn("getPassword() is deprecated and insecure. Use getPasswordAsCharArray() instead.");
            return this.password != null ? new String(this.password) : null;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                    String domain = npa.getUserDomain();
                    String user = !npa.isAnonymous() ? npa.getUsername() : null;
                    String password = npa.getPassword();
                    String userInfo = this.url.getUserInfo();
                    if (userInfo != null) {
                        userInfo = URLDecoder.decode(userInfo, "UTF-8");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/config/BaseConfiguration.java

        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;
        /** Whether to use durable handles for improved reliability */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

        }
    
        // Helper method to create test user
        private User createTestUser(String username, String password) {
            User user = new User();
            user.setName(username);
            user.setPassword(password);
            user.setRoles(new String[] { "role1", "role2" });
            user.setGroups(new String[] { "group1", "group2" });
            return user;
        }
    
        // Test LdapManager implementation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                            throw new RuntimeException("Plain text passwords are disabled");
                        } else {
                            // plain text
                            final String password = a.getPassword();
                            this.lmHash = new byte[(password.length() + 1) * 2];
                            this.ntHash = new byte[0];
                            writeString(password, this.lmHash, 0);
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top