|
Hi all,
My company, like everyone else's, requires password resets from time to time. This is all good and well for security's sake, but I'd like to explore the challenge of resetting it through a script (notably because we can't use our previous 25 passwords...
Started by kyle on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Setting passwords....
You didn't mention what server you're using.
Either you use Net::LDAP , or you use Win32::OLE->GetObject('LDAP:') .
Net::LDAP::Extension::SetPassword doesn't have anything to do with any OLE LDAP object.
|
|
Hi.
I'm having trouble running a complex query against our company LDAP server. I'm using the following Perl script:
use Data::Dumper; use Net::LDAP; die "Can't connect to LDAP-Server: $@\n" unless $ldap = Net::LDAP->new( 'xLDAPx' ); foreach my $filter...
Started by holli on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The first two.
I can't imagine this works in Ldap Browser - I just tried myself without success.
|
|
Hello,
I want to search every computer known to LDAP and list all accounts on each computer which are Administrators.
I'm familiar with LDAP queries, I just don't know if this is possible, and if it is - what the syntax would be.
Thanks in advance,
Jim...
Started by Jim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you want to do it in perl you should use Net::LDAP and Win32API....
A script wich first performs the LDAP query and then uses the results to connect to each server and query members of the administrators group via LanManager API.
|
Ask your Facebook Friends
|
Is there a way to authorize user via ldap on a git repository? Or phrased slightly differently: Is there a way to deny people pull/push if they are not in a specific ldap group?
Edit: Yes, great idea using PAM and/or a hook. Does anyone have experience...
Started by Tobias Hertkorn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If there's a more specific way, that JUST checks ldap without affecting the rest of your system? I don't know, but it's probably possible additional access control; see ....
Pam-ldap to make your standard login system work with LDAP.
|
|
I'm a developer for a product that integrates with LDAP for authentication. I need to set up a directory that I can test against.
I'm not an expert with LDAP. To help ease the learning curve it'd be useful to have a real-world example directory.
Are there...
Started by Christopher Nadeau on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
I don't think any LDAP server is gonna be easy until you brush up on your LDAP a little; most requirements) LDAP functionality without all of the Domain/DNS/etc baggage that comes with full AD with how to browse, edit and manage data....
|
|
Are there tools that make the job easier? If command-line only tools exist, then can anyone speculate if there is a market for a GUI tool? For example, you can create a relational database by modeling visually. Should the same notion exist for LDAP?
Started by jm04469 on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
In that case, most LDAP tools for ldif files: http://directory.apache....
Or backing them up.
:)
I don't may be copying objects from one tree to another .
IPlanet LDAP then they had a nice interface for creating and modifying schemas though.
|
|
Hello All
Just installed LDAP server (OpenLDAP) on Ubuntu with following base root dn
settings:
cn=admin,dc=nodomian
Added few organisation units to it using command line utility 'ldapadd' and
few using ldap browser - 'phpldapadmin'
Then I felt like...
Started by paragkalra@gmail.com on
, 4 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
This is
commonly done....
Cheers,
Parag
On Sun, Sep 20 inside that.
So if I will use wrong credentials to modify ldap database then it will
surely shout...
Credentials only while making any changes
(add/modify/delete) to ldap server.
|
|
I have problems (no snickering in the back!)
I wrote a script to connect to AD, do some stuff, and spit out an
XML file. Works great. I picked up the script and handed it to a
colleague to run on his AIX server. Of course, his Perl install was
criminally...
Started by ismael.lezcano@gmail.com on
, 5 posts
by 1 people.
Answer Snippets (Read the full thread at omgili):
Could it be the call to the $ldap object
IO::Socket::INET ($ldap release, I basically will not....
LDAP working my way backwards from 0.39, with the
idea that I would stop at the version that worked from
0.36 to 0.37 was LDAP.pm.
|
|
What Perl module would you be lost without?
Started by pdcawley on
, 40 posts
by 40 people.
Answer Snippets (Read the full thread at stackoverflow):
CGI and DBI hard to choose between them but most things I do have :P Test::More , because every module needs... .
How about the Perl module which goes through this site and removes questions with Perl require a database.
Probably say DBI.
|
|
I am considering writing some Perl scripts that interact with Active Directory. Being somewhat new to Perl, I was wondering if there were any specific modules, tools, techniques, etc. that anyone would suggest I use. As of right now, I am only looking...
Started by indiguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
">;"; my $strFilter....
$strDomainDN.
Here is an example from their cookbook code:
# This Perl code finds all disabled user accounts;LDAP://" .
The best source of Active Directory example code in Perl .
Else can elaborate on that a bit.
|