diff --git a/_shared_content/automate/library/microsoft-active-directory.md b/_shared_content/automate/library/microsoft-active-directory.md new file mode 100644 index 0000000000..a8f1941d4e --- /dev/null +++ b/_shared_content/automate/library/microsoft-active-directory.md @@ -0,0 +1,54 @@ +# Microsoft Active Directory + +![Microsoft Active Directory](/assets/playbooks/library/microsoft-active-directory.png){ align=right width=150 } + +Microsoft Active Directory (Microsoft AD), is a directory service developed by Microsoft for Windows domain networks. It is a centralized system that stores information about networked resources and makes these resources easily accessible to users and administrators. Active Directory provides services for authentication and authorization, organizing and managing resources, such as users, computers, and devices, in a networked environment. + +## Configuration + +| Name | Type | Description | +| --------- | ------- | --------------------------- | +| `servername` | `string` | IP or name of your host | +| `admin_username` | `string` | The username of the account that have necessary permisions to change passwords (e.g admin@example.com ) | +| `admin_password` | `string` | The dedicated password of the account | + +## Actions + +### Disable User + +Disable a Microsoft Active Directory user. + +**Arguments** + +| Name | Type | Description | +| --------- | ------- | --------------------------- | +| `username` | `string` | Target user | +| `basedn` | `string` | The starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | + +### Enable User + +Enable a Microsoft Active Directory user. + +**Arguments** + +| Name | Type | Description | +| --------- | ------- | --------------------------- | +| `username` | `string` | Target user | +| `basedn` | `string` | he starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | + +### Reset User Password + +Reset a user's password. You will need a strong password for that otherwise enable the password policy + +**Arguments** + +| Name | Type | Description | +| --------- | ------- | --------------------------- | +| `username` | `string` | Target user | +| `basedn` | `string` | The starting point an LDAP server uses when searching for users authentication within your Directory. (e.g DC=example-domain,DC=com) | +| `new_password` | `string` | New password, required to reset the old one of course. | + + +## Extra + +Module **`Microsoft Active Directory` v1.0.0** \ No newline at end of file diff --git a/docs/assets/playbooks/library/microsoft-active-directory.png b/docs/assets/playbooks/library/microsoft-active-directory.png new file mode 100644 index 0000000000..58877e0d15 Binary files /dev/null and b/docs/assets/playbooks/library/microsoft-active-directory.png differ diff --git a/mkdocs.yml b/mkdocs.yml index 91e970fc33..f7c434e783 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -278,6 +278,7 @@ nav: - MWDB: xdr/features/automate/library/mwdb.md - Mandrill: xdr/features/automate/library/mandrill.md - Mattermost: xdr/features/automate/library/mattermost.md + - Microsoft Active Directory: xdr/features/automate/library/microsoft-active-directory.md - Microsoft Azure: xdr/features/automate/library/microsoft-azure.md - Microsoft Office365: xdr/features/automate/library/microsoft-office365.md - Netskope: xdr/features/automate/library/netskope.md @@ -455,6 +456,7 @@ nav: - MWDB: tip/features/automate/library/mwdb.md - Mandrill: tip/features/automate/library/mandrill.md - Mattermost: tip/features/automate/library/mattermost.md + - Microsoft Active Directory: tip/features/automate/library/microsoft-active-directory.md - OSINT: tip/features/automate/library/osint.md - Onyphe: tip/features/automate/library/onyphe.md - PagerDuty: tip/features/automate/library/pagerduty.md