Skip to content

Commit

Permalink
Merge pull request #1441 from SEKOIA-IO/update-automation-library-doc…
Browse files Browse the repository at this point in the history
…umentation

Refresh automation library documentation
  • Loading branch information
mathieubellon authored Nov 28, 2023
2 parents e056232 + 9676979 commit 514daed
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
54 changes: 54 additions & 0 deletions _shared_content/automate/library/microsoft-active-directory.md
Original file line number Diff line number Diff line change
@@ -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 [email protected] ) |
| `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**
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 514daed

Please sign in to comment.