Lightweight Directory Access Protocol, an application protocol for reading and editing directories over an IP network.
2
votes
4answers
2k views
Password expiry notification script
I've just solve one problem that notifies users if their password is going to expire in 14 days. The script is working fine. I just want to improve my code and desire some suggestions.
...
1
vote
0answers
796 views
Active Directory + LDAP Queries
I've been trying to figure out the best way to query Active Directory with JavaScript. The code below is the best I can come up with.
I was hoping someone could/would review my JavaScript code to see ...
6
votes
4answers
186 views
Obj-C wrapper for OpenLDAP
This section of code reside in a utility class (LDAPUtility). It's purpose is to subscribe or unsubscribe a user from an LDAP group. My main questions are if I am using the LDAP library correctly and ...
4
votes
2answers
82 views
Addressing possible strategic problems with LDAP module and unit testing code
I'm a sysadmin writing a tool to perform administrative tasks on our upcoming new account management system that runs over LDAP. I want the tool to be highly flexible, configurable, and reliable, so ...
5
votes
3answers
509 views
Join strings from a List<string> while also formating them
The code I have wrote works fine, this inquiry being purely for educational purposes. I want to know how others would do this better and cleaner. I especially hate the way I add the list items to ...
7
votes
2answers
201 views
Use different contructors of disposable class
I have a very simple helper class to validate credentials. Sometimes the domain has a value, sometimes not. Depending on this, a different constructor for ...
3
votes
1answer
370 views
2
votes
1answer
108 views
LDAP Library design, classes, functions, initialization?
I have started working on my first open source project making an LDAP library in Python. I have coded quite a bit and am starting to think about a couple of the details related to design.
I have ...
5
votes
1answer
1k views
ASN.1 BER Encoding and Decoding
I have a project (ldaplib) I am working on that needs to do ASN1-BER decoding and encoding. The function I have for the decoding portion is slightly more complex but neither are all that complicated. ...
1
vote
1answer
336 views
Whitelist input data for a lookup by name
I'm whitelisting the input data to an LDAP/AD search on 'sn' (=surname). The purpose is to stop penetration attacks through the app and into the LDAP servers (i.e. no brackets, please).
...