Skip to content

nobrin/adleastcli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ADLeastCLI: AD User Manager

Overview

ADLeastCLI provides least operations for managing users/groups on Active Directory(AD).

When you want to use an AD for only authentication (i.e. AWS Client VPN with Directory Service), it can manage users/groups with very simple procedure.

And for changing password by each users, very simple web server is implemented. For very limited usage, it can be used for changing password by users without the administrator.

Example:

Create a user
$ adleastcli -S example.com user create testuser Password123#

Create a group
$ adleastcli -S example.com group create mygroup

Add the user to the group
$ adleastcli -S example.com user join testuser mygroup

Remove the user from the group
$ adleastcli -S example.com user leave testuser mygroup

Delete a group
$ adleastcli -S example.com group delete mygroup

Delete a user
$ adleastcli -S example.com user delete testuser

List users
$ adleastcli -S example.com user

Show user details
$ adleastcli -S example.com user info testuser

List groups
$ adleastcli -S example.com group

Show group details
$ adleastcli -S example.com group info mygroup

Set password(as administrator)
$ adleastcli -S example.com user setpw testuser NewPass123#

Change password(as a user)
$ adleastcli -S example.com -U testuser user passwd
Enter password for testuser:
Enter new password:
Confirm new password:

Start WebUI server for changing password by oneself
$ adleastcli -S example.com -b 0.0.0.0:8080 httpd

Installation

Install the latest release with pip install adleastcli or simply downloading adleastcli.py.

Installing with pip store adleastcli to your bin path, but it is only copy of adleastcli.py. If you get adleastcli.py with downloading, you can rename it to adleastcli.

About

Simple user management CLI for Active Directory

Resources

License

Stars

Watchers

Forks

Packages

No packages published