> ## Documentation Index
> Fetch the complete documentation index at: https://bloodhound.specterops.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Okta_ResetPassword

> Ability to reset passwords or temporary credentials for scoped Okta users

<img noZoom src="https://mintcdn.com/specterops/tTIczgde9H07oLXf/assets/enterprise-AND-community-edition-pill-tag.svg?fit=max&auto=format&n=tTIczgde9H07oLXf&q=85&s=ad49a576589f4d2a8081df77d07fdf56" alt="Applies to BloodHound Enterprise and CE" width="482" height="45" data-path="assets/enterprise-AND-community-edition-pill-tag.svg" />

## Edge Schema

* Source: [Okta\_User](/opengraph/extensions/okta/nodes/okta_user), [Okta\_Group](/opengraph/extensions/okta/nodes/okta_group), [Okta\_Application](/opengraph/extensions/okta/nodes/okta_application)
* Destination: [Okta\_User](/opengraph/extensions/okta/nodes/okta_user)
* Traversable: ✅

## General Information

The traversable Okta\_ResetPassword edges represent custom role permissions that allow a principal (user, group, or application) to reset passwords or temporary credentials for scoped Okta users. These edges are created when a custom role includes password management permissions such as `okta.users.credentials.resetPassword`, `okta.users.credentials.manage`, `okta.users.credentials.manageTemporaryAccessCode`, or `okta.users.manage`.

```mermaid theme={null}
graph LR
    u1("Okta_User john\@contoso.com")
    u2("Okta_User alice\@contoso.com")
    g1("Okta_Group Help Desk")
    app1("Okta_Application Automation")
    g1 -- Okta_ResetPassword --> u2
    g1 -- Okta_ResetFactors --> u2
    app1 -- Okta_ResetPassword --> u1
```

The edge is calculated based on custom role scoping.

```mermaid theme={null}
graph TD
    u1("Okta_User john\@contoso.com")
    u2("Okta_User alice\@contoso.com")
    g1("Okta_Group Help Desk")
    rs("Okta_ResourceSet Frontline Workers")
    a("Okta_RoleAssignment Authentication Admins")
    r("Okta_CustomRole Authentication Admins")
    g1 -. Okta_HasRole .-> r
    a -. Okta_ScopedTo .-> rs
    g1 -. Okta_HasRoleAssignment .-> a
    rs -- Okta_ResourceSetContains --> u2
    u1 -- Okta_MemberOf --> g1
    g1 -- Okta_ResetPassword --> u2
    g1 -- Okta_ResetFactors --> u2
```
