-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ldapsearcher | ||
A ldapsearch tool. Run pre-defined or custom queries | ||
``` | ||
$ ./ldapsearcher -h | ||
Usage: ldapsearcher [-hkpt] [-a value] [-c value] [-d value] [-f value] [-g value] [-l value] [-m value] [-o value] [-r value] [-s value] [-u value] [parameters ...] | ||
-a, --custom-attributes=value | ||
list of attributes delimited by ',' for custom search | ||
-c, --modified-after=value | ||
list users created or modified after date YYYYMMDDHHMMSS | ||
-d, --base-dn=value | ||
BaseDN | ||
-f, --custom-filter=value | ||
filter for custom search | ||
-g, --list-groups-user=value | ||
list groups of a user | ||
-h, --help display this help | ||
-k, --locked list locked users | ||
-l, --list-all-members-group=value | ||
list all members of a group -- usually requires full | ||
distinguished name of group | ||
-m, --group-membersof=value | ||
list groups that the specified group is a member, wildcards | ||
allowed | ||
-o, --extra-ou=value | ||
extra organizational unit | ||
-p, --passwd | ||
-r, --port=value ldap port | ||
-s, --server=value | ||
ldap server | ||
-t, --custom-search | ||
-u, --user=value username | ||
``` |