All Questions
17 questions
0
votes
1
answer
3k
views
How update password with Spring Ldap template?
I have a problem with changing password with Spring LDAP template. I don't use Spring security. I created application by example and i tried to write a new method which change a user password.
My ...
0
votes
1
answer
2k
views
LDAP Password reset does not respect the pwdhistory attribute
I'm using Java - Apache Directory Client API for accessing Apache DS Ldap Server using ldapConnectionTemplate.
I'm trying to implement a feature which allows the user to reset/change the password. ...
0
votes
1
answer
990
views
Get decrypted LDAP pwdhistory values using Java
String[] userAttrList = {"cn", "sn","pwdHistory};
SearchResult searchResult = lc.search(baseDN, SearchScope.SUB, searchFilter, userAttrList);
List<SearchResultEntry> result = ...
1
vote
0
answers
1k
views
Resetting passwords in AD LDS not honoring password history via Java ldap api
I am trying to implement reset password functionality for accounts in Windows 2012 R2 AD LDS via java ldap api. But it is not honoring password history constraint. When I tried to implement change ...
1
vote
1
answer
2k
views
Set already hashed password for LDAP users (with Java)
I try to migrate a legacy application (which does its own user management) to LDAP. The legacy application stores its users in a database table with hashed passwords. I know the hashing algorithm (...
0
votes
1
answer
126
views
SSPR - Access PWM from my SOAP API
PWM (Password Management) : https://code.google.com/p/pwm/
I've downloaded war file from the above link and its running on my local tomcat server.
I've a Java SOAP API which create a user directly in ...
0
votes
1
answer
469
views
How to reset password in AD, getting an LDP OperationNotSupported error
We are able to create accounts in the active directory. But for some reason we are unable to login with them. The way our system works is a user applies for an account, an admin approves it and the ...
0
votes
1
answer
250
views
JAVA - Active directory and ldap password properties
I'm using a program that adds correctly a user to AD using LDAP protocol.
I noticed that there are some properties about the password. There are userPassoword that stores password in clear and ...
0
votes
2
answers
418
views
storing ldap password configuration file
I have to connect with ldap.I want to store user id and password in configuration file.What is the best way to store password in config file, so it is secured?
i dnt want to use spring.
1
vote
1
answer
262
views
Checking password in java code (security concerns)
I am writing a small webserver for my house to play around with a few java API's I want to know better. This web server will eventually hold personal files and pictures.
I did not feel like setting ...
4
votes
5
answers
27k
views
Changing Active Directory user password from java program
I have Active Directory, with Users in it, i am trying to change a users password from a Java Program as follows:
Properties prop = new Properties();
prop.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun....
1
vote
3
answers
1k
views
LDAP password hash matching in Java
I have this kind of password hashes in my LDAP database:
userPassword:: MTIzYVBkLSY=
I'm also caching the users password hash in my application so it is not needed to enter it every time. Given this, ...
1
vote
1
answer
1k
views
How to check LDAP password hash method (password authentication) in java?
I need to synchronize users kept in my database in my java application with those in specific location in active directory. I want to use the same authentication in my server application so I can copy ...
4
votes
4
answers
10k
views
How to read LDAP password policy in Java
Can i read user password policy from LDAP, like when it expires or more details like password strength (minimal length etc.) ? I need these information so I can use the same policy for users kept in ...
2
votes
2
answers
3k
views
Java -> LDAP account password encryption
I have an Ldap directory synchronised from a microsoft active directory.
This Ldap contain many account, each account have a password attribute.
I must develop a java program where a user have to ...