Jump to content

openLDAP


Recommended Posts

Hi,

I'm actually trying to retrieve some informations about a LDAP accounts.

I'm not working on Active directory but on openLDAP

I found here a script wich allows me to look for members and works well

Const $LDAPBaseDN = "ou=people" & ",dc=mycie,dc=com"
Const $LDAPPort = "myport"
Const $LDAPServer = "myserver"
Const $LDAPAddress = $LDAPServer & ":" & $LDAPPort & "/" & $LDAPBaseDN
$LookFor = "baghenamoth"

$ObjLDAP = ObjGet ("LDAP://" & $LDAPAddress)
If @error Then
    MsgBox (4096, "LDAP Connection", $LDAPServer & " connection error")
    Exit
EndIf
For $ObjMembers In $ObjLDAP
    ConsoleWrite($ObjMembers.uid & @CR)
Next

Does anyone knows how to check member info without browsing all members and more : how to check user authentification (BIND?)

Edited by baghenamoth
Link to comment
Share on other sites

  • 2 weeks later...

Hi,

I'm actually trying to retrieve some informations about a LDAP accounts.

I'm not working on Active directory but on openLDAP

I found here a script wich allows me to look for members and works well

Const $LDAPBaseDN = "ou=people" & ",dc=mycie,dc=com"
Const $LDAPPort = "myport"
Const $LDAPServer = "myserver"
Const $LDAPAddress = $LDAPServer & ":" & $LDAPPort & "/" & $LDAPBaseDN
$LookFor = "baghenamoth"

$ObjLDAP = ObjGet ("LDAP://" & $LDAPAddress)
If @error Then
    MsgBox (4096, "LDAP Connection", $LDAPServer & " connection error")
    Exit
EndIf
For $ObjMembers In $ObjLDAP
    ConsoleWrite($ObjMembers.uid & @CR)
Next

Does anyone knows how to check member info without browsing all members and more : how to check user authentification (BIND?)

Your code works for me. I'm working on SunOne Directory Server v. 5.2
Link to comment
Share on other sites

  • 5 years later...

Can you please tell us what the download contains? And what is it all for?

The script has 541 bytes. It runs Outlook and sends a few keystrokes. No documentation but a lot of unreadable (russian) characters.

The second file is the AutoIt package.

So we need to download 7 megabyte for 500 bytes of code?

Doesn't look useful :huh:

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...