This small perl program allows you to easily export LDAP entries from an LDAP server (MS ActiveDirectory for example) to csv format. It can export various csv formats and can deal with mutlivalued attributes.
Features
- Easy to extract arbitary LDAP data online
- Wide range of CSV-formats (in fact: all line-based record separated formats)
- Special features to help in formatting the CSV (like inserting fixed column values)
- Allows to export entry-DNs (full, parent, last-rdn) into the CSV
- Easy use of piping (for example to postprocess with sed, grep or recode)
- Supports chained lookups (eg. export the entries managers surname)
- Platform independent because of perl (Windows, Linux, ...)
License
GNU General Public License version 2.0 (GPLv2)Follow ldap-csvexport
You Might Also Like
Bright Data - All in One Platform for Proxies and Web Scraping
Bright Data offers the highest quality proxies with automated session management, IP rotation, and advanced web unlocking technology. Enjoy reliable, fast performance with easy integration, a user-friendly dashboard, and enterprise-grade scaling. Powered by ethically-sourced residential IPs for seamless web scraping.
Rate This Project
Login To Rate This Project
User Reviews
-
Worked like a charm for me :) Thanks
-
Thanks. I could extremely simplified the process to replicate from LDAP directory to FileMaker database. I rewrote ldap-csvexport.pl multi value part as below, [line 526] "foreach my $val (sort { return 1 if lc($a) lt lc($b); return -1 if lc($a) gt lc($b); return 0;} @values)" -> "foreach my $val (@values)", because I would like to get ou's as |division|Department|sub Department|. I would much appreciate if you add an option not to sort multi value.